From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:50:28 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 876A516A400; Sun, 12 Mar 2006 02:50:23 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id B64FF447E5; Sat, 11 Mar 2006 23:25:49 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id k2BNO9Bm048801; Sat, 11 Mar 2006 16:24:09 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 11 Mar 2006 16:24:21 -0700 (MST) Message-Id: <20060311.162421.97071374.imp@bsdimp.com> To: rmarella@gmail.com From: "M. Warner Losh" In-Reply-To: <20060311124931.62eee647@frankie.konav201.local> References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 11 Mar 2006 16:24:09 -0700 (MST) Cc: freebsd-stable@freebsd.org, ale@freebsd.org Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:50:28 -0000 In message: <20060311124931.62eee647@frankie.konav201.local> Robert Marella writes: : On Sat, 11 Mar 2006 13:51:30 +0100 : Alex Dupre wrote: : : > My new PC has an internal 16-in-1 card reader connected via USB 2.0. : > The device is the Techsolo TCR-1640 : > (http://www.techsolo.de/product/cardreader/tcr_1640/index.php). : > I boot from a compact flash inserted in it and I can mount and unmount : > the same CF once the system has booted and has mounted the root : > partition from my graid3 array. : > The problem arise when I replace the inserted CF with another one : > (with different size and filesystem) and try to mount it. Fdisk can : > correctly sees the new partition table, but devfs is not updated and : > I cannot mount the new media. : : : : Hello Alex : : This problem has been discussed many times on the lists. In order to : update devfs you can use: : : cat /dev/null > /dev/daX : : I seem to remember another method using dd. dd if=/dev/null of=/dev/daX count=0 From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:52:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB0C316A422; Sun, 12 Mar 2006 02:52:00 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15CEE456A7; Sun, 12 Mar 2006 00:34:16 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from localhost.my.domain (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2C0YEEl044042; Sun, 12 Mar 2006 00:34:15 GMT (envelope-from davidxu@freebsd.org) From: David Xu To: freebsd-threads@freebsd.org, Martin , freebsd-stable@freebsd.org Date: Sun, 12 Mar 2006 08:29:18 +0800 User-Agent: KMail/1.8.2 References: <200603111140.k2BBerFh096411@freefall.freebsd.org> In-Reply-To: <200603111140.k2BBerFh096411@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603120829.18291.davidxu@freebsd.org> Cc: Subject: Re: threads/80435: panic on high loads X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:52:01 -0000 [stable is included] On Saturday 11 March 2006 19:40, Martin wrote: > > The following reply was made to PR threads/80435; it has been noted by GNATS. > > From: Martin > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: threads/80435: panic on high loads > Date: Sat, 11 Mar 2006 12:36:04 +0100 > > Hi, > > I've a similar panic. Not exactly the same, but in a similar > situation. You can trigger it with a slightly modified fork bomb: > > #include > #include > > int main(void) > { > while(1) { > fork(); > malloc(1024); > } > return 0; > } > > > The resulting panic is: > > fault code = supervisor write, page not present > > backtrace: > pmap_qenter() > vm_thread_new() > thread_init() > slab_zalloc() > uma_zone_slab() > uma_zalloc_bucket() > uma_zalloc_arg() > thread_alloc() > proc_init() > slab_zalloc() > uma_zone_slab() > uma_zalloc_bucket() > uma_zalloc_arg() > fork1() > fork() > syscall() > Xint0x80() > -- syscall (2, FreeBSD ELF32, fork) > > Reproducible on: -STABLE > uname -a: > FreeBSD klotz.local 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Mon Mar 6 > 00:21:54 CET 2006 root@klotz.local:/usr/obj/usr/src/sys/KLOTZ i386 > > -- > Martin This bug unlikely should be reported on thread@, your code is a fork bomb, I think it is a warning why recent days the kernel crashed by such attack, can you reproduce it on 6.0 ? David Xu From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:52:34 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 113F916A430 for ; Sun, 12 Mar 2006 02:52:34 +0000 (GMT) (envelope-from mafiageek@gmail.com) Received: from pproxy.gmail.com (pproxy.gmail.com [64.233.166.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98D76445D4 for ; Sat, 11 Mar 2006 23:17:27 +0000 (GMT) (envelope-from mafiageek@gmail.com) Received: by pproxy.gmail.com with SMTP id n25so548794pyg for ; Sat, 11 Mar 2006 15:17:26 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=FAGdr7EOi1X5fjaBxkOiyaQyk6fb+kA9pPJj9xkHF3vSBpl4Jj24IOnJNfsOXNIHYYxWy5jFZTrG/iljaMXwO+hga2z8blWWLdBhbSOuw1o0ne9CLkUA+iARhFDH/FFVJt3UbS3N88NjFEl3vgJuFPNie8tAxe+Zswdi+H5fO6o= Received: by 10.35.96.11 with SMTP id y11mr1575792pyl; Sat, 11 Mar 2006 15:17:26 -0800 (PST) Received: from ?203.96.101.201? ( [203.96.101.201]) by mx.gmail.com with ESMTP id d13sm293894pyd.2006.03.11.15.17.22; Sat, 11 Mar 2006 15:17:25 -0800 (PST) Message-ID: <44135A3D.80300@gmail.com> Date: Sun, 12 Mar 2006 12:16:13 +1300 From: Dale DuRose User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= References: <1bdd14300603111414r394947f2hd74d5f0fac494175@mail.gmail.com> <44134E23.5090005@t-hosting.hu> <1bdd14300603111438r6ff79acdi815dfb7a99fcaa53@mail.gmail.com> <441352D6.6020304@t-hosting.hu> In-Reply-To: <441352D6.6020304@t-hosting.hu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org, MoonblueZ Subject: Re: UPDATE 5.4R to Stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:52:34 -0000 Hi I don't know what I'm going to say is going to help you and is a bit off topic. What i do is for production boxes is i maintain the box on eg 5.4 and update that release with patches until a new release eg 5.5 and then upgrade to that. I believe (you can prove me wrong) is that _stable_ is stable but is not as stable as a release with updates. I do have machine with stable and current but thats for development and testing. ~ Dale Kövesdán Gábor wrote: > MoonblueZ wrote: > >> OK... Thnx im understand about this work now >> but if that 5.5 is released, is that important to running update >> again to get to stable branch? >> >> >> On 3/12/06, * Kövesdán Gábor* > > wrote: >> >> MoonblueZ wrote: >> >> >i just update my box from 5.4R to 5.4-Stable >> >but i got a wrong update version.. here the uname sample >> > >> >cidomo# uname -a >> >FreeBSD cidomo.moonbluez.or.id >> 5.5-PRERELEASE FreeBSD 5.5-PRERELEASE #0: Sat >> >Mar 11 09:28:12 WIT 2006 >> >nugelo@cidomo.moonbluez.or.id:/usr/obj/usr/src/sys/CIDOMO >> >i386 >> > >> >anyone know how to fix this problem? pls help me.. >> > >> > >> > >> You got the right version. The 5.X stable branch is now called >> 5.5-PRERELEASE. After 5.5 gets release it becomes 5.5-STABLE. >> Similarly, >> the stable branch for 6.X is now 6.1-PRERELASE and it will be called >> 6.1-STABLE after 6.1 comes out. >> >> Gabor Kovesdan >> >> >> > It depends on your demand. If you feel like updating again, do so, if > not, that's no problem. The stable branches are changing quite > fluently, it's up to you, how often you update. If you don't have any > problem with your installation, you don't need to update very often. > > Gabor Kovesdan > > P.S.: Please, do not top-post. Here in the list we prefer writing and > reading replies below the original message. Thanks. > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:52:34 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D1B716A434; Sun, 12 Mar 2006 02:52:34 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9257944631; Sat, 11 Mar 2006 23:19:49 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id k2BNHQKN048754; Sat, 11 Mar 2006 16:17:26 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 11 Mar 2006 16:17:38 -0700 (MST) Message-Id: <20060311.161738.113423936.imp@bsdimp.com> To: alfred@freebsd.org From: "M. Warner Losh" In-Reply-To: <20060310151942.GP23971@elvis.mu.org> References: <20060310151942.GP23971@elvis.mu.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 11 Mar 2006 16:17:26 -0700 (MST) Cc: stable@freebsd.org Subject: Re: Required audit group is missing... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:52:34 -0000 In message: <20060310151942.GP23971@elvis.mu.org> Alfred Perlstein writes: : : mmmm... stable... :D : : /usr/src # make installworld : ERROR: Required audit group is missing, see /usr/src/UPDATING. : *** Error code 1 : : Stop in /usr/src. : *** Error code 1 : : Stop in /usr/src. : /usr/src # grep audit /usr/src/UPDATING : /usr/src # : : ??? Fixed in -current. Does it matter to stable too? Warner From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:53:20 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D302B16A5F5 for ; Sun, 12 Mar 2006 02:53:20 +0000 (GMT) (envelope-from gray@mistaken-identity.co.uk) Received: from magnum.mistaken-identity.co.uk (slayer-of.demon.co.uk [62.49.5.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4C9C43D83 for ; Sat, 11 Mar 2006 22:55:05 +0000 (GMT) (envelope-from gray@mistaken-identity.co.uk) Date: Sat, 11 Mar 2006 22:53:30 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Message-ID: X-MS-Has-Attach: Content-class: urn:content-classes:message X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft Exchange V6.5 Thread-Topic: -stable make world: ERROR: Required audit group is missing, see /usr/src/UPDATING thread-index: AcZFVzK8Wyu8bgyvRY2UHiZS/kKRZQABxpVA From: "Gray Lilley" To: "Kim Culhan" , Cc: Subject: RE: -stable make world: ERROR: Required audit group is missing, see /usr/src/UPDATING X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:53:20 -0000 This was discussed on this list a few days ago... You forgot to run mergemaster -p before installworld didn't you? :) This adds the relevant group to /etc/groups. Graham -----Original Message----- From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd-stable@freebsd.org] On Behalf Of Kim Culhan Sent: 11 March 2006 22:00 To: freebsd-stable@freebsd.org Subject: -stable make world: ERROR: Required audit group is missing,see /usr/src/UPDATING Subject says it all.. nothing in UPDATING regarding audit group. Appears to have been in the process of linking sshd This src is RELENG_6 cvsup'd ~1930 UTC this date Any help is greatly appreciated -kim -- w8hdkim@gmail.com _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" --=20 No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 10/03/2006 From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:53:56 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D6016A441 for ; Sun, 12 Mar 2006 02:53:56 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id DBAFB4560C for ; Sun, 12 Mar 2006 00:32:14 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 30476 invoked from network); 12 Mar 2006 00:32:02 -0000 Received: from unknown (HELO ?192.168.178.2?) (a.premoli@andxor.it@81.174.31.42) by andxor.it with SMTP; 12 Mar 2006 00:32:02 -0000 Message-ID: <44136C01.4030400@FreeBSD.org> Date: Sun, 12 Mar 2006 01:32:01 +0100 From: Alex Dupre User-Agent: Thunderbird 1.5 (X11/20060301) MIME-Version: 1.0 To: Robert Marella References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> In-Reply-To: <20060311124931.62eee647@frankie.konav201.local> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-stable@FreeBSD.org Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:53:56 -0000 Robert Marella wrote: > This problem has been discussed many times on the lists. In order to > update devfs you can use: > > cat /dev/null > /dev/daX > > I seem to remember another method using dd. > > I hope this helps. The 'cat' way works, thanks. Perhaps we should add this info somewhere in a man page. -- Alex Dupre From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 02:54:02 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5760516A412 for ; Sun, 12 Mar 2006 02:54:02 +0000 (GMT) (envelope-from Stephen.Clark@seclark.us) Received: from smtpout07-04.prod.mesa1.secureserver.net (smtpout07-01.prod.mesa1.secureserver.net [64.202.165.230]) by mx1.FreeBSD.org (Postfix) with SMTP id DA75445F44 for ; Sun, 12 Mar 2006 01:17:20 +0000 (GMT) (envelope-from Stephen.Clark@seclark.us) Received: (qmail 12400 invoked from network); 12 Mar 2006 01:17:20 -0000 Received: from unknown (24.144.77.138) by smtpout07-04.prod.mesa1.secureserver.net (64.202.165.233) with ESMTP; 12 Mar 2006 01:17:20 -0000 Message-ID: <4413769F.6030608@seclark.us> Date: Sat, 11 Mar 2006 20:17:19 -0500 From: Stephen Clark User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.16-22smp i686; en-US; m18) Gecko/20010110 Netscape6/6.5 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: panic running quagga with tun pseudo dev X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stephen.Clark@seclark.us List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 02:54:02 -0000 Hi List, Anybody know how to debug this crash. It happen every time I try to configure several tunnels with gre and quagga/zebra running. If I wait til the tunnel are built before starting zebra - it does not panic. The panic is always at the same place. line 186 in if_ether.c Also what would cause a page fault in the kernel - what exactly does this mean. Thanks, Steve PS: This freebsd 4.9 - which is old - but we have 1000's of these deployed and other than this issue they are rock solid. IdlePTD at phsyical address 0x00398000 initial pcb at physical address 0x002fbf20 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x4 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01bc035 stack pointer = 0x10:0xc98a0d1c frame pointer = 0x10:0xc98a0d28 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1249 (zebra) interrupt mask = trap number = 12 panic: page fault syncing disks... 47 2 done Uptime: 14m30s dumping to dev #ad/1, offset 1851392 dump ata0: resetting devices .. done 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 --- #0 dumpsys () at ../../kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at ../../kern/kern_shutdown.c:487 #1 0xc0165eff in boot (howto=256) at ../../kern/kern_shutdown.c:316 #2 0xc0166324 in poweroff_wait (junk=0xc02c96ac, howto=-1070820945) at ../../kern/kern_shutdown.c:595 #3 0xc0280a4e in trap_fatal (frame=0xc98a0cdc, eva=4) at ../../i386/i386/trap.c:974 #4 0xc0280721 in trap_pfault (frame=0xc98a0cdc, usermode=0, eva=4) at ../../i386/i386/trap.c:867 #5 0xc02802df in trap (frame={tf_fs = 16, tf_es = 16, tf_ds = 16, tf_edi = -1055827712, tf_esi = -1056169104, tf_ebp = -913699544, tf_isp = -913699576, tf_ebx = 0, tf_edx = -1055827712, tf_ecx = 1, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1071923147, tf_cs = 8, tf_eflags = 66118, tf_esp = -913699432, tf_ss = -1057684480}) at ../../i386/i386/trap.c:466 #6 0xc01bc035 in arp_rtrequest (req=1, rt=0xc1115900, info=0xc98a0d98) at ../../netinet/if_ether.c:186 #7 0xc01acfe2 in rtrequest1 (req=1, info=0xc98a0d98, ret_nrt=0xc98a0d94) at ../../net/route.c:750 #8 0xc01ada25 in route_output (m=0xc0705800, so=0xc8b90140) at ../../net/rtsock.c:341 #9 0xc01ac466 in raw_usend (so=0xc8b90140, flags=0, m=0xc0705800, nam=0x0, control=0x0, p=0xc979e5a0) at ../../net/raw_usrreq.c:258 #10 0xc01ad7bc in rts_send (so=0xc8b90140, flags=0, m=0xc0705800, nam=0x0, control=0x0, p=0xc979e5a0) at ../../net/rtsock.c:236 #11 0xc01852e7 in sosend (so=0xc8b90140, addr=0x0, uio=0xc98a0ed4, top=0xc0705800, control=0x0, flags=0, p=0xc979e5a0) at ../../kern/uipc_socket.c:609 #12 0xc0178780 in soo_write (fp=0xc0fe83c0, uio=0xc98a0ed4, cred=0xc1088280, flags=0, p=0xc979e5a0) at ../../kern/sys_socket.c:81 #13 0xc01752cd in dofilewrite (p=0xc979e5a0, fp=0xc0fe83c0, fd=5, buf=0xbfbfe714, nbyte=128, offset=-1, flags=0) at ../../sys/file.h:163 #14 0xc0175186 in write (p=0xc979e5a0, uap=0xc98a0f80) at ../../kern/sys_generic.c:329 #15 0xc0280cfd in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 128, tf_esi = 134882612, tf_ebp = -1077941904, tf_isp = -913698860, ---Type to continue, or q to quit--- tf_ebx = 16, tf_edx = 128, tf_ecx = 0, tf_eax = 4, tf_trapno = 7, tf_err = 2, tf_eip = 672644132, tf_cs = 31, tf_eflags = 659, tf_esp = -1077942556, tf_ss = 47}) at ../../i386/i386/trap.c:1175 #16 0xc0274ad5 in Xint0x80_syscall () #17 0x8059231 in ?? () #18 0x80592a5 in ?? () #19 0x80508c2 in ?? () #20 0x8050b5b in ?? () #21 0x280b2b8b in ?? () #22 0x2809cc8e in ?? () #23 0x804cffd in ?? () #24 0x804ac12 in ?? () (kgdb) frame 6 #6 0xc01bc035 in arp_rtrequest (req=1, rt=0xc1115900, info=0xc98a0d98) at ../../netinet/if_ether.c:186 186 if ((rt->rt_flags & RTF_HOST) == 0 && (kgdb) list 180 175 } 176 if (rt->rt_flags & RTF_GATEWAY) 177 return; 178 switch (req) { 179 180 case RTM_ADD: 181 /* 182 * XXX: If this is a manually added route to interface 183 * such as older version of routed or gated might provide, 184 * restore cloning bit. (kgdb) print *rt $1 = {rt_nodes = {{rn_mklist = 0x0, rn_parent = 0xc1115918, rn_bit = -1, rn_bmask = 0 '\000', rn_flags = 4 '\004', rn_u = {rn_leaf = { rn_Key = 0xc10c2360 "\020\002", rn_Mask = 0x0, rn_Dupedkey = 0x0}, rn_node = {rn_Off = -1056169120, rn_L = 0x0, rn_R = 0x0}}}, { rn_mklist = 0x0, rn_parent = 0xc0f3d718, rn_bit = 60, rn_bmask = 8 '\b', rn_flags = 4 '\004', rn_u = {rn_leaf = { rn_Key = 0x7
, rn_Mask = 0xc1115900 "", rn_Dupedkey = 0xc0f3d700}, rn_node = {rn_Off = 7, rn_L = 0xc1115900, rn_R = 0xc0f3d700}}}}, rt_gateway = 0xc10c2370, rt_refcnt = 0, rt_flags = 98305, rt_ifp = 0xc0703400, rt_ifa = 0xc0f50400, rt_genmask = 0x0, rt_llinfo = 0x0, rt_rmx = {rmx_locks = 0, rmx_mtu = 1500, rmx_hopcount = 0, rmx_expire = 0, rmx_recvpipe = 0, rmx_sendpipe = 0, rmx_ssthresh = 0, rmx_rtt = 0, rmx_rttvar = 0, rmx_pksent = 0, rmx_filler = {0, 0, 0, 0}}, rt_gwroute = 0x0, rt_output = 0, rt_parent = 0x0, rt_filler2 = 0x0} (kgdb) print rt->rt_flags $2 = 98305 (kgdb) print *info $3 = {rti_addrs = 7, rti_info = {0xc1040fdc, 0xc02e39ac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, rti_flags = 32769, rti_ifa = 0xc0f50400, rti_ifp = 0xc0703400} (kgdb) quit From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 03:27:55 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E684016A401 for ; Sun, 12 Mar 2006 03:27:55 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70A8B43D48 for ; Sun, 12 Mar 2006 03:27:55 +0000 (GMT) (envelope-from chrcoluk@gmail.com) Received: by wproxy.gmail.com with SMTP id i30so934115wra for ; Sat, 11 Mar 2006 19:27:54 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=sC8M9sVX/v8ZdZPeElZ9POCIhi6YYhC5wIGknI89R0XqmDYhwGXsBWxClLNvvgAYHT5LQtYcvlGVlWrc0D8T130X+nDbW4P5uXIwNwcarYuSjmHAlwa+0ECfTL/8m/Dp2GvLNGjy8GrEiithwT+qNP92j+ZjXCHh8by5yKFJ+2E= Received: by 10.54.121.5 with SMTP id t5mr2204636wrc; Sat, 11 Mar 2006 19:27:04 -0800 (PST) Received: by 10.54.122.7 with HTTP; Sat, 11 Mar 2006 19:27:54 -0800 (PST) Message-ID: <3aaaa3a0603111927y39a917c6l@mail.gmail.com> Date: Sun, 12 Mar 2006 03:27:54 +0000 From: Chris To: "Mark Linimon" In-Reply-To: <20060311023910.GB15559@soaustin.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <3aaaa3a0603090943qdcc1128u@mail.gmail.com> <20060309180651.GA94019@xor.obsecurity.org> <3aaaa3a0603091750r67188696w@mail.gmail.com> <20060310020722.GB919@xor.obsecurity.org> <3aaaa3a0603101719g5db4f47cs@mail.gmail.com> <20060311023910.GB15559@soaustin.net> Cc: freebsd-stable@freebsd.org, Kris Kennaway Subject: Re: libthr + libtool bump + mysql X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 03:27:56 -0000 On 11/03/06, Mark Linimon wrote: > On Sat, Mar 11, 2006 at 01:19:54AM +0000, Chris wrote: > > I wasn't aware ports removed support right away tho so thank you for > > clarifying that for me. > > There is not enough FTP space for packages corresponding to every > port, for every release. We keep packages for the latest release > on each branch, and the current state of that branch. > > We "support" building ports on as many releases as is feasible. > Right now that's 4.11, 4-stable, 5.4, 5-stable, 6.0, 6-stable, and > 7-current. Even this is, as you can imagine, a great deal of work. > In particular, anyone on 4.x before 4.10 and 5.x before 5.3 is going > to have a lot of trouble because of various incompatibilities. > > > If things goto schedule, will both these releases be treated as > > supported by the ports tree? And why is 5.5 been released at all > > if people should be upgrading to 6.x to remain supported? > > Yes, both will be supported by the ports tree. 5.5 is being released > because we promised that there would be one more release from the > 5.x tree -- and for that reason only. However, it is simply infeasible > to back-port all the fixes in 6.x to 5.x. > > We are pushing everyone to at least test 6.x because at the moment we > are simply spread too thin to support all of these various possible > combinations (don't forget that we also support multiple architectures). > We have tried to plan for less overlap in the future to ease the > support burden. This is part of the lessons that we learned from 5.x. > > mcl > Yep understood, all my new servers I aim to have 6.0 installed and 6.1 when released, if the upgrade I am doing later this week or next week goes well then other servers will follow. I still admin one 4.10 box which will of course eventually have to be formatted. You do a good job with maintaining ports compatiblity and I havent noticed any major issues between different versions of freebsd. Chris From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 09:13:12 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23AA816A55C; Sun, 12 Mar 2006 09:13:12 +0000 (GMT) (envelope-from root@pukruppa.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4365045051; Sun, 12 Mar 2006 06:19:38 +0000 (GMT) (envelope-from root@pukruppa.de) Received: from [213.146.114.24] (helo=reverse-213-146-114-24.cust.kamp-dsl.de) by mrelayeu.kundenserver.de (node=mrelayeu1) with ESMTP (Nemesis), id 0MKwpI-1FIJvT25vT-0002jW; Sun, 12 Mar 2006 07:19:36 +0100 Date: Sun, 12 Mar 2006 07:29:16 +0100 (CET) From: "P.U.Kruppa" X-X-Sender: root@www.pukruppa.net To: "M. Warner Losh" In-Reply-To: <20060311.161738.113423936.imp@bsdimp.com> Message-ID: <20060312072854.D921@www.pukruppa.net> References: <20060310151942.GP23971@elvis.mu.org> <20060311.161738.113423936.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Provags-ID: kundenserver.de abuse@kundenserver.de login:2446dbdf8275641f979193ced594c629 Cc: stable@freebsd.org, alfred@freebsd.org Subject: Re: Required audit group is missing... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 09:13:12 -0000 On Sat, 11 Mar 2006, M. Warner Losh wrote: > In message: <20060310151942.GP23971@elvis.mu.org> > Alfred Perlstein writes: > : > : mmmm... stable... :D > : > : /usr/src # make installworld > : ERROR: Required audit group is missing, see /usr/src/UPDATING. > : *** Error code 1 > : > : Stop in /usr/src. > : *** Error code 1 > : > : Stop in /usr/src. > : /usr/src # grep audit /usr/src/UPDATING > : /usr/src # > : > : ??? > > Fixed in -current. Does it matter to stable too? Yes, Uli. > > Warner > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > ********************************************* * Peter Ulrich Kruppa - Wuppertal - Germany * ********************************************* From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 09:16:28 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C12A16A794 for ; Sun, 12 Mar 2006 09:16:28 +0000 (GMT) (envelope-from dgerow@afflictions.org) Received: from mail.afflictions.org (asylum.afflictions.org [64.7.134.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB3C8449AB for ; Sun, 12 Mar 2006 05:26:36 +0000 (GMT) (envelope-from dgerow@afflictions.org) Received: from localhost (localhost [127.0.0.1]) by mail.afflictions.org (Postfix) with ESMTP id AF56E78CA9 for ; Sun, 12 Mar 2006 00:34:21 -0500 (EST) Received: from mail.afflictions.org ([127.0.0.1]) by localhost (pandora.afflictions.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 58271-01 for ; Sun, 12 Mar 2006 00:34:17 -0500 (EST) Received: from dementia.afflictions.org (dementia [172.19.206.56]) by mail.afflictions.org (Postfix) with ESMTP id 2E71078C64 for ; Sun, 12 Mar 2006 00:34:15 -0500 (EST) Received: by dementia.afflictions.org (Postfix, from userid 1001) id DA4921C080F; Sun, 12 Mar 2006 00:26:28 -0500 (EST) Date: Sun, 12 Mar 2006 00:26:28 -0500 From: Damian Gerow To: freebsd-stable@freebsd.org Message-ID: <20060312052628.GN75666@afflictions.org> References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> <44136C01.4030400@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44136C01.4030400@FreeBSD.org> X-PGP-Fingerprint: B3D7 D901 A53A 1A99 BFD6 E6DF 9F3B 742B C288 9CC9 X-PGP-Key: 0xC2889CC9 User-Agent: Mutt/1.5.11 X-Virus-Scanned: amavisd-new at pandora.afflictions.org Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 09:16:28 -0000 Thus spake Alex Dupre (ale@FreeBSD.org) [11/03/06 22:18]: : > This problem has been discussed many times on the lists. In order to : > update devfs you can use: : > : > cat /dev/null > /dev/daX : > : > I seem to remember another method using dd. : > : > I hope this helps. : : The 'cat' way works, thanks. Perhaps we should add this info somewhere : in a man page. Really? Isn't there a nicer way to do this? i.e. Doesn't the card reader (or other USB-connected devices) notify that a disk/card/whatever has been removed or inserted? From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 09:16:35 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEC2A16A802 for ; Sun, 12 Mar 2006 09:16:35 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E4F455CD for ; Sun, 12 Mar 2006 06:55:43 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by xproxy.gmail.com with SMTP id s11so735476wxc for ; Sat, 11 Mar 2006 22:55:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=UNKz6Oi4TEMZ3khSdNUFhnw1knejiShCUi6QPJUzcNPE8gbjpup0lHPchMcBgsXegW3XdVD73vXjS7h4cl6nQJtU5Fa+GPf2flwcg3abD+fC9xvtEY3yaAh6JNqzMxMZIVB/6p+2NC8z30L5bavuy1uvTaNfxUBImxXr64CIVtk= Received: by 10.70.117.17 with SMTP id p17mr752153wxc; Sat, 11 Mar 2006 22:55:43 -0800 (PST) Received: by 10.70.65.9 with HTTP; Sat, 11 Mar 2006 22:55:43 -0800 (PST) Message-ID: Date: Sun, 12 Mar 2006 00:55:43 -0600 From: "Nikolas Britton" To: "M. Warner Losh" , freebsd-stable@freebsd.org In-Reply-To: <20060311.162241.133985759.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20060311.162241.133985759.imp@bsdimp.com> Cc: Subject: Re: When is the 6.1 branch going to be cut? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 09:16:36 -0000 On 3/11/06, M. Warner Losh wrote: > In message: > "Nikolas Britton" writes: > : March 5th was the scheduled date, what's the hold up? > > I think we're going to see another BETA (BETA4) shortly. The hold up > is that there's still enough problems that need to be fixed that the > release isn't near enough to do the branch. The schedules are done > based on a best-guess approach, but in real life there can be a > deviation between ones best guesses and what actually happens. Since > FreeBSD isn't released based on a date[*], but based on when > things in the branch are good, some slippage is bound to happen from > time to time. > > Warner > > [*] We are moving to having the calendar drive more things than in the > past, but that was done with the understanding that the dates are > targets and we make choices to get as close to the targets as > possible. > Thanks for the status update, take all the time you need... All I ask is you keep the community in the loop. Have you thought about putting up a page on the website where FreeBSD committers and core members can easily post news, such as this, in an informal and/or casual manner?... wiki, blog, etc. Anyhow, Thanks for responding to my inquiry. -- BSD Podcasts @ http://bsdtalk.blogspot.com/ From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 09:16:50 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA3AD16A67A for ; Sun, 12 Mar 2006 09:16:50 +0000 (GMT) (envelope-from kolicz@EUnet.yu) Received: from smtpclu-6.eunet.yu (smtpclu-6.eunet.yu [194.247.192.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BBA845439 for ; Sun, 12 Mar 2006 06:42:02 +0000 (GMT) (envelope-from kolicz@EUnet.yu) Received: from mycenae.net (P-15.2.EUnet.yu [213.240.15.2]) by smtpclu-6.eunet.yu (8.13.4/8.13.4) with ESMTP id k2C6fwph012039 for ; Sun, 12 Mar 2006 07:41:58 +0100 Received: by mycenae.net (Postfix, from userid 1001) id 444A911445; Sun, 12 Mar 2006 07:43:56 +0100 (CET) Date: Sun, 12 Mar 2006 07:43:56 +0100 From: Zoran Kolic To: freebsd-stable@freebsd.org Message-ID: <20060312064356.GB549@mycenae.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Virus-Scan: EUnet-AVAS-Milter X-AVAS-Virus-Status: clean X-Spam-Checker: EUnet-AVAS-Milter X-AVAS-Spam-Score: -0.7 X-AVAS-Spam-Symbols: BAYES_20 NO_RELAYS Subject: dhclient and cable modem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 09:16:50 -0000 Dear list! For a month or two I will be connected to cable net. So, I tried it on another location and... did not work. Laptop has 6.0 and "rl". I used empty dhclent. conf and then populated it with every option I found on the net. Firewall got no traffic, the packet was not leaving the box. When at home, I learned that I had not checked ethernet possibilities. Ifconfig shows 10tx, auto mode and no ip address. In this moment I'm sure that the system works correct and that I misconfigured something. But what? How should look conf file? Or to add some hints to rl on the command line. Provider offers dhcp and no static address. Rl sands discovery and receives no offer. What i'm doing wrong? Best regards Zoran From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 10:23:03 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1721716A400 for ; Sun, 12 Mar 2006 10:23:03 +0000 (GMT) (envelope-from lars@adventuras.no) Received: from mail.adventuras.no (mail.adventuras.no [194.63.250.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A63B43D45 for ; Sun, 12 Mar 2006 10:23:01 +0000 (GMT) (envelope-from lars@adventuras.no) Received: from mail.adventuras.no (seven [127.0.0.1]) by mail.adventuras.no (8.12.10/8.12.10) with ESMTP id k2CAMj7e031741 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 12 Mar 2006 11:22:45 +0100 Received: (from apache@localhost) by mail.adventuras.no (8.12.10/8.12.10/Submit) id k2CAMiUS031739; Sun, 12 Mar 2006 11:22:44 +0100 Received: from 80.111.250.79 (SquirrelMail authenticated user lars) by mail.adventuras.no with HTTP; Sun, 12 Mar 2006 11:22:44 +0100 (CET) Message-ID: <60400.80.111.250.79.1142158964.squirrel@mail.adventuras.no> In-Reply-To: <20060312064356.GB549@mycenae.net> References: <20060312064356.GB549@mycenae.net> Date: Sun, 12 Mar 2006 11:22:44 +0100 (CET) From: "Lars Kristiansen" To: freebsd-stable@freebsd.org User-Agent: SquirrelMail/1.4.4-1 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Adventuras-MailScanner-Information: Please contact the ISP for more information X-Adventuras: du kan filtrere etter AdvSpamScore over 5-10 X-Adventuras-SpamCheck: not spam, SpamAssassin (score=-4.365, required 6, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.03, BAYES_00 -2.60) X-MailScanner-From: lars@adventuras.no X-Spam-Status: No Subject: Re: dhclient and cable modem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 10:23:03 -0000 > Dear list! > For a month or two I will be connected > to cable net. So, I tried it on another > location and... did not work. Laptop > has 6.0 and "rl". I used empty dhclent. > conf and then populated it with every > option I found on the net. Firewall > got no traffic, the packet was not leaving > the box. When at home, I learned that > I had not checked ethernet possibilities. > Ifconfig shows 10tx, auto mode and no ip > address. > In this moment I'm sure that the system > works correct and that I misconfigured > something. But what? How should look > conf file? Or to add some hints to rl > on the command line. > Provider offers dhcp and no static address. > Rl sands discovery and receives no offer. > What i'm doing wrong? > Best regards Did you restart the cablemodem between change of attached computer? That might be neccessery. -- Regards from Lars > > Zoran > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 10:31:50 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 417AE16A401 for ; Sun, 12 Mar 2006 10:31:50 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3513443D46 for ; Sun, 12 Mar 2006 10:31:49 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: (qmail invoked by alias); 12 Mar 2006 10:31:47 -0000 Received: from p5090D8EA.dip.t-dialin.net (EHLO klotz.local) [80.144.216.234] by mail.gmx.net (mp020) with SMTP; 12 Mar 2006 11:31:47 +0100 X-Authenticated: #989277 Received: from [192.168.0.1] (klotz.local [192.168.0.1]) by klotz.local (8.13.4/8.13.4) with ESMTP id k2CAVjBc044691; Sun, 12 Mar 2006 11:31:46 +0100 (CET) (envelope-from nakal@nurfuerspam.de) Message-ID: <4413F891.2070006@nurfuerspam.de> Date: Sun, 12 Mar 2006 11:31:45 +0100 From: Martin User-Agent: Thunderbird 1.5 (X11/20060205) MIME-Version: 1.0 To: David Xu References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <200603120829.18291.davidxu@freebsd.org> In-Reply-To: <200603120829.18291.davidxu@freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-stable@freebsd.org Subject: Re: threads/80435: panic on high loads X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 10:31:50 -0000 David Xu wrote: > This bug unlikely should be reported on thread@, your code is a fork > bomb, I think it is a warning why recent days the kernel crashed by > such attack, can you reproduce it on 6.0 ? I just appended it to a similar bug. Sorry. I don't have access to a machine running 6.0R until tomorrow at work. Martin From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 11:32:44 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 772E916A401 for ; Sun, 12 Mar 2006 11:32:44 +0000 (GMT) (envelope-from frederic@cgarchive.com) Received: from hoboe1bl1.telenet-ops.be (hoboe1bl1.telenet-ops.be [195.130.137.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11C9643D45 for ; Sun, 12 Mar 2006 11:32:41 +0000 (GMT) (envelope-from frederic@cgarchive.com) Received: from localhost (localhost.localdomain [127.0.0.1]) by hoboe1bl1.telenet-ops.be (Postfix) with SMTP id B7C8AD4086 for ; Sun, 12 Mar 2006 12:32:40 +0100 (CET) Received: from blackbox.home (d54C0CE2F.access.telenet.be [84.192.206.47]) by hoboe1bl1.telenet-ops.be (Postfix) with ESMTP id 768DAD406F for ; Sun, 12 Mar 2006 12:32:40 +0100 (CET) From: Frederic Van Assche To: freebsd-stable@freebsd.org Date: Sun, 12 Mar 2006 12:32:30 +0100 User-Agent: KMail/1.9.1 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3174176.Qn9VtH02CX"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200603121232.39477.frederic@cgarchive.com> Subject: Re: kde X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 11:32:44 -0000 --nextPart3174176.Qn9VtH02CX Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 11 March 2006 21:40, Steinberg, Michael wrote: > im compiling kde from the ports for about the hundreth time and something > always goes wrong this time its more simple than most but i can't seem to > find what im looking for. It attempted to fetch a library called tiff.4 in > several places and found nothing. It asked me to find it and ive been > looking all over google and got nothing. Does anybody know where i can fi= nd > this library? > Thanx, > Max The FreeBSD KDE ports have their own mailing list. Try mailing=20 kde-freebsd@freebsd.kde.org, you are more likely to get help over there. =46rederic =2D-=20 PGP key: http://frederic.cgarchive.com/PGP/frederic.asc --nextPart3174176.Qn9VtH02CX Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQBEFAbXxGMts+Dlwf8RAguvAJ9dUiVJa5wukyEk7xjlH1S9PWEFZACfadbD K3f225+3MeLySw1IojM/alU= =gpd6 -----END PGP SIGNATURE----- --nextPart3174176.Qn9VtH02CX-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 11:42:59 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2730916A400 for ; Sun, 12 Mar 2006 11:42:59 +0000 (GMT) (envelope-from wwk761@telus.net) Received: from priv-edtnes56.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8E9443D46 for ; Sun, 12 Mar 2006 11:42:58 +0000 (GMT) (envelope-from wwk761@telus.net) Received: from localhost ([199.185.220.240]) by priv-edtnes56.telusplanet.net (InterMail vM.6.01.05.04 201-2131-123-105-20051025) with ESMTP id <20060312114258.GUFJ23401.priv-edtnes56.telusplanet.net@localhost> for ; Sun, 12 Mar 2006 04:42:58 -0700 Received: from 64.26.155.200 ( [64.26.155.200]) as user wwk761@telus.net@192.168.200.1 by webmail.telus.net with HTTP; Sun, 12 Mar 2006 03:42:58 -0800 Message-ID: <1142163778.4414094215d88@webmail.telus.net> Date: Sun, 12 Mar 2006 03:42:58 -0800 From: wwk761@telus.net To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1-cvs X-Originating-IP: 64.26.155.200 Subject: re:dhclient and cable modem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 11:42:59 -0000 often is the mtu value between your machine and your internet provider /r/ wlodek From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 12:22:53 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEFD816A404 for ; Sun, 12 Mar 2006 12:22:52 +0000 (GMT) (envelope-from jhs@flat.berklix.net) Received: from thin.berklix.org (thin.berklix.org [194.246.123.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D39843D45 for ; Sun, 12 Mar 2006 12:22:51 +0000 (GMT) (envelope-from jhs@flat.berklix.net) Received: from js.berklix.net (p549A715F.dip.t-dialin.net [84.154.113.95]) (authenticated bits=128) by thin.berklix.org (8.12.11/8.12.11) with ESMTP id k2CCMm69030730 for ; Sun, 12 Mar 2006 13:22:49 +0100 (CET) (envelope-from jhs@flat.berklix.net) Received: from fire.jhs.private (fire.jhs.private [192.168.91.41]) by js.berklix.net (8.12.11/8.12.11) with ESMTP id k2CCMZIf057128 for ; Sun, 12 Mar 2006 13:22:41 +0100 (CET) (envelope-from jhs@flat.berklix.net) Received: from fire.jhs.private (localhost.jhs.private [127.0.0.1]) by fire.jhs.private (8.13.1/8.13.1) with ESMTP id k2CCQiDb092866 for ; Sun, 12 Mar 2006 13:26:44 +0100 (CET) (envelope-from jhs@fire.jhs.private) Message-Id: <200603121226.k2CCQiDb092866@fire.jhs.private> To: freebsd-stable@freebsd.org In-Reply-To: Message from "Nikolas Britton" of "Sun, 12 Mar 2006 00:55:43 CST." Date: Sun, 12 Mar 2006 13:26:43 +0100 From: "Julian H. Stacey" Subject: Re: When is the 6.1 branch going to be cut? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 12:22:53 -0000 > Have you thought about putting up a page on the website where FreeBSD > committers and core members can easily post news, such as this, in an > informal and/or casual manner?... wiki, blog, etc. Info of slippage should be by mail list, Wiki & Blog have draw backs: - Needs active monitoring, whereas once subscribed to a mail list one's interest in topics is registered & one gets info automatically, not just on polling. - Needs permanent net connection whereas Mail can be downloaded when on line & read off line while travelling on laptop, pda etc. Wlan is not global coverage, fast or free. -- Julian Stacey. Consultant Unix Net & Sys. Eng., Munich. http://berklix.com Mail in Ascii, HTML=spam. Ihr Rauch = meine allergischen Kopfschmerzen. From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 19:51:56 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6C0E16A403; Sun, 12 Mar 2006 19:51:55 +0000 (GMT) (envelope-from rmarella@gmail.com) Received: from ms-smtp-01-eri0.socal.rr.com (ms-smtp-01-qfe0.socal.rr.com [66.75.162.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5045843D45; Sun, 12 Mar 2006 19:51:55 +0000 (GMT) (envelope-from rmarella@gmail.com) Received: from frankie.konav201.local (cpe-66-8-187-40.hawaii.res.rr.com [66.8.187.40]) by ms-smtp-01-eri0.socal.rr.com (8.13.4/8.13.4) with ESMTP id k2CJpr2a027823; Sun, 12 Mar 2006 11:51:54 -0800 (PST) Date: Sun, 12 Mar 2006 09:51:52 -1000 From: Robert Marella To: Alex Dupre Message-ID: <20060312095152.3f705097@frankie.konav201.local> In-Reply-To: <44136C01.4030400@FreeBSD.org> References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> <44136C01.4030400@FreeBSD.org> X-Mailer: Sylpheed-Claws 2.0.0 (GTK+ 2.8.12; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: freebsd-stable@FreeBSD.org Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 19:51:56 -0000 On Sun, 12 Mar 2006 01:32:01 +0100 Alex Dupre wrote: > Robert Marella wrote: > > This problem has been discussed many times on the lists. In order to > > update devfs you can use: > > > > cat /dev/null > /dev/daX > > > > I seem to remember another method using dd. > > > > I hope this helps. > > The 'cat' way works, thanks. Perhaps we should add this info somewhere > in a man page. > > -- > Alex Dupre It is a pleasure to be of assistance. Have a great day. Robert From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 20:09:41 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C3016A40B for ; Sun, 12 Mar 2006 20:09:41 +0000 (GMT) (envelope-from simond@irrelevant.org) Received: from www.irrelevant.org (dsl82-163-99-116.as15444.net [82.163.99.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E6C43D5E for ; Sun, 12 Mar 2006 20:09:36 +0000 (GMT) (envelope-from simond@irrelevant.org) Received: from dsl82-163-99-114.as15444.net ([82.163.99.114] helo=[192.168.21.199]) by www.irrelevant.org with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FIWse-000BfP-Jl for freebsd-stable@freebsd.org; Sun, 12 Mar 2006 20:09:33 +0000 Mime-Version: 1.0 X-Mailer: SnapperMail 2.3.3.04 by Snapperfish To: freebsd-stable@freebsd.org Message-ID: <4657-SnapperMsgD96B4246C03A307B@[192.168.21.199]> In-Reply-To: <20060311.162421.97071374.imp@bsdimp.com> References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> <20060311.162421.97071374.imp@bsdimp.com> From: Simon Dick Date: Sun, 12 Mar 2006 19:54:42 +0000 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Spam-Score: -4.4 (----) X-Spam-Report: Spam detection software, running on the system "amd64.irrelevant.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: ...... Original Message ....... On Sat, 11 Mar 2006 16:24:21 -0700 (MST) "M. Warner Losh" wrote: >In message: <20060311124931.62eee647@frankie.konav201.local> > Robert Marella writes: >: On Sat, 11 Mar 2006 13:51:30 +0100 >: Alex Dupre wrote: >: >: > My new PC has an internal 16-in-1 card reader connected via USB 2.0. >: > The device is the Techsolo TCR-1640 >: > (http://www.techsolo.de/product/cardreader/tcr_1640/index.php). >: > I boot from a compact flash inserted in it and I can mount and unmount >: > the same CF once the system has booted and has mounted the root >: > partition from my graid3 array. >: > The problem arise when I replace the inserted CF with another one >: > (with different size and filesystem) and try to mount it. Fdisk can >: > correctly sees the new partition table, but devfs is not updated and >: > I cannot mount the new media. >: >: >: >: Hello Alex >: >: This problem has been discussed many times on the lists. In order to >: update devfs you can use: >: >: cat /dev/null > /dev/daX >: >: I seem to remember another method using dd. > >dd if=/dev/null of=/dev/daX count=0 [...] Content analysis details: (-4.4 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.8 ALL_TRUSTED Passed through trusted hosts only via SMTP -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 20:09:42 -0000 ...... Original Message ....... On Sat, 11 Mar 2006 16:24:21 -0700 (MST) "M. Warner Losh" wrote: >In message: <20060311124931.62eee647@frankie.konav201.local> > Robert Marella writes: >: On Sat, 11 Mar 2006 13:51:30 +0100 >: Alex Dupre wrote: >: >: > My new PC has an internal 16-in-1 card reader connected via USB 2.0. >: > The device is the Techsolo TCR-1640 >: > (http://www.techsolo.de/product/cardreader/tcr_1640/index.php). >: > I boot from a compact flash inserted in it and I can mount and unmount >: > the same CF once the system has booted and has mounted the root >: > partition from my graid3 array. >: > The problem arise when I replace the inserted CF with another one >: > (with different size and filesystem) and try to mount it. Fdisk can >: > correctly sees the new partition table, but devfs is not updated and >: > I cannot mount the new media. >: >: >: >: Hello Alex >: >: This problem has been discussed many times on the lists. In order to >: update devfs you can use: >: >: cat /dev/null > /dev/daX >: >: I seem to remember another method using dd. > >dd if=/dev/null of=/dev/daX count=0 true >/dev/daX is my favourite due to typing length. From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 21:33:38 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60FCD16A402; Sun, 12 Mar 2006 21:33:36 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3171243D45; Sun, 12 Mar 2006 21:33:35 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 68837707414; Mon, 13 Mar 2006 08:33:33 +1100 (EST) X-Viruscan-Id: <441493AD000143773365B2@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.barnet.com.au", Issuer "BarNet Root Certificate Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id E8C917073E5; Mon, 13 Mar 2006 08:33:32 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 532667073DB; Mon, 13 Mar 2006 08:33:32 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 3B75C23F; Mon, 13 Mar 2006 08:33:31 +1100 (EST) Date: Mon, 13 Mar 2006 08:33:31 +1100 From: Edwin Groothuis To: Alex Dupre Message-ID: <20060312213331.GA969@k7.mavetju> Mail-Followup-To: Edwin Groothuis , Alex Dupre , freebsd-stable@freebsd.org References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> <44136C01.4030400@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44136C01.4030400@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 21:33:38 -0000 On Sun, Mar 12, 2006 at 01:32:01AM +0100, Alex Dupre wrote: > Robert Marella wrote: > > This problem has been discussed many times on the lists. In order to > > update devfs you can use: > > > > cat /dev/null > /dev/daX > > > > I seem to remember another method using dd. > > > > I hope this helps. > > The 'cat' way works, thanks. Perhaps we should add this info somewhere > in a man page. Hmm... doesn't seem to do the trick with my Samsung SGH-D600 phone: Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): SCSI Status: Check Condition Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): Medium not present Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): Unretryable error Mar 13 08:31:56 k7 kernel: Opened disk da0 -> 6 [/home/edwin] root@k7>cat /dev/null > /dev/da0 su: /dev/da0: Device not configured I blame the phone at this momment :-) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 21:36:26 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F75516A401 for ; Sun, 12 Mar 2006 21:36:26 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC07F43D45 for ; Sun, 12 Mar 2006 21:36:25 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 0187C707416; Mon, 13 Mar 2006 08:36:24 +1100 (EST) X-Viruscan-Id: <4414945800014FE4FDD504@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.barnet.com.au", Issuer "BarNet Root Certificate Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 0410870741A for ; Mon, 13 Mar 2006 08:36:22 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail2-auth.barnet.com.au (Postfix) with ESMTP id BEABB707414 for ; Mon, 13 Mar 2006 08:36:20 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id D4F7F248; Mon, 13 Mar 2006 08:36:19 +1100 (EST) Date: Mon, 13 Mar 2006 08:36:19 +1100 From: Edwin Groothuis To: freebsd-stable@freebsd.org Message-ID: <20060312213619.GB969@k7.mavetju> Mail-Followup-To: Edwin Groothuis , freebsd-stable@freebsd.org References: <4412C7D2.5080809@FreeBSD.org> <20060311124931.62eee647@frankie.konav201.local> <44136C01.4030400@FreeBSD.org> <20060312213331.GA969@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060312213331.GA969@k7.mavetju> User-Agent: Mutt/1.4.2.1i Subject: Re: Problem with 16-in-1 card reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 21:36:26 -0000 On Mon, Mar 13, 2006 at 08:33:31AM +1100, Edwin Groothuis wrote: > On Sun, Mar 12, 2006 at 01:32:01AM +0100, Alex Dupre wrote: > > Robert Marella wrote: > > > This problem has been discussed many times on the lists. In order to > > > update devfs you can use: > > > > > > cat /dev/null > /dev/daX > > > > > > I seem to remember another method using dd. > > > > > > I hope this helps. > > > > The 'cat' way works, thanks. Perhaps we should add this info somewhere > > in a man page. > > Hmm... doesn't seem to do the trick with my Samsung SGH-D600 phone: Don't forget these lines: Mar 13 08:30:42 k7 kernel: umass0: Samsung SAMSUNG Mobile USB Modem, rev 2.00/1.00, addr 2 Mar 13 08:30:43 k7 kernel: da0 at umass-sim0 bus 0 target 0 lun 0 Mar 13 08:30:43 k7 kernel: da0: < > Removable Direct Access SCSI-0 device Mar 13 08:30:43 k7 kernel: da0: 1.000MB/s transfers Mar 13 08:30:43 k7 kernel: da0: Attempt to query device size failed: NOT READY, Medium not present > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): SCSI Status: Check Condition > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): Medium not present > Mar 13 08:31:56 k7 kernel: (da0:umass-sim0:0:0:0): Unretryable error > Mar 13 08:31:56 k7 kernel: Opened disk da0 -> 6 > > [/home/edwin] root@k7>cat /dev/null > /dev/da0 > su: /dev/da0: Device not configured Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 22:17:31 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FB6116A400 for ; Sun, 12 Mar 2006 22:17:30 +0000 (GMT) (envelope-from eric@vangyzen.net) Received: from smtp.vangyzen.net (70-96-250-22.br1.lkv.mn.frontiernet.net [70.96.250.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F9F43D46 for ; Sun, 12 Mar 2006 22:17:29 +0000 (GMT) (envelope-from eric@vangyzen.net) Received: from [10.1.1.2] (fenchurch.vangyzen.net [10.1.1.2]) by smtp.vangyzen.net (Postfix) with ESMTP id 2A26F6D41D for ; Sun, 12 Mar 2006 16:17:29 -0600 (CST) Message-ID: <44149DF8.30608@vangyzen.net> Date: Sun, 12 Mar 2006 16:17:28 -0600 From: Eric van Gyzen User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050904) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: panic sbdrop on 6.0-RELEASE-p4 i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 22:17:31 -0000 I recently had two "sbdrop" panics on 6.0-RELEASE-p4 i386. Following are the stack traces and the kernel configuration. Of course, I still have the crash dumps, and I'll gladly help anyone who wants more informaion. --Eric ############################################################ ############################################################ $ kgdb kernel.debug /var/crash/vmcore-panic-sbdrop-2006-03-09 GNU gdb 6.1.1 [FreeBSD] [...] Unread portion of the kernel message buffer: [not ascii; here is a hexdump] c1 20 33 70 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 29 00 00 00 00 00 00 00 00 90 02 00 00 00 00 00 00 00 00 00 6c 0b 05 c1 00 00 00 00 09 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 88 14 05 c1 30 33 70 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2a 00 00 00 00 00 00 00 00 a0 02 00 00 00 00 00 00 00 00 00 b4 0b 05 c1 00 00 00 00 0d 0a 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 d0 14 05 c1 40 33 70 c0 18 0c 05 c1 90 a3 4b c1 88 a3 4b c1 00 00 00 00 6c 7f 4f c1 f8 15 00 00 00 00 00 00 00 b0 02 00 00 00 00 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt f #0 doadump () at pcpu.h:165 No locals. #1 0xc04fae3e in boot (howto=260) at /freebsd/src/sys/kern/kern_shutdown.c:399 first_buf_printf = 1 #2 0xc04fb104 in panic (fmt=0xc069ed40 "sbdrop") at /freebsd/src/sys/kern/kern_shutdown.c:555 td = (struct thread *) 0xc190e480 bootopt = 260 newpanic = 1 ap = 0xc190e480 "" buf = "sbdrop", '\0' #3 0xc05378b8 in sbdrop_locked (sb=0xcf603b50, len=940) at /freebsd/src/sys/kern/uipc_socket2.c:1157 m = (struct mbuf *) 0x0 next = (struct mbuf *) 0x0 #4 0xc05377ce in sbflush_locked (sb=0xcf603b50) at /freebsd/src/sys/kern/uipc_socket2.c:1124 No locals. #5 0xc0536d49 in sbrelease_locked (sb=0xcf603b50, so=0x0) at /freebsd/src/sys/kern/uipc_socket2.c:559 No locals. #6 0xc0536db1 in sbrelease (sb=0xcf603b50, so=0xc19c2c84) at /freebsd/src/sys/kern/uipc_socket2.c:572 No locals. #7 0xc0534921 in sorflush (so=0xc19c2c84) at /freebsd/src/sys/kern/uipc_socket.c:1480 sb = (struct sockbuf *) 0xc19c2cd4 pr = (struct protosw *) 0xc06d46a0 asb = {sb_sel = {si_thrlist = {tqe_next = 0x0, tqe_prev = 0x0}, si_thread = 0x0, si_note = {kl_list = {slh_first = 0x0}, kl_lock = 0, kl_unlock = 0, kl_locked = 0, kl_lockarg = 0x0}, si_flags = 0}, sb_mtx = {mtx_object = {lo_class = 0xc06cf004, lo_name = 0xc069ecad "so_rcv", lo_type = 0xc069ecad "so_rcv", lo_flags = 196608, lo_list = {tqe_next = 0x0, tqe_prev = 0x0}, lo_witness = 0x0}, mtx_lock = 3247498368, mtx_recurse = 0}, sb_state = 0, sb_mb = 0xc29af800, sb_mbtail = 0xc29af800, sb_lastrecord = 0xc29af800, sb_cc = 940, sb_hiwat = 8192, sb_mbcnt = 2048, sb_mbmax = 65536, sb_ctl = 0, sb_lowat = 1, sb_timeo = 0, sb_flags = 64} #8 0xc0532cbb in sofree (so=0xc19c2c84) at /freebsd/src/sys/kern/uipc_socket.c:406 head = (struct socket *) 0x0 #9 0xc0532fe9 in soclose (so=0xc19c2c84) at /freebsd/src/sys/kern/uipc_socket.c:484 error = 0 #10 0xc0522e6b in soo_close (fp=0xc1eac870, td=0xc190e480) at /freebsd/src/sys/kern/sys_socket.c:317 error = 0 so = (struct socket *) 0x0 #11 0xc04dc0d4 in fdrop_locked (fp=0xc1eac870, td=0xc190e480) at file.h:289 error = 0 #12 0xc04dc025 in fdrop (fp=0xc1eac870, td=0xc190e480) at /freebsd/src/sys/kern/kern_descrip.c:2101 No locals. #13 0xc04da653 in closef (fp=0xc1eac870, td=0xc190e480) at /freebsd/src/sys/kern/kern_descrip.c:1921 vp = (struct vnode *) 0xc1eac870 lf = {l_start = 4294967295, l_len = -4495592928909675680, l_pid = 0, l_type = -7040, l_whence = -15984} fdtol = (struct filedesc_to_leader *) 0xcf603ca0 fdp = (struct filedesc *) 0xc2ce5200 #14 0xc04d7a81 in close (td=0xc190e480, uap=0x0) at /freebsd/src/sys/kern/kern_descrip.c:1004 fdp = (struct filedesc *) 0xc2ce5200 fp = (struct file *) 0xc1eac870 fd = 1 error = -1047468928 holdleaders = 0 #15 0xc0662dbb in syscall (frame= {tf_fs = 59, tf_es = 59, tf_ds = 59, tf_edi = 1, tf_esi = 134613344, tf_ebp = -1077941400, tf_isp = -815776412, tf_ebx = 134729728, tf_edx = 0, tf_ecx = 1, tf_eax = 6, tf_trapno = 22, tf_err = 2, tf_eip = 169785299, tf_cs = 51, tf_eflags = 642, tf_esp = -1077941428, tf_ss = 59}) at /freebsd/src/sys/i386/i386/trap.c:976 params = 0xbfbfeb50
callp = (struct sysent *) 0xc06ca6e8 td = (struct thread *) 0xc190e480 p = (struct proc *) 0xc19c720c orig_tf_eflags = 642 sticks = 4436 error = 0 narg = 1 args = {1, -815776464, -1067048045, 0, 0, 0, 4436, -1046711796} code = 6 #16 0xc06520cf in Xint0x80_syscall () at /freebsd/src/sys/i386/i386/exception.s:200 No locals. #17 0x00000033 in ?? () No symbol table info available. Previous frame inner to this frame (corrupt stack?) ############################################################ ############################################################ $ kgdb kernel.debug /var/crash/vmcore-panic-sbdrop-2006-03-12 GNU gdb 6.1.1 [FreeBSD] [...] Unread portion of the kernel message buffer: [not ascii; here is a hexdump] 51 c1 00 40 09 28 18 6c 03 c1 08 3c 03 c1 38 01 03 c1 50 95 03 c1 44 44 51 c1 00 a0 06 08 00 00 00 00 74 07 37 c1 d0 e5 02 c1 28 f9 02 c1 4c 4b 51 c1 00 00 12 28 d0 52 03 c1 f4 48 3c c1 c0 7c 03 c1 a0 f6 02 c1 18 43 51 c1 00 20 07 28 00 00 00 00 ac 37 35 c1 08 0d 0a 03 c1 88 40 03 c1 78 4c 51 c1 00 30 0f 28 d8 c3 03 c1 18 e8 02 c1 e0 e4 02 c1 20 02 03 c1 c8 47 51 c1 00 a0 13 08 00 00 00 00 4c 13 3b c1 a0 28 03 c1 28 60 03 c1 18 43 51 c1 00 b0 bf bf 00 00 00 00 5c 0c 35 c1 58 0b 03 c1 d0 43 03 c1 c8 47 51 c1 00 50 17 08 00 00 00 00 e4 d0 36 c1 d0 4b 03 c1 00 1d 03 c1 a4 dd 94 c1 00 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt f #0 doadump () at pcpu.h:165 No locals. #1 0xc04fae3e in boot (howto=260) at /freebsd/src/sys/kern/kern_shutdown.c:399 first_buf_printf = 1 #2 0xc04fb104 in panic (fmt=0xc069ed40 "sbdrop") at /freebsd/src/sys/kern/kern_shutdown.c:555 td = (struct thread *) 0xc194ac00 bootopt = 260 newpanic = 1 ap = 0xc194ac00 "" buf = "sbdrop", '\0' #3 0xc05378b8 in sbdrop_locked (sb=0xcf612b50, len=17) at /freebsd/src/sys/kern/uipc_socket2.c:1157 m = (struct mbuf *) 0x0 next = (struct mbuf *) 0x0 #4 0xc05377ce in sbflush_locked (sb=0xcf612b50) at /freebsd/src/sys/kern/uipc_socket2.c:1124 No locals. #5 0xc0536d49 in sbrelease_locked (sb=0xcf612b50, so=0x0) at /freebsd/src/sys/kern/uipc_socket2.c:559 No locals. #6 0xc0536db1 in sbrelease (sb=0xcf612b50, so=0xc1908b20) at /freebsd/src/sys/kern/uipc_socket2.c:572 No locals. #7 0xc0534921 in sorflush (so=0xc1908b20) at /freebsd/src/sys/kern/uipc_socket.c:1480 sb = (struct sockbuf *) 0xc1908b70 pr = (struct protosw *) 0xc06d8b14 asb = {sb_sel = {si_thrlist = {tqe_next = 0x0, tqe_prev = 0x0}, si_thread = 0x0, si_note = {kl_list = {slh_first = 0x0}, kl_lock = 0, kl_unlock = 0, kl_locked = 0, kl_lockarg = 0x0}, si_flags = 0}, sb_mtx = {mtx_object = {lo_class = 0xc06cf004, lo_name = 0xc069ecad "so_rcv", lo_type = 0xc069ecad "so_rcv", lo_flags = 196608, lo_list = {tqe_next = 0x0, tqe_prev = 0x0}, lo_witness = 0x0}, mtx_lock = 3247746048, mtx_recurse = 0}, sb_state = 0, sb_mb = 0x0, sb_mbtail = 0x0, sb_lastrecord = 0x0, sb_cc = 17, sb_hiwat = 42080, sb_mbcnt = 4294964992, sb_mbmax = 262144, sb_ctl = 4294967280, sb_lowat = 1, sb_timeo = 0, sb_flags = 64} #8 0xc0532cbb in sofree (so=0xc1908b20) at /freebsd/src/sys/kern/uipc_socket.c:406 head = (struct socket *) 0x0 #9 0xc0532fe9 in soclose (so=0xc1908b20) at /freebsd/src/sys/kern/uipc_socket.c:484 error = 0 #10 0xc0522e6b in soo_close (fp=0xc198ea20, td=0xc194ac00) at /freebsd/src/sys/kern/sys_socket.c:317 error = 0 so = (struct socket *) 0x0 #11 0xc04dc0d4 in fdrop_locked (fp=0xc198ea20, td=0xc194ac00) at file.h:289 error = 0 #12 0xc04dc025 in fdrop (fp=0xc198ea20, td=0xc194ac00) at /freebsd/src/sys/kern/kern_descrip.c:2101 No locals. #13 0xc04da653 in closef (fp=0xc198ea20, td=0xc194ac00) at /freebsd/src/sys/kern/kern_descrip.c:1921 vp = (struct vnode *) 0xc198ea20 lf = {l_start = -4580996068436530020, l_len = 23122899, l_pid = -370322744, l_type = 599, l_whence = 0} fdtol = (struct filedesc_to_leader *) 0xbe24ecff fdp = (struct filedesc *) 0xc1ca2400 #14 0xc04d7a81 in close (td=0xc194ac00, uap=0x0) at /freebsd/src/sys/kern/kern_descrip.c:1004 fdp = (struct filedesc *) 0xc1ca2400 fp = (struct file *) 0xc198ea20 fd = 3 error = -1047221248 holdleaders = 0 #15 0xc0662dbb in syscall (frame= {tf_fs = 59, tf_es = 59, tf_ds = 59, tf_edi = 0, tf_esi = 673886912, tf_ebp = -1077941608, tf_isp = -815714972, tf_ebx = 673809636, tf_edx = 0, tf_ecx = 0, tf_eax = 6, tf_trapno = 0, tf_err = 2, tf_eip = 673286099, tf_cs = 51, tf_eflags = 534, tf_esp = -1077941636, tf_ss = 59}) at /freebsd/src/sys/i386/i386/trap.c:976 params = 0xbfbfea80
callp = (struct sysent *) 0xc06ca6e8 td = (struct thread *) 0xc194ac00 p = (struct proc *) 0xc1a7f624 orig_tf_eflags = 534 sticks = 12 error = 0 narg = 1 args = {3, -1066484000, 152949657, -815715028, -1067035982, -1066484000, -815715020, 672605572} code = 6 #16 0xc06520cf in Xint0x80_syscall () at /freebsd/src/sys/i386/i386/exception.s:200 No locals. #17 0x00000033 in ?? () No symbol table info available. Previous frame inner to this frame (corrupt stack?) ############################################################ ############################################################ machine i386 cpu I686_CPU options SCHED_4BSD options PREEMPTION options INET options INET6 options FFS options SOFTUPDATES options UFS_ACL options UFS_DIRHASH options MSDOSFS options CD9660 options GEOM_GPT options COMPAT_43 options COMPAT_FREEBSD4 options COMPAT_FREEBSD5 options SCSI_DELAY=1000 options KTRACE options SYSVSHM options SYSVMSG options SYSVSEM options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV options ADAPTIVE_GIANT device apic device isa device pci device ata device atadisk options ATA_STATIC_ID device scbus device da device cd device pass device atkbdc device atkbd device psm device vga device splash device sc device agp device npx device pmtimer device ppc device ppbus device lpt device plip device ppi device loop device mem device io device random device ether device pty device md device bpf device uhci device ohci device ehci device usb device ugen device uhid device ukbd device ulpt device umass device ums options INCLUDE_CONFIG_FILE makeoptions DEBUG=-g options KDB options DDB options GDB ident WITHHELD device fdc device atapicd device atapicam device sym device sio device miibus device rl device fxp device wlan device wlan_wep device wlan_ccmp device wlan_tkip device wlan_xauth device wlan_acl device ath device ath_hal device ath_rate_sample options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=1024 options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT From owner-freebsd-stable@FreeBSD.ORG Sun Mar 12 23:44:38 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAED616A455 for ; Sun, 12 Mar 2006 23:44:38 +0000 (GMT) (envelope-from paulo@nlink.com.br) Received: from smtp.nlink.com.br (smtp.nlink.com.br [201.12.59.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 02B0243D5D for ; Sun, 12 Mar 2006 23:44:26 +0000 (GMT) (envelope-from paulo@nlink.com.br) Received: (qmail 32374 invoked from network); 12 Mar 2006 23:44:24 -0000 Received: from unknown (HELO ?192.168.2.2?) (paulo@intra.nlink.com.br@201.12.60.146) by smtp.nlink.com.br with SMTP; 12 Mar 2006 23:44:24 -0000 Message-ID: <4414B24E.5030906@nlink.com.br> Date: Sun, 12 Mar 2006 20:44:14 -0300 From: Paulo Fragoso User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050926) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <44096E63.2070505@nlink.com.br> In-Reply-To: <44096E63.2070505@nlink.com.br> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Freezes in wireless bridge X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 23:44:39 -0000 Paulo Fragoso wrote: > Hi, > > We have two bridges running FreeBSD 6.1-BETA1 and we have a lot of > freezes in a week, it's happening when trafic is high, but it has ever > happened when we was changing dev.ath.0.acktimeout. > > There aren't dumps, all CPU is freezed, state of leds in kayboard > doesn't change, only leds of wireless card (D-Link G520) are blinking. > Some times is printed on console DMA erros of ad0 before system to > freeze. After cvsup src-all upgrade (2006-03-04) which had changed version of ath_hal from 0.9.14.9 to 0.9.16.16 and after we had changed bridge configuration from net.link.ether.bridge.config="..." to added device if_bridge, we can't get anymore freezes: $ uptime 20:35 up 7 days, 4:38, 1 user, load averages: 0,03 0,03 0,00 Is there any problem with bridge (net.link.ether.bridge.config) or old ath_hal? We can't found any change.log about this problem. Paulo Fragoso. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 02:16:02 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4811216A41F for ; Mon, 13 Mar 2006 02:16:02 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id F101043D45 for ; Mon, 13 Mar 2006 02:16:01 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.1.3] (unknown [192.168.1.3]) by yertle.kcilink.com (Postfix) with ESMTP id 52255B80C for ; Sun, 12 Mar 2006 21:16:01 -0500 (EST) In-Reply-To: <1131.68.49.189.193.1142024273.squirrel@68.49.189.193> References: Your message of "Fri, 10 Mar 2006 10:07:51 +0100." <20060310090751.GD74820@hugo10.ka.punkt.de> <20060310205326.B372F45041@ptavv.es.net> <1131.68.49.189.193.1142024273.squirrel@68.49.189.193> Mime-Version: 1.0 (Apple Message framework v746.2) X-Priority: 3 (Normal) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <7BC2C4FC-19C9-49B7-99D4-854952DC665A@khera.org> Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Sun, 12 Mar 2006 21:16:00 -0500 To: freebsd-stable X-Mailer: Apple Mail (2.746.2) Subject: Re: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 02:16:02 -0000 On Mar 10, 2006, at 3:57 PM, Brian Szymanski wrote: > Also, does anyone know if the megaraid management tools work on > freebsd? If you enable compat for freebsd 4 and if you're on amd64 also have compat 32bits, then megamgr works fin on both i386 and amd64. I don't like the other command line tools that much. megamgr is nice because it looks just like the BIOS looks. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 04:44:14 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7459116A420 for ; Mon, 13 Mar 2006 04:44:14 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id E030343D58 for ; Mon, 13 Mar 2006 04:44:13 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id k2D4fUK2067126 for ; Sun, 12 Mar 2006 21:41:30 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 12 Mar 2006 21:41:45 -0700 (MST) Message-Id: <20060312.214145.34007702.imp@bsdimp.com> To: stable@FreeBSD.org From: "M. Warner Losh" X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sun, 12 Mar 2006 21:41:30 -0700 (MST) Cc: Subject: BETA3 report X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 04:44:14 -0000 I just tried to boot the BETA3 disc1 iso on my Toshiba Satellite A64-S1762. I got a cryptic message: Too many holes in the physical address space, giving up PANIC (if I've gone into the BIOS at all), followed by a panic. Or I get a panic when probing the ohci device (either with or without a USB keyboard attached, the built-in keyboard is fried). Has anybody else seen this? Is there a debug kernel I can boot, or do I have to build one of my own? Warner From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 05:43:08 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2857516A435 for ; Mon, 13 Mar 2006 05:43:08 +0000 (UTC) (envelope-from paul.koch@statseeker.com) Received: from wally.statseeker.com (wally.statscout.com [203.39.101.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7D7F43D4C for ; Mon, 13 Mar 2006 05:43:05 +0000 (GMT) (envelope-from paul.koch@statseeker.com) Received: from localhost (localhost [127.0.0.1]) by wally.statseeker.com (8.13.3/8.13.3) with ESMTP id k2D5gcK8022207; Mon, 13 Mar 2006 15:42:38 +1000 (EST) (envelope-from paul.koch@statseeker.com) Received: from wally.statseeker.com ([127.0.0.1]) by localhost (wally.statseeker.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 22113-01; Mon, 13 Mar 2006 15:42:31 +1000 (EST) Received: from speedy (speedy.statseeker.com [10.1.1.100]) (authenticated bits=0) by wally.statseeker.com (8.13.3/8.13.3) with ESMTP id k2D5gVXu022202 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NOT); Mon, 13 Mar 2006 15:42:31 +1000 (EST) (envelope-from paul.koch@statseeker.com) From: Paul Koch To: stable@freebsd.org Date: Mon, 13 Mar 2006 15:42:27 +1000 User-Agent: KMail/1.8 References: <20060312.214145.34007702.imp@bsdimp.com> In-Reply-To: <20060312.214145.34007702.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603131542.28034.paul.koch@statseeker.com> X-Virus-Scanned: amavisd-new at statseeker.com Cc: Subject: Re: BETA3 report X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: paul.koch@statseeker.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 05:43:08 -0000 On Mon, 13 Mar 2006 02:41 pm, M. Warner Losh wrote: > I just tried to boot the BETA3 disc1 iso on my Toshiba Satellite > A64-S1762. I got a cryptic message: > > Too many holes in the physical address space, giving up > > PANIC > (if I've gone into the BIOS at all), followed by a panic. > > Or I get a panic when probing the ohci device (either with or without > a USB keyboard attached, the built-in keyboard is fried). > > Has anybody else seen this? Is there a debug kernel I can boot, or > do I have to build one of my own? > > Warner Hi, Is this related to issue 2 in my previous post: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=153993+0+archive/2005/freebsd-stable/20051127.freebsd-stable Paul. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 06:23:25 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC76B16A401 for ; Mon, 13 Mar 2006 06:23:25 +0000 (UTC) (envelope-from imp@BSDIMP.COM) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADF443D45 for ; Mon, 13 Mar 2006 06:23:24 +0000 (GMT) (envelope-from imp@BSDIMP.COM) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id k2D6MFhh067678; Sun, 12 Mar 2006 23:22:15 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 12 Mar 2006 23:22:31 -0700 (MST) Message-Id: <20060312.232231.128865872.imp@bsdimp.com> To: paul.koch@statseeker.com From: "M. Warner Losh" In-Reply-To: <200603131542.28034.paul.koch@statseeker.com> References: <20060312.214145.34007702.imp@bsdimp.com> <200603131542.28034.paul.koch@statseeker.com> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sun, 12 Mar 2006 23:22:15 -0700 (MST) Cc: stable@freebsd.org Subject: Re: BETA3 report X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 06:23:25 -0000 In message: <200603131542.28034.paul.koch@statseeker.com> Paul Koch writes: : On Mon, 13 Mar 2006 02:41 pm, M. Warner Losh wrote: : > I just tried to boot the BETA3 disc1 iso on my Toshiba Satellite : > A64-S1762. I got a cryptic message: : > : > Too many holes in the physical address space, giving up : > : > PANIC : > (if I've gone into the BIOS at all), followed by a panic. : > : > Or I get a panic when probing the ohci device (either with or without : > a USB keyboard attached, the built-in keyboard is fried). : > : > Has anybody else seen this? Is there a debug kernel I can boot, or : > do I have to build one of my own? : > : > Warner : : Hi, : : Is this related to issue 2 in my previous post: : http://docs.freebsd.org/cgi/getmsg.cgi?fetch=153993+0+archive/2005/freebsd-stable/20051127.freebsd-stable This isn't related to issue #1, but might be related to the other issue. I have a mobile pentium 3.2GHz. The older Toshiba Tecra 8000 works great. Warner From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 07:46:41 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B2D116A400 for ; Mon, 13 Mar 2006 07:46:41 +0000 (UTC) (envelope-from ski@mediamatters.org) Received: from mail.mediamatters.org (mail.mediamatters.org [63.240.197.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA1C43D45 for ; Mon, 13 Mar 2006 07:46:39 +0000 (GMT) (envelope-from ski@mediamatters.org) Received: by mail.mediamatters.org (Postfix, from userid 33) id 9334F96C15E; Mon, 13 Mar 2006 02:46:38 -0500 (EST) Received: from 68.49.189.193 (SquirrelMail authenticated user ski); by mail.mediamatters.org with HTTP; Mon, 13 Mar 2006 02:46:38 -0500 (EST) Message-ID: <4350.68.49.189.193.1142235998.squirrel@68.49.189.193> Date: Mon, 13 Mar 2006 02:46:38 -0500 (EST) From: "Brian Szymanski" To: freebsd-stable@freebsd.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 07:46:42 -0000 I sent an email to highpoint tech support detailing the problems, and have had no response after an initial ping :( ... Here is a summary of what I sent them: For all tests, I ran bonnie++ over and over again while concurrently copying the contents of /usr to the mounted disk, then rm -rf'ing repeatedly. I tried two configurations with 2 200G drives, one RAID-0, one RAID-1. In raid-0 mode, the kernel error was: IAL: COMPLETION ERROR, adapter 0, channel 1, flags=104 ATA regs: error 40, sector count 20, LBA low 5f, LBA mid 16, LBA high 5f, device 4c, status 51 Reset channel IAL: COMPLETION ERROR, adapter 0, channel 1, flags=104 ATA regs: error 40, sector count 20, LBA low 5f, LBA mid 16, LBA high 5f, device 4c, status 51 Reset channel ... hptmv: Device removed: controller 1 channel 1 (da0:hptmv0:0:0:0): Synchronize cache failed, status == 0x39, scsi status == 0x0 Opened disk da0 -> 5 Opened disk da0 -> 5 ... At this point any attempts to access any mounted files or the raw device die with an io error. In raid-1 mode, I got a panic: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x400 fault code = supervisor read, page not present instruction pointer = 0x8:0xc073646c stack pointer = 0x10:0xe4e05ba4 frame pointer = 0x10:0xe4e05bf0 code segment = base 0x0, limit 0xfffff, type 0x1b - DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 3 (g_up) trap number = 12 panic: page fault I later tried a RAID-5 array, and doing the same basic stress testing, the machine would panic after between 3-6 hours. I didn't record the error message, but it was something about freeing an already free page. I upgraded the BIOS to version 1.17c from the 1.13 that was on the cards when they shipped. This seemed to improve things, but did not eliminate the problems. I tried fbsd 5.4 and 6.0, with both a custom kernel and GENERIC versions. Never was I able to stress test for more than about 8-10 hours without a panic or the device becoming inaccessible. Of course, there is also the lack of management utilities while the OS is running which has me looking elsewhere. I'd be willing to try further tests if folks have patches or other ideas - I have a couple more weeks before I have to RMA the suckers, and am willing to do testing if someone wants to make a patch... Cheers, B > Interested to hear that you have a problem with your highpoint driver, what sort of problems are you seeing? > > On Fri, 2006-03-10 at 12:30 +0000, Steven Hartland wrote: >> What problems are you having there Brian, Im currently in contact with the Highpoint developers over a specific issue with that card's drivers and would be happy to raise any other issues you may be seeing. >> >> Aside from the that we have had good experiences with Areca card. >> >> Steve >> ----- Original Message ----- >> From: "Brian Szymanski" >> > >> > After not having much success with the hptmv driver for highpoint's rocketraid 1820A, I'm wondering if other folks have had good luck with >> any >> > SATA RAID cards with at least 6 ports... Is there a SATA RAID card >> with >> > utilities that let you manage while the OS is running that folks have >> had >> > good luck with? I've been happy with the megaraid series on linux at >> my >> > job, but I'm wondering if the management utilities are there on >> freebsd, >> > etc >> >> >> ================================================ >> This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of >> misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. >> >> In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 >> or return the E.mail to postmaster@multiplay.co.uk. >> >> _______________________________________________ >> freebsd-stable@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >> To unsubscribe, send any mail to >> "freebsd-stable-unsubscribe@freebsd.org" > > Brian Szymanski Software and Systems Developer Media Matters for America ski@mediamatters.org From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 08:40:03 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1133C16A401; Mon, 13 Mar 2006 08:40:01 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49FDB43D49; Mon, 13 Mar 2006 08:40:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 2B3761A3C2F; Mon, 13 Mar 2006 00:40:00 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 46D9E51456; Mon, 13 Mar 2006 03:39:55 -0500 (EST) Date: Mon, 13 Mar 2006 03:39:54 -0500 From: Kris Kennaway To: Kris Kennaway Message-ID: <20060313083954.GA46731@xor.obsecurity.org> References: <200601290551.k0T5pwEC028440@repoman.freebsd.org> <20060129060654.GA47495@xor.obsecurity.org> <20060129061300.GA47596@xor.obsecurity.org> <43DC5E0B.40003@root.org> <20060129063007.GA47800@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20060129063007.GA47800@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i Cc: Nate Lawson , stable@FreeBSD.org, Nate Lawson Subject: Problems with hw.acpi.cpu.cx_lowest=C2 (Re: cvs commit: src/etc/defaults rc.conf) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 08:40:03 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 29, 2006 at 01:30:07AM -0500, Kris Kennaway wrote: > On Sat, Jan 28, 2006 at 10:17:47PM -0800, Nate Lawson wrote: > > Kris Kennaway wrote: > > >On Sun, Jan 29, 2006 at 01:06:54AM -0500, Kris Kennaway wrote: > > > > > >>On Sun, Jan 29, 2006 at 05:51:58AM +0000, Nate Lawson wrote: > > >> > > >>>njl 2006-01-29 05:51:58 UTC > > >>> > > >>> FreeBSD src repository > > >>> > > >>> Modified files: > > >>> etc/defaults rc.conf=20 > > >>> Log: > > >>> Enable the lowest Cx state by default. This will save power and we= have > > >>> had enough testing of acpi_cpu to know this is stable now. > > >> > > >>On my desktop system (running RELENG_6 though), setting > > >>hw.acpi.cpu.cx_lowest=3DC0 causes atrocious performance. Is it broken > > >>in 6.x? > > > > > >C2, sorry. > >=20 > > Ah, C0 should be disallowed already I thought (try it). > >=20 > > As for C2, I MFCd a patch to acpi_cpu.c in November that should prevent= =20 > > this (1.57.2.1). Do you get a printf on console? >=20 > This might be it: turns out I never rebooted to the newer kernel I > built earlier this month, and I am still running a kernel from Nov 6. > I'll get back to you. I finally managed to test this in RELENG_6. The system performance is not obviously bad, but sound playback is distorted (e.g. the 'bell' in KDE is much higher pitched than it should be, and on the console it is low pitched and lasting about 3 seconds). Nothing is logged on console. There may be other problems that I didn't notice right away, but the sound problems were enough to make me turn it off again. Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFS/aWry0BWjoQKURAvzUAKCeDhyOVorqUAzNT4LwLgP7t8KzFACfflT5 sKFc5KPDsOA0Xqrgk9JhD38= =CjKK -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 09:40:50 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73E5016A438 for ; Mon, 13 Mar 2006 09:40:49 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE1C943D53 for ; Mon, 13 Mar 2006 09:40:45 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by xproxy.gmail.com with SMTP id t15so803826wxc for ; Mon, 13 Mar 2006 01:40:44 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=chM/ZFZErP6BPTl5mrmzTz6WyUIQo0zdEcXlrYubXUY7w0Y8yUdtGG2ewdBAClShkVaXO90CjxhPB8FcdGQ8dt1UFZQoDDT3rvICosLbUkG5F0PDEjm4tIxxo9CPhBeJiSQKPoM/JxWl4uptoXdU2XlC727BlNUg1dR4R4FuiP4= Received: by 10.70.115.12 with SMTP id n12mr826838wxc; Mon, 13 Mar 2006 01:40:44 -0800 (PST) Received: by 10.70.65.9 with HTTP; Mon, 13 Mar 2006 01:40:44 -0800 (PST) Message-ID: Date: Mon, 13 Mar 2006 03:40:44 -0600 From: "Nikolas Britton" To: "Brian Szymanski" In-Reply-To: <1219.68.49.189.193.1141981287.squirrel@68.49.189.193> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1219.68.49.189.193.1141981287.squirrel@68.49.189.193> Cc: freebsd-stable@freebsd.org Subject: Re: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 09:40:51 -0000 On 3/10/06, Brian Szymanski wrote: > Howdy... > > After not having much success with the hptmv driver for highpoint's > rocketraid 1820A, I'm wondering if other folks have had good luck with an= y > SATA RAID cards with at least 6 ports... Is there a SATA RAID card with > utilities that let you manage while the OS is running that folks have had > good luck with? I've been happy with the megaraid series on linux at my > job, but I'm wondering if the management utilities are there on freebsd, > etc. > Anyone care to comment on Areca's ARC-11xx PCI-X cards? I'm thinking about getting an 1130 (12-port version). *Is the arcmsr driver in FreeBSD stable? *Any issues with arrays larger then 2TB? *Rebuild times? *Command Line management software? *Is the company BSD friendly, no binary blob object in the driver? *Competent tech support? *What does the ethernet port on the ARC-1130 do? I'm primarily interested in this card because it can do RAID level 6 and based on the benchmarks I've seen it's a top performer. Anyhow, to the OP, stay way from promise cards. -- BSD Podcasts @ http://bsdtalk.blogspot.com/ From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 09:59:23 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 167D916A423 for ; Mon, 13 Mar 2006 09:59:19 +0000 (UTC) (envelope-from dalroi@solfertje.student.utwente.nl) Received: from solfertje.student.utwente.nl (solfertje.student.utwente.nl [130.89.167.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8769D43D49 for ; Mon, 13 Mar 2006 09:59:18 +0000 (GMT) (envelope-from dalroi@solfertje.student.utwente.nl) Received: from [10.236.150.4] (hollewijn.internal [10.236.150.4]) by solfertje.student.utwente.nl (Postfix) with ESMTP id 8A6117DB5 for ; Mon, 13 Mar 2006 11:10:27 +0100 (CET) Mime-Version: 1.0 (Apple Message framework v746.2) To: freebsd-stable@freebsd.org Message-Id: <74B9D1C5-5786-475B-99E6-18384B071EFB@solfertje.student.utwente.nl> Content-Type: multipart/mixed; boundary=Apple-Mail-8-727997417 From: Alban Date: Mon, 13 Mar 2006 10:59:14 +0100 X-Mailer: Apple Mail (2.746.2) Subject: Segfaults from gcc, awk and Zend; advice needed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 09:59:23 -0000 --Apple-Mail-8-727997417 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed For some reason I'm getting more or less random segfaults compiling kernels, world or PHP5 on BETA-3 (Python and perl went ok). So far I haven't succeeded building a fresh kernel or world. This system is an Athlon XP with 1MB RAM and 4GB swap, compiling is done in the usual places in /usr, which is a set of two gstriped partitions. Dmesg attached. Previously this system has been running 5-STABLE w/o any such problems (uptime before installing 6 was about 80 days, started from an installworld). This machine doesn't regularly see load yet, except for the few build(world/kernel)/install(&)s. I haven't seen any other messages of this kind, so I suspect a local problem. So far I think I need to look at: - memory; run memtestx86 and cross fingers - I recollect seeing mention of problems with large amounts of swap on this list in the past; turn one of the swap partitions off or something like that - Optimization flags; I've tried setting CPUTYPE?=athlon-xp and CLFAGS=, CFLAGS=-O -pipe, CFLAGS=-O2 -pipe so far. All w/o avail... - gcc 3.4.4, awk, PHP are all borken (all were built using gcc 3.4.4, I suppose) I'm a bit low on spare time, so I'd like to tackle this problem efficiently. Anything I forgot or to help me find the culprit? Regards, --Apple-Mail-8-727997417 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="dmesg.out" Content-Disposition: attachment; filename=dmesg.out Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.1-BETA3 #0: Thu Mar 2 11:03:41 UTC 2006 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(TM) XP 2000+ (1666.74-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x662 Stepping = 2 Features=0x383f9ff AMD Features=0xc0400800 real memory = 1073659904 (1023 MB) avail memory = 1041723392 (993 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 cpu0: on acpi0 acpi_throttle0: on cpu0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: port 0xe000-0xe003 mem 0xf0000000-0xf7ffffff,0xef800000-0xef800fff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 5.0 (no driver attached) isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xb800-0xb80f at device 4.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0xb400-0xb41f irq 10 at device 4.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xb000-0xb01f irq 10 at device 4.3 on pci0 uhci1: [GIANT-LOCKED] usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pci0: at device 4.4 (no driver attached) pci0: at device 9.0 (no driver attached) xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0x9400-0x947f mem 0xdd800000-0xdd80007f at device 13.0 on pci0 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: Ethernet address: 00:04:76:0f:59:c2 fdc0: port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcbfff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 1666739708 Hz quality 800 Timecounters tick every 1.000 msec ad0: 190782MB at ata0-master UDMA100 ad1: 190782MB at ata0-slave UDMA100 acd0: CDRW at ata1-slave UDMA33 GEOM_MIRROR: Device root created (id=179367146). GEOM_MIRROR: Device root: provider ad0s1a detected. GEOM_MIRROR: Device var created (id=4294490537). GEOM_MIRROR: Device var: provider ad0s1d detected. GEOM_STRIPE: Device tmp created (id=1982480573). GEOM_STRIPE: Disk ad0s1e attached to tmp. GEOM_STRIPE: Device usr created (id=1752489598). GEOM_STRIPE: Disk ad0s1f attached to usr. GEOM_MIRROR: Device home created (id=2722179877). GEOM_MIRROR: Device home: provider ad0s1g detected. GEOM_MIRROR: Device root: provider ad1s1a detected. GEOM_MIRROR: Device root: provider ad1s1a activated. GEOM_MIRROR: Device root: provider ad0s1a activated. GEOM_MIRROR: Device root: provider mirror/root launched. GEOM_MIRROR: Device var: provider ad1s1d detected. GEOM_MIRROR: Device var: provider ad1s1d activated. GEOM_MIRROR: Device var: provider ad0s1d activated. GEOM_MIRROR: Device var: provider mirror/var launched. GEOM_STRIPE: Disk ad1s1e attached to tmp. GEOM_STRIPE: Device tmp activated. GEOM_STRIPE: Disk ad1s1f attached to usr. GEOM_STRIPE: Device usr activated. GEOM_MIRROR: Device home: provider ad1s1g detected. GEOM_MIRROR: Device home: provider ad1s1g activated. GEOM_MIRROR: Device home: provider ad0s1g activated. GEOM_MIRROR: Device home: provider mirror/home launched. WARNING: Expected rawoffset 0, found 63 Trying to mount root from ufs:/dev/mirror/root WARNING: Expected rawoffset 0, found 63 pid 41926 (conftest), uid 0: exited on signal 12 (core dumped) pid 90788 (httpd), uid 80: exited on signal 11 pid 90789 (httpd), uid 80: exited on signal 11 pid 90790 (httpd), uid 80: exited on signal 11 pid 90791 (httpd), uid 80: exited on signal 11 pid 90792 (httpd), uid 80: exited on signal 11 pid 10208 (ld), uid 0: exited on signal 11 (core dumped) pid 17113 (make), uid 0: exited on signal 11 (core dumped) pid 30256 (cc), uid 0: exited on signal 11 (core dumped) pid 48031 (as), uid 0: exited on signal 11 (core dumped) --Apple-Mail-8-727997417 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed -- Alban Hertroys Sometimes you wake up and you think: "Galileo was right, The world does rotate" --Apple-Mail-8-727997417-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 10:12:50 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1ED16A437; Mon, 13 Mar 2006 10:12:50 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE8143D66; Mon, 13 Mar 2006 10:12:49 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 83D0A46C05; Mon, 13 Mar 2006 05:12:25 -0500 (EST) Date: Mon, 13 Mar 2006 10:13:30 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: stable@FreeBSD.org Message-ID: <20060313100330.Q92638@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: jeff@FreeBSD.org Subject: HEADS UP: VFS SMP stability changes merged to RELENG_6 for next beta X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 10:12:50 -0000 Jeff Roberson merged a large number of VFS stability improvements to the RELENG_6 tree this morning. These are intended to appear in the next beta, and in stability tests run by Kris and others, they appear to help a lot. However, change comes with risk, and as such, this message is to let you know that the changes have gone into the tree and you might want to, among other things, make sure that you either have a kernel from completely before, or completely after, the series of commits, and you might want to wait 24-48 hours to upgrade to make sure no immediate problems turn up. The commits were performed between 3:00am UTC and 3:15am UTC today against the central CVS repository, and likely have appeared on all of the cvsup mirrors by now. Despite these warnings, it would be really good (tm) if people could run with them as much and as soon as possible in order to shake out any nits before the next beta. They've been getting pretty heavy testing in HEAD, but -CURRENT doesn't offer the testing breadth that -STABLE does, and getting that breadth is really important to the release. Jeff's brief description of the changes is attached below, and as you can see, they're all really good things to have in the release. Robert N M Watson 1) Improved debugging with DEBUG_LOCKS via the new stack(9) api. 2) Fixed an INACTIVE leak. 3) Fixed several unmount races. 4) Fixed several nullfs unmount issues. 5) Some more Giant related VFS fixes and asserts. 6) Fixed the quota deadlock. 7) Fixes for an alarming number of snapshot races. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 10:37:05 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1A0C16A400 for ; Mon, 13 Mar 2006 10:37:04 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (ll-227.216.82.212.sovam.net.ua [212.82.216.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 037E743D45 for ; Mon, 13 Mar 2006 10:37:03 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.3/8.13.3) with ESMTP id k2DAaHIS069832 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 13 Mar 2006 12:36:17 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k2DAaHie046958; Mon, 13 Mar 2006 12:36:17 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4/Submit) id k2DAaEdR046948; Mon, 13 Mar 2006 12:36:14 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 13 Mar 2006 12:36:14 +0200 From: Kostik Belousov To: Yar Tikhiy Message-ID: <20060313103614.GJ37572@deviant.kiev.zoral.com.ua> References: <44077091.3060604@freebsd.org> <80813.1141343429@thrush.ravenbrook.com> <20060306231556.GB64952@comp.chem.msu.su> <20060307101156.GF37572@deviant.kiev.zoral.com.ua> <20060307150631.GC82066@comp.chem.msu.su> <20060307161259.GG37572@deviant.kiev.zoral.com.ua> <20060310224950.GC75952@comp.chem.msu.su> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sWvRP97dwRHm9fX+" Content-Disposition: inline In-Reply-To: <20060310224950.GC75952@comp.chem.msu.su> User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 on fw.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on fw.zoral.com.ua Cc: Kostik Belousov , stable@freebsd.org Subject: Re: Failing to understand getrusage() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 10:37:05 -0000 --sWvRP97dwRHm9fX+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 11, 2006 at 01:49:50AM +0300, Yar Tikhiy wrote: > On Tue, Mar 07, 2006 at 06:12:59PM +0200, Kostik Belousov wrote: > >=20 > > It may be desirable to add ru_maxrss sampling at the calcru time too. > > Something like this: > >=20 > > Index: sys/kern/kern_resource.c > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > RCS file: /usr/local/arch/ncvs/src/sys/kern/kern_resource.c,v > > retrieving revision 1.156 > > diff -u -r1.156 kern_resource.c > > --- sys/kern/kern_resource.c 22 Feb 2006 16:58:48 -0000 1.156 > > +++ sys/kern/kern_resource.c 7 Mar 2006 16:10:27 -0000 > > @@ -853,9 +853,16 @@ > > struct rusage *rup; > > { > > struct proc *p; > > + struct vmspace *vm; > > + long rss; > > =20 > > p =3D td->td_proc; > > PROC_LOCK(p); > > + vm =3D p->p_vmspace; > > + rss =3D pgtok(vmspace_resident_count(vm)); > > + if (rup->ru_maxrss < rss) > > + rup->ru_maxrss =3D rss; > > + > > switch (who) { > > =20 > > case RUSAGE_SELF: > >=20 >=20 > Please excuse me for a dumb question, but what makes ru_maxrss so > different from other ru_ fields that it deserves special handling > in kern_getrusage()? Perhaps the all-or-nothing approach will be > better for the sake of consistency... Current resource usage accounting is inaccurate (i.e. done at sampling points) only for several fields, ru_maxrss being one of them. E.g., ru_nsignals is precise. Sure, the best would be implementing approach like solaris microaccounting (AFAIR, solaris could measure used parts of the time-slice where the thread runs on CPU, and do this measure on demand, not stressing the system when the exact numbers are not needed). My small fix just add little more sence to result of maxrss calculation, making it to never return meaningless values like 0. Better, pmaps shall be modified to correctly set maxrss (this seems to be not hard, could someone look at the patch if I implement it ?). --sWvRP97dwRHm9fX+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFUseC3+MBN1Mb4gRAstYAKCnpO9QypqvY6dtvaoXHokHfLTZ3ACg13vS wkfgS8qHBHI6cqjFM+eGN7A= =FxQj -----END PGP SIGNATURE----- --sWvRP97dwRHm9fX+-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 11:21:18 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0D2716A42C for ; Mon, 13 Mar 2006 11:21:12 +0000 (UTC) (envelope-from mv@roq.com) Received: from p4.roq.com (ns1.ecoms.com [207.44.130.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB8643D48 for ; Mon, 13 Mar 2006 11:21:05 +0000 (GMT) (envelope-from mv@roq.com) Received: from p4.roq.com (localhost.roq.com [127.0.0.1]) by p4.roq.com (Postfix) with ESMTP id EC11C4D2BB; Mon, 13 Mar 2006 11:21:29 +0000 (GMT) Received: from [192.168.0.6] (ppp157-158.static.internode.on.net [150.101.157.158]) by p4.roq.com (Postfix) with ESMTP id 03F574D170; Mon, 13 Mar 2006 11:21:28 +0000 (GMT) Message-ID: <441555A1.8040009@roq.com> Date: Mon, 13 Mar 2006 22:21:05 +1100 From: Michael Vince User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060213 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Steinberg, Michael" References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-stable@freebsd.org Subject: Re: kde X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 11:21:18 -0000 Steinberg, Michael wrote: >im compiling kde from the ports for about the hundreth time and something >always goes wrong this time its more simple than most but i can't seem to >find what im looking for. It attempted to fetch a library called tiff.4 in >several places and found nothing. It asked me to find it and ive been >looking all over google and got nothing. Does anybody know where i can find >this library? >Thanx, >Max > >_______________________________________________ >freebsd-stable@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-stable >To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > Maybe you just got to get more down and dirty. If its really getting tough and there seems no end in sight try a "portupgrade -kfa" which I have always assumed stands for (along with the old doom cheat codes) "Kick F**ken Ass" :) Also try with the -p switch to create packages which might save some time on mass package nukes and retrys, or even a -O to ignore dependencies. Also if you get stuck on something small like tiff try just installing it as a package over the internet. pkg_add -r tiff to install a binary package of it, you could also do a -f on that to force it, which is something that should be considered to at the top of your list. I almost always have a good look through my /var/db/pkg before and after even the most ruthless portupgrade I usually find it remarkably clean. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 12:03:25 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7130A16A433; Mon, 13 Mar 2006 12:03:25 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59EDE43D58; Mon, 13 Mar 2006 12:03:22 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.4/8.13.4) with ESMTP id k2DC3KTq058952; Mon, 13 Mar 2006 07:03:20 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.3/8.13.3) with ESMTP id k2DC3LF1004621; Mon, 13 Mar 2006 07:03:21 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id C77A87304D; Mon, 13 Mar 2006 07:03:20 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060313120320.C77A87304D@freebsd-current.sentex.ca> Date: Mon, 13 Mar 2006 07:03:20 -0500 (EST) X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on clamscanner4 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.51 on 205.211.164.50 Cc: Subject: [releng_6 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 12:03:26 -0000 TB --- 2006-03-13 10:37:02 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-03-13 10:37:02 - starting RELENG_6 tinderbox run for sparc64/sparc64 TB --- 2006-03-13 10:37:02 - cleaning the object tree TB --- 2006-03-13 10:37:31 - checking out the source tree TB --- 2006-03-13 10:37:31 - cd /tinderbox/RELENG_6/sparc64/sparc64 TB --- 2006-03-13 10:37:31 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src TB --- 2006-03-13 10:47:32 - building world (CFLAGS=-O2 -pipe) TB --- 2006-03-13 10:47:32 - cd /src TB --- 2006-03-13 10:47:32 - /usr/bin/make -B buildworld >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything TB --- 2006-03-13 11:51:45 - generating LINT kernel config TB --- 2006-03-13 11:51:45 - cd /src/sys/sparc64/conf TB --- 2006-03-13 11:51:45 - /usr/bin/make -B LINT TB --- 2006-03-13 11:51:45 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-03-13 11:51:45 - cd /src TB --- 2006-03-13 11:51:45 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 13 11:51:46 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] db_trace.o(.text+0x714): In function `stack_save': : undefined reference to `tl_text_begin' db_trace.o(.text+0x718): In function `stack_save': : undefined reference to `tl_text_end' db_trace.o(.text+0x71c): In function `stack_save': : undefined reference to `tl_text_begin' db_trace.o(.text+0x724): In function `stack_save': : undefined reference to `tl_text_end' *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-03-13 12:03:20 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-03-13 12:03:20 - ERROR: failed to build lint kernel TB --- 2006-03-13 12:03:20 - tinderbox aborted TB --- 1.04 user 4.55 system 5178.35 real From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 13:31:22 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ACE816A401 for ; Mon, 13 Mar 2006 13:31:22 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B1343D49 for ; Mon, 13 Mar 2006 13:31:21 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 286745CFC; Mon, 13 Mar 2006 08:31:21 -0500 (EST) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 52001-10; Mon, 13 Mar 2006 08:31:20 -0500 (EST) Received: from [192.168.1.3] (pool-68-161-129-91.ny325.east.verizon.net [68.161.129.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 284A05C28; Mon, 13 Mar 2006 08:31:20 -0500 (EST) Message-ID: <4415742B.8050205@mac.com> Date: Mon, 13 Mar 2006 08:31:23 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Alban , freebsd-stable References: <74B9D1C5-5786-475B-99E6-18384B071EFB@solfertje.student.utwente.nl> In-Reply-To: <74B9D1C5-5786-475B-99E6-18384B071EFB@solfertje.student.utwente.nl> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com Cc: Subject: Re: Segfaults from gcc, awk and Zend; advice needed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 13:31:22 -0000 Alban wrote: > For some reason I'm getting more or less random segfaults compiling > kernels, world or PHP5 on BETA-3 (Python and perl went ok). So far I > haven't succeeded building a fresh kernel or world. This system is an > Athlon XP with 1MB RAM and 4GB swap, compiling is done in the usual > places in /usr, which is a set of two gstriped partitions. Dmesg attached. If the crashes aren't repeatable (ie, the compiler segfaults in different places if you re-do the make), that's an almost sure sign of hardware problems like overheating. > - Optimization flags; I've tried setting CPUTYPE?=athlon-xp and CLFAGS=, > CFLAGS=-O -pipe, CFLAGS=-O2 -pipe so far. All w/o avail... If you're having problems, use the default compiler flags. Trying to add machine-specific optimizations into the mix is going to introduce spurious issues and make it harder to figure out the real problem. > - gcc 3.4.4, awk, PHP are all borken (all were built using gcc 3.4.4, I > suppose) > > I'm a bit low on spare time, so I'd like to tackle this problem > efficiently. Anything I forgot or to help me find the culprit? I suppose you could wait until 6.1 is released and do a binary install/upgrade? -- -Chuck From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 14:36:01 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BD0216A443 for ; Mon, 13 Mar 2006 14:35:58 +0000 (UTC) (envelope-from jbozza@qlinksmedia.com) Received: from mail.thinkburst.com (mail.thinkburst.com [66.210.222.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A6343D77 for ; Mon, 13 Mar 2006 14:35:51 +0000 (GMT) (envelope-from jbozza@qlinksmedia.com) Received: from mailgate.thinkburstmedia.com (gateway.thinkburstmedia.com [66.210.222.36]) by mail.thinkburst.com (Postfix) with ESMTP id 053B058; Mon, 13 Mar 2006 08:35:51 -0600 (CST) Received: from thinkburst.com (bacchus.thinkburst.com [10.1.1.25]) by mailgate.thinkburstmedia.com (Postfix) with ESMTP id E105017048; Mon, 13 Mar 2006 08:35:50 -0600 (CST) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Date: Mon, 13 Mar 2006 08:35:49 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: well-supported SATA RAID card? thread-index: AcZGgn5/kUVx6BP6Q1W9cwT34oEi0wAJRG8g From: "Jaime Bozza" To: "Nikolas Britton" Cc: freebsd-stable@freebsd.org Subject: RE: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 14:36:01 -0000 >Anyone care to comment on Areca's ARC-11xx PCI-X cards? I'm=20 >?thinking about getting an 1130 (12-port version). We just installed an ARC-1160 so I'll try and answer as many of your questions that I can. >*Is the arcmsr driver in FreeBSD stable? I've had no issues. =20 >*Any issues with arrays larger then 2TB? I think Areca does things a little differently than some of the other cards (someone correct me if I'm wrong on this.) Basically you setup a RAID set, which is just a set of disks. Then you setup volumes in that RAID set. The volumes are where you define RAID level and Ch/Id/Lun for access under an OS. =20 The cards can handle volumes > 2TB without a problem and supports both ways (Windows and LBA) of handling the volumes. We currently have a 3.6TB volume (11 400GB drives under RAID 6) available under FreeBSD 6-STABLE with no real problems other than the gotchas that are known basically. Here's the page on FreeBSD's website about that: http://www.freebsd.org/projects/bigdisk/index.html >*Rebuild times? Can't give you an exact since it's been a while since I tested the original rebuild, but we've migrated the RAID set (and volume) twice since getting the system and the migrations happened within hours. I was able to expand the RAID Set (adding drives) and expand the corresponding volume set to fill the drives all while the system was running without a hitch. >*Command Line management software? Haven't played with the CLI much yet, but it seems to handle every command you would need to send to the card. >*Is the company BSD friendly, no binary blob object in the driver? Latest driver was built right into the kernel. Updates on Areca's website are in source form. >*Competent tech support? I've only used their support when I originally got an 8 port card. They were very helpful in answering my questions to realize I needed the 16-port to do what I wanted. >*What does the ethernet port on the ARC-1130 do? Out of Band management (telnet and HTTP) directly to the card. The 1130 and above all have the Ethernet and will also do email notifications directly without OS intervention. Eliminates the need to run a daemon under FreeBSD. We've found the HTTP management daemon under FreeBSD to have some problems (Core dumps occasionally), but once we started using the Ethernet port we didn't need to worry about that. >I'm primarily interested in this card because it can >do RAID level 6 and based on the benchmarks I've seen=20 >it's a top performer. Everything has been smooth with the Areca and we are using RAID 6 without any issues. I haven't done major performance tests myself so I can't give you any hard numbers, but we've been very pleased with the system. =20 The problems I had were some initial corruption on our large volumes at the beginning do to a crash (my fault) with a softupdates volume. When trying to fsck the partition it told me I needed over 2.5GB of RAM to fsck the partition. Researching the problem came out with an answer of filesystem corruption that would be fixed easily, so I just reworked our partitions so that I had multiple smaller partitions and removed softupdates for now. I've "crashed" the system a few times since then and fsck worked just fine. Any other questions you have, feel free to ask. Jaime Bozza From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 15:02:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DCF216A400 for ; Mon, 13 Mar 2006 15:02:37 +0000 (UTC) (envelope-from viktorija@oic.lv) Received: from pechkin.ctco.lv (pechkin.ctco.lv [217.21.160.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F7743D46 for ; Mon, 13 Mar 2006 15:02:36 +0000 (GMT) (envelope-from viktorija@oic.lv) Received: by pechkin.ctco.lv (Postfix, from userid 1014) id 6EBAC73367; Mon, 13 Mar 2006 17:02:37 +0200 (EET) Received: from dream.ctco.lv (unknown [217.21.164.84]) by pechkin.ctco.lv (Postfix) with ESMTP id A254E730EA for ; Mon, 13 Mar 2006 17:02:33 +0200 (EET) From: victoria To: freebsd-stable@freebsd.org Content-Type: text/plain Date: Mon, 13 Mar 2006 17:02:31 +0200 Message-Id: <1142262151.7502.7.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.4.1 Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on pechkin.ctco.lv X-Spam-Level: X-Spam-Status: No, score=-5.3 required=8.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.4 X-Sanitizer: Advosys Mail filter Subject: /usr/local/etc/rc.d script problem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 15:02:37 -0000 Hi to everyone! Seems i got a small problem with my startup scripts. I have record in /etc/rc.conf: local_startup="/usr/local/etc/rc.d" And a few scripts in this directory. Normal configuration. On all servers it works great except one. I don't know where is a problem is, because it is identical configuration. But seems system is ignoring these scripts. It doesn't start any script from this directory. Maybe someone can give me an advice where is a problem is? Thanks! Victoria From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 15:13:51 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 074A516A532 for ; Mon, 13 Mar 2006 15:13:51 +0000 (UTC) (envelope-from miguel@anjos.strangled.net) Received: from compaq.anjos.strangled.net (87-196-139-138.net.novis.pt [87.196.139.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id C626143D49 for ; Mon, 13 Mar 2006 15:13:49 +0000 (GMT) (envelope-from miguel@anjos.strangled.net) Received: from compaq.anjos.strangled.net (localhost [127.0.0.1]) by compaq.anjos.strangled.net (8.13.4/8.13.4) with ESMTP id k2DFDl0K041579; Mon, 13 Mar 2006 15:13:49 GMT (envelope-from miguel@compaq.anjos.strangled.net) Received: (from miguel@localhost) by compaq.anjos.strangled.net (8.13.4/8.13.4/Submit) id k2DFDlmj041576; Mon, 13 Mar 2006 15:13:47 GMT (envelope-from miguel) Date: Mon, 13 Mar 2006 15:13:47 GMT From: Miguel Lopes Santos Ramos Message-Id: <200603131513.k2DFDlmj041576@compaq.anjos.strangled.net> To: freebsd-stable@freebsd.org, viktorija@oic.lv In-Reply-To: <1142262151.7502.7.camel@localhost.localdomain> Cc: Subject: Re: /usr/local/etc/rc.d script problem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 15:13:51 -0000 > From: victoria > Subject: /usr/local/etc/rc.d script problem > > Hi to everyone! > > Seems i got a small problem with my startup scripts. I have record > in /etc/rc.conf: local_startup="/usr/local/etc/rc.d" You shouldn't need that option, since the default value in /etc/defaults/rc.conf already includes that directory. Unless there is another reason... > And a few scripts in this directory. Normal configuration. On all > servers it works great except one. I don't know where is a problem is, > because it is identical configuration. But seems system is ignoring > these scripts. It doesn't start any script from this directory. > Maybe someone can give me an advice where is a problem is? > > Thanks! > > Victoria The information you're giving is perhaps not enough. Are you sure you have *_enable="YES" in rc.conf for each script you want to run? Check rc.conf, rc.conf.local and the scripts, and if you're unable to find out what's wrong, post them. It may also be useful if you tell us what version of FreeBSD are you running. Miguel From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 15:17:22 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67D0F16A426; Mon, 13 Mar 2006 15:17:22 +0000 (UTC) (envelope-from tofik@oxygen.az) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB1243D48; Mon, 13 Mar 2006 15:17:16 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from [213.227.193.75] (HELO [192.168.0.178]) by mail.alkar.net (CommuniGate Pro SMTP 4.3.9) with ESMTP id 457707642; Mon, 13 Mar 2006 17:17:14 +0200 Message-ID: <4415A9E0.3090001@oxygen.az> Date: Mon, 13 Mar 2006 17:20:32 +0000 From: Tofik Suleymanov User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Graham Bentley References: <000701c6460e$3c5ea580$0807a8c0@admin> In-Reply-To: <000701c6460e$3c5ea580$0807a8c0@admin> Content-Type: multipart/mixed; boundary="------------030305050201090200020003" Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Anyone seen this scsi error before ? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 15:17:22 -0000 This is a multi-part message in MIME format. --------------030305050201090200020003 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Graham Bentley wrote: > Recently swapped out my Sony for a HP DAT and > got this first time in dmesg > > (sa0:ahc0:0:6:0): PREVENT ALLOW MEDIUM REMOVAL. CDB: 1e 0 0 0 0 0 > (sa0:ahc0:0:6:0): CAM Status: SCSI Status Error > (sa0:ahc0:0:6:0): SCSI Status: Check Condition > (sa0:ahc0:0:6:0): UNIT ATTENTION asc:28,0 > (sa0:ahc0:0:6:0): Not ready to ready change, medium may have changed > (sa0:ahc0:0:6:0): Unretryable error > > Anyone shed any light upon it ? > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > Hi, i've got similar (but not exact the same) problem with my SCSI controller on my freebsd box freshly installed with default options 9GENERIC kernel etc etc).Server model is HP DL 140.My 'uname -a' is: web# uname -a FreeBSD web.xxxxx.com 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Mon Feb 20 09:16:50 EST 2006 root@web.gltcall.com:/usr/obj/usr/src/sys/GENERIC i386 web# dmesg is attached.Any advice on what is happening ? Mar 11 13:00:52 web kernel: mpt0: Request 0xc4bc06e8 Timed out. Mar 11 13:00:52 web kernel: mpt0: Request 0xc4bbf478 Timed out. Mar 11 13:00:52 web kernel: mpt0: Request 0xc4bc02d8 Timed out. Mar 11 13:00:52 web kernel: mpt0: Request 0xc4bc0080 Timed out. Mar 11 13:00:52 web kernel: mpt0: Attempting to Abort Req 0xc4bbfdd8 Mar 11 13:06:12 web kernel: mpt0: mpt_recover_commands: Abort timed-out.Resetting controller Mar 11 13:06:12 web kernel: mpt0: soft reset failed: ack timeout Mar 11 13:06:12 web kernel: mpt0: WARNING - Failed hard reset! Trying to initialize anyway. Mar 11 13:06:12 web kernel: mpt0: Unhandled Event Notify Frame. Event 0xc086250d. Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): WRITE(10). CDB: 2a 0 0 85 95 8f 0 0 20 0 Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): CAM Status: SCSI Status Error Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): SCSI Status: Check Condition Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): UNIT ATTENTION asc:29,2 Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): Scsi bus reset occurred Mar 11 13:06:12 web kernel: (da0:mpt0:0:0:0): Retrying Command (per Sense Data) --------------030305050201090200020003 Content-Type: text/plain; name="dmesg" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg" Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.1-PRERELEASE #0: Mon Feb 20 09:16:50 EST 2006 root@web.gltcall.com:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Xeon(TM) CPU 2.80GHz (2822.51-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf41 Stepping = 1 Features=0xbfebfbff Features2=0x641d> AMD Features=0x20100000 Hyperthreading: 2 logical CPUs real memory = 1073152000 (1023 MB) avail memory = 1041223680 (992 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 pci0: at device 0.1 (no driver attached) pcib1: irq 5 at device 2.0 on pci0 pci1: on pcib1 pcib2: irq 5 at device 4.0 on pci0 pci2: on pcib2 bge0: mem 0xdd100000-0xdd10ffff irq 5 at device 0.0 on pci2 miibus0: on bge0 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge0: Ethernet address: 00:15:60:5f:66:fe pcib3: irq 5 at device 5.0 on pci0 pci3: on pcib3 bge1: mem 0xdd200000-0xdd20ffff irq 5 at device 0.0 on pci3 miibus1: on bge1 brgphy1: on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge1: Ethernet address: 00:15:60:5f:66:ff pcib4: irq 5 at device 6.0 on pci0 pci4: on pcib4 pcib5: at device 0.0 on pci4 pci5: on pcib5 pci4: at device 0.1 (no driver attached) pcib6: at device 0.2 on pci4 pci6: on pcib6 mpt0: port 0x2000-0x20ff mem 0xdd420000-0xdd43ffff,0xdd400000-0xdd41ffff irq 5 at device 3.0 on pci6 mpt0: [GIANT-LOCKED] mpt0: MPI Version=1.2.14.0 mpt0: Unhandled Event Notify Frame. Event 0xa. pci4: at device 0.3 (no driver attached) uhci0: port 0x1400-0x141f irq 5 at device 29.0 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x1420-0x143f irq 3 at device 29.1 on pci0 uhci1: [GIANT-LOCKED] usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered ehci0: mem 0xdd001000-0xdd0013ff irq 11 at device 29.7 on pci0 ehci0: [GIANT-LOCKED] usb2: EHCI version 1.0 usb2: companion controllers, 2 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub2: 4 ports with 4 removable, self powered pcib7: at device 30.0 on pci0 pci7: on pcib7 pci7: at device 1.0 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1460-0x146f at device 31.1 on pci0 ata0: on atapci0 ata1: on atapci0 pci0: at device 31.3 (no driver attached) pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc7fff,0xcb000-0xcefff,0xdc000-0xdffff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (memory) unknown: can't assign resources (port) unknown: can't assign resources (memory) unknown: can't assign resources (port) fdc1: No FDOUT register! Timecounter "TSC" frequency 2822508633 Hz quality 800 Timecounters tick every 1.000 msec Waiting 5 seconds for SCSI devices to settle da0 at mpt0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 320.000MB/s transfers (160.000MHz, offset 127, 16bit), Tagged Queueing Enabled da0: 34732MB (71132000 512 byte sectors: 255H 63S/T 4427C) Trying to mount root from ufs:/dev/da0s1a bge0: link state changed to UP --------------030305050201090200020003-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 15:32:35 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA89516A429 for ; Mon, 13 Mar 2006 15:32:26 +0000 (UTC) (envelope-from amesbury@umn.edu) Received: from mtaout-m.tc.umn.edu (mtaout-m.tc.umn.edu [160.94.23.21]) by mx1.FreeBSD.org (Postfix) with SMTP id 3168543D62 for ; Mon, 13 Mar 2006 15:32:26 +0000 (GMT) (envelope-from amesbury@umn.edu) Received: from [160.94.247.212] (paulaner.oitsec.umn.edu [160.94.247.212]) by mtaout-m.tc.umn.edu with ESMTP; Mon, 13 Mar 2006 09:32:25 -0600 (CST) X-Umn-Remote-Mta: [N] paulaner.oitsec.umn.edu [160.94.247.212] #+LO+TS+AU+HN Message-ID: <44159088.9000505@umn.edu> Date: Mon, 13 Mar 2006 09:32:24 -0600 From: Alan Amesbury User-Agent: Thunderbird 1.5 (X11/20060119) MIME-Version: 1.0 To: Jorge Aldana References: <440DFEC5.3070501@umn.edu> In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Kernel INCLUDE_CONFIG_FILE workaround? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 15:32:35 -0000 Jorge Aldana wrote: > I'm on 6.1PreRelease and this works: > > strings -n 3 /boot/kernel/kernel | grep -v ____ | sed -n 's/^___//p' > > There was a minor tweek in this line back in 5.X transition form 4.X but > my script works fine for 6.X since then. Note that the problem isn't in the line you provided above that extracts the built-in configuration file. It's in the build procedure that's supposed to put the config file into the kernel in the first place. In other words, "options INCLUDE_CONFIG_FILE" doesn't include *all* the configuration data, because it doesn't include included configuration files. It's only including the very first level of nested configuration files, which is not an accurate representation of what's in the kernel. In my example, the configuration file for GENERIC should've been in there somewhere, as well as anything included by GENERIC (such as the stuff in DEFAULTS). Again, this used to work great, but appears to have been broken in favor of... usability? -- Alan Amesbury University of Minnesota From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 15:37:21 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F8B916A52B for ; Mon, 13 Mar 2006 15:37:21 +0000 (UTC) (envelope-from amesbury@umn.edu) Received: from mtaout-m.tc.umn.edu (mtaout-m.tc.umn.edu [160.94.23.21]) by mx1.FreeBSD.org (Postfix) with SMTP id 918CB43D70 for ; Mon, 13 Mar 2006 15:37:18 +0000 (GMT) (envelope-from amesbury@umn.edu) Received: from [160.94.247.212] (paulaner.oitsec.umn.edu [160.94.247.212]) by mtaout-m.tc.umn.edu with ESMTP for freebsd-stable@freebsd.org; Mon, 13 Mar 2006 09:37:18 -0600 (CST) X-Umn-Remote-Mta: [N] paulaner.oitsec.umn.edu [160.94.247.212] #+LO+TS+AU+HN Message-ID: <441591AD.3090703@umn.edu> Date: Mon, 13 Mar 2006 09:37:17 -0600 From: Alan Amesbury User-Agent: Thunderbird 1.5 (X11/20060119) MIME-Version: 1.0 To: freebsd-stable@freebsd.org X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: UID/GID ranges (was Re: Required audit group is missing...) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 15:37:21 -0000 Looks like the Handbook needs to be updated to reflect this, as audit isn't currently listed. http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-uid-and-gids.html -- Alan Amesbury University of Minnesota From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 16:01:05 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B0016A42C for ; Mon, 13 Mar 2006 16:01:05 +0000 (UTC) (envelope-from lukas@razik.de) Received: from fmmailgate06.web.de (fmmailgate06.web.de [217.72.192.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id F22A543D49 for ; Mon, 13 Mar 2006 16:00:33 +0000 (GMT) (envelope-from lukas@razik.de) Received: by fmmailgate06.web.de (8.12.10/8.12.10/webde Linux 0.7) with SMTP id k2DFx5dF012591 for ; Mon, 13 Mar 2006 17:00:31 +0100 Received: from [84.63.46.48] by freemailng5303.web.de with HTTP; Mon, 13 Mar 2006 17:00:30 +0100 Date: Mon, 13 Mar 2006 17:00:30 +0100 Message-Id: <452965086@web.de> MIME-Version: 1.0 From: Lukas Razik To: freebsd-stable@freebsd.org Precedence: fm-user Organization: http://freemail.web.de/ X-Sender: lukasrazik@web.de Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Subject: Problem with NDIS - FreeBSD 6.1-PRERELEASE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 16:01:05 -0000 Hello! I've a problem with NDIS and a 'PRISM 802.11g Wireless Adapter (3890)' because if I do an 'ifconfig ndis0 inet 192.168...' I must wait about !!!5 MINUTES!!! for the finish of ifconfig... -------------------------------- My System: Medion MD41300 Notebook with P4 3.06GHz HT CPU Windows driver for the WLAN chip: http://www1.medion.de/downloads/download.pl?id=1870&type=treiber&filename=wlanwid2010win2kxp.exe&lang=de pciconf -lv ndis0@pci3:6:0: class=0x028000 card=0x001417cf chip=0x38901260 rev=0x01 hdr=0x00 vendor = 'Intersil Americas Inc (Was: Harris Semiconductor)' device = 'ISL3890 PRISM GT 802.11g 54Mbps Wireless Controller' class = network FreeBSD 6.1-PRERELEASE #2: Sun Mar 12 23:36:01 CET 2006 -------------------------------- That's what I've done: - I've built a kernel with SMP support, NDISAPI etc. (for details see the following config): http://net.razik.de/temp/RAZIK2006-03-12-6 - I've built a kernel module with 'ndisgen PRISMA00.inf PRISMA00.sys' - its name is: 'PRISMA00_sys.ko' - In my rc.conf I have the following line: ifconfig_ndis0="inet 192.168.0.7 netmask 255.255.255.0 ssid razik.de wepmode mixed wepkey 1:0xABCDEF... deftxkey 1" (It doesn't matter if I use WEP or not...) It's not possible to load the PRISMA00_sys.ko module at startup (because of an error), so my current loader.conf is: kernel="kernel.6.0-STABLE" snd_ich_load="YES" linux_load="YES" nvidia_load="YES" wlan_wep_load="YES" -------------------------------- After system startup I load the module manually by typing 'kldload PRISMA00_sys' and I get: ndis0: mem 0xd2004000-0xd2005fff irq 18 at device 6.0 on pci3 can't re-use a leaf (BusType)! ndis0: NDIS API version: 5.1 And about 40 seconds later i get ndis0: Ethernet address: 00:60:b3:9d:46:dc After loading the module I can see (by typing 'ps ax') that ifconfig is automatically started (? by /etc/pccard_ether ?) and tries to configure the ndis0 device like it is written in the rc.conf. That takes about 5 minutes!!! -------------------------------- If I delete the config line for the ndis0 device in my rc.conf and kldload the PRISMA00_sys module and ifconfig ndis0 manually it also takes about 5 minutes... -------------------------------- And it doesn't matter if I set 'machdep.hyperthreading_allowed=1' or not. After the 5 minutes (if the system doesn't crash) I get this from 'ifconfig ndis0': ndis0: flags=8843 mtu 1500 inet6 fe80::260:b3ff:fe9d:46dc%ndis0 prefixlen 64 scopeid 0x4 inet 192.168.0.7 netmask 0xffffff00 broadcast 192.168.0.255 ether 00:60:b3:9d:46:dc media: IEEE 802.11 Wireless Ethernet autoselect status: associated ssid razik.de channel 9 bssid 00:13:10:27:e4:c8 authmode OPEN privacy ON deftxkey 1 wepkey 1:104-bit txpowmax 100 protmode CTS And normally I can use the WLAN chip without problems then... Does anyone have an idea why ifconfig needs so long to setup the device? Regards, Lukas From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 17:03:59 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0757E16A42F for ; Mon, 13 Mar 2006 17:03:59 +0000 (UTC) (envelope-from nate@root.org) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E09943D5A for ; Mon, 13 Mar 2006 17:03:58 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout7-ext.prodigy.net (pimout7-int.prodigy.net [207.115.4.147]) by ylpvm43.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id k2DH40Bd029812 for ; Mon, 13 Mar 2006 12:04:01 -0500 X-ORBL: [71.139.114.10] Received: from [10.0.5.50] (ppp-71-139-114-10.dsl.snfc21.pacbell.net [71.139.114.10]) by pimout7-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id k2DH3uUH061670; Mon, 13 Mar 2006 12:03:56 -0500 Message-ID: <4415A5E7.8000801@root.org> Date: Mon, 13 Mar 2006 09:03:35 -0800 From: Nate Lawson User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Kris Kennaway References: <200601290551.k0T5pwEC028440@repoman.freebsd.org> <20060129060654.GA47495@xor.obsecurity.org> <20060129061300.GA47596@xor.obsecurity.org> <43DC5E0B.40003@root.org> <20060129063007.GA47800@xor.obsecurity.org> <20060313083954.GA46731@xor.obsecurity.org> In-Reply-To: <20060313083954.GA46731@xor.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: stable@FreeBSD.org Subject: Re: Problems with hw.acpi.cpu.cx_lowest=C2 (Re: cvs commit: src/etc/defaults rc.conf) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 17:03:59 -0000 Kris Kennaway wrote: > On Sun, Jan 29, 2006 at 01:30:07AM -0500, Kris Kennaway wrote: >> On Sat, Jan 28, 2006 at 10:17:47PM -0800, Nate Lawson wrote: >>> Kris Kennaway wrote: >>>> On Sun, Jan 29, 2006 at 01:06:54AM -0500, Kris Kennaway wrote: >>>> >>>>> On Sun, Jan 29, 2006 at 05:51:58AM +0000, Nate Lawson wrote: >>>>> >>>>>> njl 2006-01-29 05:51:58 UTC >>>>>> >>>>>> FreeBSD src repository >>>>>> >>>>>> Modified files: >>>>>> etc/defaults rc.conf >>>>>> Log: >>>>>> Enable the lowest Cx state by default. This will save power and we have >>>>>> had enough testing of acpi_cpu to know this is stable now. >>>>> On my desktop system (running RELENG_6 though), setting >>>>> hw.acpi.cpu.cx_lowest=C0 causes atrocious performance. Is it broken >>>>> in 6.x? >>>> C2, sorry. >>> Ah, C0 should be disallowed already I thought (try it). >>> >>> As for C2, I MFCd a patch to acpi_cpu.c in November that should prevent >>> this (1.57.2.1). Do you get a printf on console? >> This might be it: turns out I never rebooted to the newer kernel I >> built earlier this month, and I am still running a kernel from Nov 6. >> I'll get back to you. > > I finally managed to test this in RELENG_6. The system performance is > not obviously bad, but sound playback is distorted (e.g. the 'bell' in > KDE is much higher pitched than it should be, and on the console it is > low pitched and lasting about 3 seconds). Nothing is logged on > console. > > There may be other problems that I didn't notice right away, but the > sound problems were enough to make me turn it off again. Are you sure that's the cause? (Does setting cx_lowest to C1 fix it?) Can you send the output of sysctl hw.acpi so we can see how often each cx type is being run? -- Nate From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 17:16:17 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0632116A400 for ; Mon, 13 Mar 2006 17:16:16 +0000 (UTC) (envelope-from miguel@anjos.strangled.net) Received: from compaq.anjos.strangled.net (87-196-139-138.net.novis.pt [87.196.139.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D51A43D48 for ; Mon, 13 Mar 2006 17:16:03 +0000 (GMT) (envelope-from miguel@anjos.strangled.net) Received: from compaq.anjos.strangled.net (localhost [127.0.0.1]) by compaq.anjos.strangled.net (8.13.4/8.13.4) with ESMTP id k2DHG1kb044624; Mon, 13 Mar 2006 17:16:03 GMT (envelope-from miguel@compaq.anjos.strangled.net) Received: (from miguel@localhost) by compaq.anjos.strangled.net (8.13.4/8.13.4/Submit) id k2DHFxOe044623; Mon, 13 Mar 2006 17:15:59 GMT (envelope-from miguel) Date: Mon, 13 Mar 2006 17:15:59 GMT From: Miguel Lopes Santos Ramos Message-Id: <200603131715.k2DHFxOe044623@compaq.anjos.strangled.net> To: kris@obsecurity.org In-Reply-To: <20060310220452.GA33878@xor.obsecurity.org> Cc: kuriyama@imgsrc.co.jp, freebsd-stable@freebsd.org Subject: Re: rpc.lockd brokenness (2) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 17:16:17 -0000 > I did some further testing and it turns out that rpc.lockd is broken > in some cases when operating over NFSv2 (this is the default for nfs > root mounts). > > Tracing the lock traffic I see the client making a request, the server > replying but the client never acting on the reply (or never receiving > it), so it just retransmits every 20 seconds forever. That is what I saw Friday, using the debug log mainly. I was expecting to find some error message, but I only saw the repetition of something that seemed to be ok. I tried vainly to look into rpc.lockd but it's not at all simple. But my greatest frustration was than when I started rpc.lockd with -d on the client, the problem did never occur. It didn't occur to me that the difference between this and other clients was that the diskless mount is NFSv2. I can't be 100% sure that the problem I have is the same you observed, but locking works on this client on other mounts (home directories through amd, NFSv3). It really seems an NFSv2 specific issue. > I'm not yet sure whether this is a regression in 6.x or another case > that was broken forever. I didn't have problems in 5. I just compiled a 6.0-RELEASE kernel, and it is also broken. > Unfortunately there's currently no option to use NFSv3 for nfs root > mounts to work around this (unless you're using bootp), but it should > just be a trivial matter of adding "| NFSMNT_NFSV3" to the flags in > nfsclient/nfs_diskless.c:nfs_setup_diskless(): > > nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT); It was only today that I could try your sugestion. But... I get a kernel panic, it can't find init... Looking is nfsclient/bootp_subr.c, it looks like there's a little more to do when mounting via NFSv3. Well, this doesn't work, but thanks to your sugestion, by looking in nfs_diskless.c, I found a loader option to disable lockd, boot.nfsroot.options=lockd. This option is new (it doesn't exist on 6.0). Now I can lock any file not only on /var, but also on /etc, etc. (remember this option in fstab wasn't honored for the root mount) Everything works. Locking in shared home directories also work, because they're NFSv3 mounts (I tried it already...). So, I finally have it working, and all I needed was having this in loader.conf: boot.nfsroot.options=lockd. I'm quite tired of this issue, so, for all I'm concerned, I'm done. Is the NFSv2/rpc.lockd issue reported? Is there any information more that I can provide? I'm available for further information and testing if anyone can't reproduce the bug. I'm glad you could, no daemons on my machine... I failed finding a way to reproduce it on other machines using mount_nfs -2, so aditional assistance may be needed to the developers. If the problem is reported and no further information is needed from me, then I can only thank you and congratulate you for your great effort in understanding what was wrong and pointing a way to work around it. Thank you, Kris, Miguel From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 17:25:25 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6120816A46F for ; Mon, 13 Mar 2006 17:25:14 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA45F43D55 for ; Mon, 13 Mar 2006 17:24:58 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 50DB31A4DA8; Mon, 13 Mar 2006 09:24:58 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 71B0751406; Mon, 13 Mar 2006 12:24:57 -0500 (EST) Date: Mon, 13 Mar 2006 12:24:57 -0500 From: Kris Kennaway To: Nate Lawson Message-ID: <20060313172457.GA96768@xor.obsecurity.org> References: <200601290551.k0T5pwEC028440@repoman.freebsd.org> <20060129060654.GA47495@xor.obsecurity.org> <20060129061300.GA47596@xor.obsecurity.org> <43DC5E0B.40003@root.org> <20060129063007.GA47800@xor.obsecurity.org> <20060313083954.GA46731@xor.obsecurity.org> <4415A5E7.8000801@root.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <4415A5E7.8000801@root.org> User-Agent: Mutt/1.4.2.1i Cc: stable@FreeBSD.org, Kris Kennaway Subject: Re: Problems with hw.acpi.cpu.cx_lowest=C2 (Re: cvs commit: src/etc/defaults rc.conf) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 17:25:25 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 13, 2006 at 09:03:35AM -0800, Nate Lawson wrote: > >I finally managed to test this in RELENG_6. The system performance is > >not obviously bad, but sound playback is distorted (e.g. the 'bell' in > >KDE is much higher pitched than it should be, and on the console it is > >low pitched and lasting about 3 seconds). Nothing is logged on > >console. > > > >There may be other problems that I didn't notice right away, but the > >sound problems were enough to make me turn it off again. >=20 > Are you sure that's the cause? (Does setting cx_lowest to C1 fix it?)=20 Absolutely sure: the system worked at C1 after boot, then I set it to C2, observed that beeping was broken, then set it back to C1 and observed that it worked again. > Can you send the output of sysctl hw.acpi so we can see how often each=20 > cx type is being run? # sysctl hw.acpi hw.acpi.supported_sleep_state: S1 S3 S4 S5 hw.acpi.power_button_state: S5 hw.acpi.sleep_button_state: S1 hw.acpi.lid_switch_state: NONE hw.acpi.standby_state: S1 hw.acpi.suspend_state: S3 hw.acpi.sleep_delay: 1 hw.acpi.s4bios: 0 hw.acpi.verbose: 0 hw.acpi.reset_video: 1 hw.acpi.cpu.cx_supported: C1/0 C2/1 hw.acpi.cpu.cx_lowest: C1 hw.acpi.cpu.cx_usage: 100.00% 0.00% hw.acpi.thermal.min_runtime: 0 hw.acpi.thermal.polling_rate: 10 hw.acpi.thermal.tz0.temperature: 38.0C hw.acpi.thermal.tz0.active: -1 hw.acpi.thermal.tz0.passive_cooling: 0 hw.acpi.thermal.tz0.thermal_flags: 0 hw.acpi.thermal.tz0._PSV: -1 hw.acpi.thermal.tz0._HOT: -1 hw.acpi.thermal.tz0._CRT: 75.0C hw.acpi.thermal.tz0._ACx: 50.0C -1 -1 -1 -1 -1 -1 -1 -1 -1 Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFaroWry0BWjoQKURAp8JAJsGrGG2UgUza4TfIsXE7Q3oskDqJwCgzPf0 yo6CVa3UeIUFhZCZ9XIG3+0= =+L7Q -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 17:34:21 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2E0516A420 for ; Mon, 13 Mar 2006 17:34:21 +0000 (UTC) (envelope-from jas@math.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8EDC43D48 for ; Mon, 13 Mar 2006 17:34:20 +0000 (GMT) (envelope-from jas@math.jussieu.fr) Received: from riemann.math.jussieu.fr (riemann.math.jussieu.fr [134.157.13.3]) by shiva.jussieu.fr (8.13.5/jtpda-5.4) with ESMTP id k2DHYIem069166 for ; Mon, 13 Mar 2006 18:34:19 +0100 (CET) X-Ids: 168 Received: from grobner2.math.jussieu.fr (grobner2.math.jussieu.fr [134.157.13.119]) by riemann.math.jussieu.fr (8.12.10/jtpda-5.4) with ESMTP id k2DHYGgB013450 for ; Mon, 13 Mar 2006 18:34:17 +0100 (CET) Received: from grobner2.math.jussieu.fr (localhost.localdomain [127.0.0.1]) by grobner2.math.jussieu.fr (8.13.1/jtpda-5.4) with ESMTP id k2DHYGm9000756 for ; Mon, 13 Mar 2006 18:34:16 +0100 Received: (from jas@localhost) by grobner2.math.jussieu.fr (8.13.1/8.13.1/Submit) id k2DHYGZO000755 for freebsd-stable@freebsd.org; Mon, 13 Mar 2006 18:34:16 +0100 Date: Mon, 13 Mar 2006 18:34:16 +0100 From: Albert Shih To: freebsd-stable@freebsd.org Message-ID: <20060313173416.GB32180@math.jussieu.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.6i X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.56 on 134.157.13.3 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.2 (shiva.jussieu.fr [134.157.0.168]); Mon, 13 Mar 2006 18:34:19 +0100 (CET) X-Antivirus: scanned by sophie at shiva.jussieu.fr X-Miltered: at shiva.jussieu.fr with ID 4415AD1A.001 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Subject: No net X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shih@math.jussieu.fr List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 17:34:21 -0000 Hi all Some bug (very low priority if it's bug) report ? I've strange thing on my FB-box running stable. When I boot the PC if I type Return many time (When BootLoader ask my if I want boot disk1 or disk2) and when I have the screen to chose the boot method...I don't have the network. I cannot ping anything. Event I make ifconfig down/up nothing work whit the network card, I need to reboot. Well you can tell me it's useless to type Return many time (one time is enough...)....ok..ok... But in case... Regards. -- Albert SHIH Universite de Paris 7 (Denis DIDEROT) U.F.R. de Mathematiques. 7 ičme étage, plateau D, bureau 10 Heure local/Local time: Mon Mar 13 18:29:52 CET 2006 From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 17:39:41 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41A2E16A422 for ; Mon, 13 Mar 2006 17:39:36 +0000 (UTC) (envelope-from nakal@nurfuerspam.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 4D92F43D80 for ; Mon, 13 Mar 2006 17:39:30 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: (qmail invoked by alias); 13 Mar 2006 17:39:29 -0000 Received: from p5090E68C.dip.t-dialin.net (EHLO klotz.local) [80.144.230.140] by mail.gmx.net (mp043) with SMTP; 13 Mar 2006 18:39:29 +0100 X-Authenticated: #989277 Received: from [192.168.0.1] (klotz.local [192.168.0.1]) by klotz.local (8.13.4/8.13.4) with ESMTP id k2DHdL4Z001678; Mon, 13 Mar 2006 18:39:24 +0100 (CET) (envelope-from nakal@nurfuerspam.de) Message-ID: <4415AE49.1010104@nurfuerspam.de> Date: Mon, 13 Mar 2006 18:39:21 +0100 From: Martin User-Agent: Thunderbird 1.5 (X11/20060205) MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <200603120829.18291.davidxu@freebsd.org> <4413F891.2070006@nurfuerspam.de> In-Reply-To: <4413F891.2070006@nurfuerspam.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: davidxu@freebsd.org Subject: Re: threads/80435: panic on high loads X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 17:39:41 -0000 Martin wrote: > David Xu wrote: >> This bug unlikely should be reported on thread@, your code is a fork >> bomb, I think it is a warning why recent days the kernel crashed by >> such attack, can you reproduce it on 6.0 ? 6.0R seems to work fine with this fork bomb. Martin From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 19:48:07 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA9EB16A401 for ; Mon, 13 Mar 2006 19:48:07 +0000 (UTC) (envelope-from jd@ugcs.caltech.edu) Received: from hurl.ugcs.caltech.edu (hurl.ugcs.caltech.edu [131.215.176.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54D5243D4C for ; Mon, 13 Mar 2006 19:48:07 +0000 (GMT) (envelope-from jd@ugcs.caltech.edu) Received: by hurl.ugcs.caltech.edu (Postfix, from userid 3640) id C80BD1C3B97; Mon, 13 Mar 2006 11:48:06 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hurl.ugcs.caltech.edu (Postfix) with ESMTP id BD53D1C3B8E; Mon, 13 Mar 2006 11:48:06 -0800 (PST) Date: Mon, 13 Mar 2006 11:48:06 -0800 (PST) From: Jon Dama To: Peter Jeremy In-Reply-To: <20060310193248.GC688@turion.vk2pj.dyndns.org> Message-ID: References: <20060302181625.I3905@atlantis.atlantis.dp.ua> <76FAD2DB-CD18-42D4-95C8-F016CFB17B00@segpub.com.au> <20060303110936.R86586@atlantis.atlantis.dp.ua> <20060303185157.GB692@turion.vk2pj.dyndns.org> <20060304001224.G356@atlantis.atlantis.dp.ua> <20060304065138.GD692@turion.vk2pj.dyndns.org> <20060310121758.S80837@atlantis.atlantis.dp.ua> <20060310123942.GI37572@deviant.kiev.zoral.com.ua> <20060310153737.X40396@atlantis.atlantis.dp.ua> <20060310193248.GC688@turion.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Dmitry Pryanishnikov , Kostik Belousov , freebsd-stable@freebsd.org, Michael Proto Subject: Re: RELENG_4 on flash disk and swap X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 19:48:07 -0000 If you feel this situation is undesirable, the first thing to do is to put together the patches necessary to allow the kernel to actually track how much ram+swap might be needed to cover the address-space allocations that have been granted. This isn't trivial: just start thinking about shared allocations, forking, copy-on-writem, etc. In order to make this change "costless" I suspect you'll have to hide it behind a kernel config option. Maybe you'll bill it as mere instrumentation. Then worry about convincing people that overcommit shouldn't be the only option. But once you have your kernel config option to enable proper accounting it should be a short-hop to making a sysctl that can disable overcommit and enforce limits based on the previously mentioned "accounting". Most importantly though you won't need to convince anyone that the default ought to be changed. SIGDANGER has essentially been rejected universally by everyone but its creators (IBM), and as it is unusual, don't expect anyone to write a program that uses it. Ditto for any solution that involves madvise or expecting programs to prefault their pages. Other suggestion: build a time machine to go back to 1990 and get early (pages guaranteed) and late (overcommitted) allocation written into POSIX. Somewhat accepted is to ensure allocations must be backed but to also support a M_NORESERVE flag in mmap to permit overcomitted allocations. Anyways, no matter what you must first give the kernel the necessary accounting code. For the record: I believe in overcommit, but I recognize that it violates the semantics people were (foolishly) taught in school. Also, when the system is page-starved it kills the largest consumer of pages that has the same UID as the process that pushed the system over the limit---not merely the largest consumer of pages. So you see, running critical services that carefully pre-allocate and fault their memory is possible within the overcommit framework. Jon From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 19:53:43 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D06A216A422 for ; Mon, 13 Mar 2006 19:53:43 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 522B843D6D for ; Mon, 13 Mar 2006 19:53:23 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 5706 invoked by uid 0); 13 Mar 2006 21:53:20 +0200 Received: (qmail 15416 invoked by uid 1010); 11 Mar 2006 04:58:13 +0200 Received: from mx2.freebsd.org (216.136.204.119) by mail.bitdefender.com with SMTP; 11 Mar 2006 04:58:03 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DA20D6356B; Sat, 11 Mar 2006 02:55:14 +0000 (GMT) (envelope-from owner-freebsd-questions@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 5A3DE16A42A; Sat, 11 Mar 2006 02:55:14 +0000 (GMT) (envelope-from owner-freebsd-questions@freebsd.org) X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F57316A56F; Sat, 11 Mar 2006 01:57:55 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 510F744E24; Fri, 10 Mar 2006 13:50:33 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.117]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060310135032.ZOPY8442.mta10.adelphia.net@barbish>; Fri, 10 Mar 2006 08:50:32 -0500 From: "fbsd_user" To: "Damian Gerow" , "Riv Octovahriz" Date: Fri, 10 Mar 2006 08:50:31 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal In-Reply-To: <20060228085822.GA88352@afflictions.org> X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-questions@freebsd.org Errors-To: owner-freebsd-questions@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAAAAAAAAAAAAAAAAQAAAI X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: RE: Installing FreeBSD 6.0 on IBM BladeCenter HS20 X-BeenThere: freebsd-stable@freebsd.org Reply-To: fbsd_user@a1poweruser.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 19:53:43 -0000 I see you both have Bladecenters. Have you had any luck with getting FreeBSD to install on it yet. What is the status of your efforts. Been offered contract to do this for client, but need to know if it can be done before I accept the job. _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 20:22:53 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8EA016A47D for ; Mon, 13 Mar 2006 20:22:53 +0000 (UTC) (envelope-from chris@haakonia.hitnet.rwth-aachen.de) Received: from ms-dienst.rz.rwth-aachen.de (ms-2.rz.RWTH-Aachen.DE [134.130.3.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AF7843D46 for ; Mon, 13 Mar 2006 20:22:52 +0000 (GMT) (envelope-from chris@haakonia.hitnet.rwth-aachen.de) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0IW3000MO1Y2G6@ms-dienst.rz.rwth-aachen.de> for freebsd-stable@freebsd.org; Mon, 13 Mar 2006 21:22:50 +0100 (MET) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Mon, 13 Mar 2006 21:22:49 +0100 (MET) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.1/8.13.1/1) with ESMTP id k2DKMnA0012800; Mon, 13 Mar 2006 21:22:49 +0100 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1FItZ2-0002XG-Vn; Mon, 13 Mar 2006 21:22:48 +0100 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 9425A3F42F; Mon, 13 Mar 2006 21:22:48 +0100 (CET) Date: Mon, 13 Mar 2006 21:22:48 +0100 From: Christian Brueffer In-reply-to: <441591AD.3090703@umn.edu> To: Alan Amesbury Message-id: <20060313202248.GA1700@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary=rwEMma7ioTxnRzrJ; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.1-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <441591AD.3090703@umn.edu> Cc: freebsd-stable@freebsd.org Subject: Re: UID/GID ranges (was Re: Required audit group is missing...) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 20:22:53 -0000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 13, 2006 at 09:37:17AM -0600, Alan Amesbury wrote: > Looks like the Handbook needs to be updated to reflect this, as audit=20 > isn't currently listed. >=20 > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-ui= d-and-gids.html >=20 Correct, I've just added it. Thanks! - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFdSYbHYXjKDtmC0RAkIoAKCYczpz9dnPSKhQYLd3lwAeSpLPLQCeK2Wj cmxDj1A429ZHiPQG+PBvxUs= =/nqq -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 20:33:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E48BE16A488 for ; Mon, 13 Mar 2006 20:33:00 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E28943D45 for ; Mon, 13 Mar 2006 20:33:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 7E3B31A4DBD; Mon, 13 Mar 2006 12:33:00 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C4D6951954; Mon, 13 Mar 2006 15:32:59 -0500 (EST) Date: Mon, 13 Mar 2006 15:32:59 -0500 From: Kris Kennaway To: Miguel Lopes Santos Ramos Message-ID: <20060313203259.GA99538@xor.obsecurity.org> References: <20060310220452.GA33878@xor.obsecurity.org> <200603131715.k2DHFxOe044623@compaq.anjos.strangled.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <200603131715.k2DHFxOe044623@compaq.anjos.strangled.net> User-Agent: Mutt/1.4.2.1i Cc: kuriyama@imgsrc.co.jp, freebsd-stable@freebsd.org, kris@obsecurity.org Subject: Re: rpc.lockd brokenness (2) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 20:33:01 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 13, 2006 at 05:15:59PM +0000, Miguel Lopes Santos Ramos wrote: > > I'm not yet sure whether this is a regression in 6.x or another case > > that was broken forever. >=20 > I didn't have problems in 5. I just compiled a 6.0-RELEASE kernel, and it > is also broken. I have verified (using loopback mounts and a fcntl() regression test) that the same locking bug exists in 5.4's rpc.lockd with nfsv2, so if you're not seeing it there then perhaps you're just lucky :( > > Unfortunately there's currently no option to use NFSv3 for nfs root > > mounts to work around this (unless you're using bootp), but it should > > just be a trivial matter of adding "| NFSMNT_NFSV3" to the flags in > > nfsclient/nfs_diskless.c:nfs_setup_diskless(): > > > > nd->root_args.flags =3D (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT= ); >=20 > It was only today that I could try your sugestion. But... I get a kernel = panic, > it can't find init... > Looking is nfsclient/bootp_subr.c, it looks like there's a little more to= do > when mounting via NFSv3. Yes, I see the same thing. Sorry. It would be nice to have a way to do nfsv3 root mounts, so perhaps I'll work on this some more. > Well, this doesn't work, but thanks to your sugestion, by looking in > nfs_diskless.c, I found a loader option to disable lockd, > boot.nfsroot.options=3Dlockd. This option is new (it doesn't exist on 6.0= ). > Now I can lock any file not only on /var, but also on /etc, etc. (remember > this option in fstab wasn't honored for the root mount) > Everything works. Locking in shared home directories also work, because t= hey're > NFSv3 mounts (I tried it already...). >=20 > So, I finally have it working, and all I needed was having this in loader= .conf: > boot.nfsroot.options=3Dlockd. >=20 > I'm quite tired of this issue, so, for all I'm concerned, I'm done. Yes, this is probably the best possible workaround. Unfortunately, rpc.lockd has no maintainer, so the many bugs and deficiencies in it will probably stay unresolved for the forseeable future. > Is the NFSv2/rpc.lockd issue reported? Not yet, I'll file a PR when I get the time. > Is there any information more that I can provide? I don't think so, thanks for your help. Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFdb7Wry0BWjoQKURAhmYAJ4k8bvDcl7ShuPGvQMW+QHCuKJevQCghEus b3ZRzaXYF5T/Kz7E26TUwAQ= =RHFN -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 20:49:13 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD5F816A41F for ; Mon, 13 Mar 2006 20:49:13 +0000 (UTC) (envelope-from nate@root.org) Received: from pimout6-ext.prodigy.net (pimout6-ext.prodigy.net [207.115.63.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F0C843D79 for ; Mon, 13 Mar 2006 20:49:08 +0000 (GMT) (envelope-from nate@root.org) X-ORBL: [67.119.74.222] Received: from [10.0.0.53] (adsl-67-119-74-222.dsl.sntc01.pacbell.net [67.119.74.222]) by pimout6-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id k2DKl7lk123804; Mon, 13 Mar 2006 15:47:08 -0500 Message-ID: <4415DA36.2000904@root.org> Date: Mon, 13 Mar 2006 12:46:46 -0800 From: Nate Lawson User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Kris Kennaway References: <200601290551.k0T5pwEC028440@repoman.freebsd.org> <20060129060654.GA47495@xor.obsecurity.org> <20060129061300.GA47596@xor.obsecurity.org> <43DC5E0B.40003@root.org> <20060129063007.GA47800@xor.obsecurity.org> <20060313083954.GA46731@xor.obsecurity.org> <4415A5E7.8000801@root.org> <20060313172457.GA96768@xor.obsecurity.org> In-Reply-To: <20060313172457.GA96768@xor.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: stable@FreeBSD.org Subject: Re: Problems with hw.acpi.cpu.cx_lowest=C2 (Re: cvs commit: src/etc/defaults rc.conf) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 20:49:13 -0000 Kris Kennaway wrote: > On Mon, Mar 13, 2006 at 09:03:35AM -0800, Nate Lawson wrote: > >>> I finally managed to test this in RELENG_6. The system performance is >>> not obviously bad, but sound playback is distorted (e.g. the 'bell' in >>> KDE is much higher pitched than it should be, and on the console it is >>> low pitched and lasting about 3 seconds). Nothing is logged on >>> console. >>> >>> There may be other problems that I didn't notice right away, but the >>> sound problems were enough to make me turn it off again. >> Are you sure that's the cause? (Does setting cx_lowest to C1 fix it?) > > Absolutely sure: the system worked at C1 after boot, then I set it to > C2, observed that beeping was broken, then set it back to C1 and > observed that it worked again. Ok, good to know. This looks like a different failure mode where occasionally the system is waking up from the idle too often, but not enough to affect system performance. >> Can you send the output of sysctl hw.acpi so we can see how often each >> cx type is being run? > > hw.acpi.cpu.cx_supported: C1/0 C2/1 > hw.acpi.cpu.cx_lowest: C1 > hw.acpi.cpu.cx_usage: 100.00% 0.00% I'd like to see it after you've set it to C2 for a few minutes. I'm looking to see what happens with cx_usage. -- Nate From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 20:57:56 2006 Return-Path: X-Original-To: stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2FE316A401 for ; Mon, 13 Mar 2006 20:57:56 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6FAA43D66 for ; Mon, 13 Mar 2006 20:57:44 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 995F31A4DC1; Mon, 13 Mar 2006 12:57:44 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AA4DD5186D; Mon, 13 Mar 2006 15:57:43 -0500 (EST) Date: Mon, 13 Mar 2006 15:57:43 -0500 From: Kris Kennaway To: Nate Lawson Message-ID: <20060313205743.GA200@xor.obsecurity.org> References: <200601290551.k0T5pwEC028440@repoman.freebsd.org> <20060129060654.GA47495@xor.obsecurity.org> <20060129061300.GA47596@xor.obsecurity.org> <43DC5E0B.40003@root.org> <20060129063007.GA47800@xor.obsecurity.org> <20060313083954.GA46731@xor.obsecurity.org> <4415A5E7.8000801@root.org> <20060313172457.GA96768@xor.obsecurity.org> <4415DA36.2000904@root.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <4415DA36.2000904@root.org> User-Agent: Mutt/1.4.2.1i Cc: stable@FreeBSD.org, Kris Kennaway Subject: Re: Problems with hw.acpi.cpu.cx_lowest=C2 (Re: cvs commit: src/etc/defaults rc.conf) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 20:57:57 -0000 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 13, 2006 at 12:46:46PM -0800, Nate Lawson wrote: > Kris Kennaway wrote: > >On Mon, Mar 13, 2006 at 09:03:35AM -0800, Nate Lawson wrote: > > > >>>I finally managed to test this in RELENG_6. The system performance is > >>>not obviously bad, but sound playback is distorted (e.g. the 'bell' in > >>>KDE is much higher pitched than it should be, and on the console it is > >>>low pitched and lasting about 3 seconds). Nothing is logged on > >>>console. > >>> > >>>There may be other problems that I didn't notice right away, but the > >>>sound problems were enough to make me turn it off again. > >>Are you sure that's the cause? (Does setting cx_lowest to C1 fix it?)= =20 > > > >Absolutely sure: the system worked at C1 after boot, then I set it to > >C2, observed that beeping was broken, then set it back to C1 and > >observed that it worked again. >=20 > Ok, good to know. This looks like a different failure mode where=20 > occasionally the system is waking up from the idle too often, but not=20 > enough to affect system performance. Actually when I retried C2, performance is bad again. e.g. opening a mailbox in mutt pauses for about 30 seconds before it starts to read the mailbox. top shows CPU activity ping-ponging between: CPU states: 0.0% user, 0.0% nice, 50.0% system, 0.0% interrupt, 50.0% id= le and CPU states: 0.0% user, 0.0% nice, 0.0% system, 0.0% interrupt, 100% id= le > >>Can you send the output of sysctl hw.acpi so we can see how often each= =20 > >>cx type is being run? > > > >hw.acpi.cpu.cx_supported: C1/0 C2/1 > >hw.acpi.cpu.cx_lowest: C1 > >hw.acpi.cpu.cx_usage: 100.00% 0.00% >=20 > I'd like to see it after you've set it to C2 for a few minutes. I'm=20 > looking to see what happens with cx_usage. It stays at hw.acpi.cpu.cx_usage: 0.00% 100.00% always. Kris --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFdzHWry0BWjoQKURAq19AJ4qCRnRMmuxQCPQLDLZYHFeUeUSGACgiHFr ZE+nYF29yVg1+Hm6WZPST5Y= =r22T -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 21:48:48 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 505FC16A426 for ; Mon, 13 Mar 2006 21:48:48 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id F421543D70 for ; Mon, 13 Mar 2006 21:48:47 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh1.centtech.com (8.13.1/8.13.1) with ESMTP id k2DLmkvp053582 for ; Mon, 13 Mar 2006 15:48:47 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <4415E8BB.1080602@centtech.com> Date: Mon, 13 Mar 2006 15:48:43 -0600 From: Eric Anderson User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1328/Mon Mar 13 11:13:39 2006 on mh1.centtech.com X-Virus-Status: Clean Subject: panic: ffs_valloc: dup alloc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 21:48:48 -0000 I get the above panic after nfs clients attach to this nfs server and being read/write ops on it after an unclean shutdown. I've fsck'ed the fs, and it marks it as clean, but I get this every time. It's an NFS share of a GEOM stripe (about 2TB). mode = 0100600, inum = 58456203, fs = /mnt panic: ffs_valloc: dup alloc I do have dumps from two crashes so far. This is FreeBSD-6.1-PRERELEASE from Friday-ish. What should I do with these vmcores? (please cc/to me since I am not on -stable list) Thanks! Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 22:30:21 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D87916A400 for ; Mon, 13 Mar 2006 22:30:21 +0000 (UTC) (envelope-from howells@kde.org) Received: from mail.devrandom.org.uk (host-84-9-223-82.bulldogdsl.com [84.9.223.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7535943D77 for ; Mon, 13 Mar 2006 22:30:20 +0000 (GMT) (envelope-from howells@kde.org) Received: from localhost (localhost [127.0.0.1]) by mail.devrandom.org.uk (Postfix) with ESMTP id 51997FD021 for ; Mon, 13 Mar 2006 22:30:19 +0000 (GMT) Received: from mail.devrandom.org.uk ([127.0.0.1]) by localhost (mail.devrandom.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03253-06 for ; Mon, 13 Mar 2006 22:30:18 +0000 (GMT) Received: from [192.168.1.175] (unknown [192.168.1.175]) by mail.devrandom.org.uk (Postfix) with ESMTP id D9B28FD01D for ; Mon, 13 Mar 2006 22:30:18 +0000 (GMT) Message-ID: <4415F27C.6010003@kde.org> Date: Mon, 13 Mar 2006 22:30:20 +0000 From: Chris Howells User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <440D63BF.2070904@vwsoft.com> In-Reply-To: <440D63BF.2070904@vwsoft.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at devrandom.org.uk Subject: Re: SATA drive 1 disappears X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 22:30:21 -0000 Volker wrote: > The RAID set is now running degraded. Both systems are running on R > 6.0. I know it's more like guesswork, but what might be the reason > for these disc errors? Are the discs really dying? When rebooting > the system(s) the first disc re-appears for a few days and will > disappear again later. The hdu connectors have been checked. Run the hard disc manufacturers diagnostic software. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 13 23:44:39 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25B7216A41F; Mon, 13 Mar 2006 23:44:39 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F5C43D48; Mon, 13 Mar 2006 23:44:38 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from localhost.my.domain (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2DNibhi010743; Mon, 13 Mar 2006 23:44:38 GMT (envelope-from davidxu@freebsd.org) From: David Xu To: freebsd-stable@freebsd.org, re@freebsd.org Date: Tue, 14 Mar 2006 07:44:34 +0800 User-Agent: KMail/1.8.2 References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <4413F891.2070006@nurfuerspam.de> <4415AE49.1010104@nurfuerspam.de> In-Reply-To: <4415AE49.1010104@nurfuerspam.de> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603140744.34246.davidxu@freebsd.org> Cc: Martin Subject: Re: threads/80435: panic on high loads X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 23:44:39 -0000 On Tuesday 14 March 2006 01:39, Martin wrote: > > Martin wrote: > > David Xu wrote: > >> This bug unlikely should be reported on thread@, your code is a fork > >> bomb, I think it is a warning why recent days the kernel crashed by > >> such attack, can you reproduce it on 6.0 ? > > 6.0R seems to work fine with this fork bomb. > > Martin > Can anyone add this to 6.1 todo list ? this definitely should be fixed before 6.1R. David Xu From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 04:39:05 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415F816A425; Tue, 14 Mar 2006 04:39:05 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id A775743D46; Tue, 14 Mar 2006 04:39:04 +0000 (GMT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by smarthost1.sentex.ca (8.13.4/8.13.4) with ESMTP id k2E4d3B9063184; Mon, 13 Mar 2006 23:39:03 -0500 (EST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.3/8.13.3) with ESMTP id k2E4d19a014823 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 13 Mar 2006 23:39:01 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20060313232855.107fa680@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Mon, 13 Mar 2006 23:38:10 -0500 To: freebsd-stable@freebsd.org From: Mike Tancsa Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new X-Scanned-By: MIMEDefang 2.51 on 64.7.153.18 Subject: ata panic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 04:39:05 -0000 Hi, I was trying out a recent RELENG_6 on a VIA mini ITX board with built in CF reader. If a CF is present, the box panics at boot (tried with 2 separate boards and different CFs just in case it was hardware). This is with a RELENG_6 from March 7th with the flash in I get a panic at bootup. ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding enabled, default to accept, logging limited to 9100 packets/entry by default lo0: bpf attached ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire ad0: setting PIO4 on 8237 chip ad0: setting UDMA100 on 8237 chip ad0: 38166MB at ata0-master UDMA100 ad0: 78165360 sectors [77545C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad0 ad0: VIA check1 failed ad0: Adaptec check1 failed ad0: LSI (v3) check1 failed ad0: LSI (v2) check1 failed ad0: FreeBSD check1 failed ata1-master: pio=PIO4 wdma=UNSUPPORTED udma=UNSUPPORTED cable=40 wire ad2: setting PIO4 on 8237 chip ad2: 244MB at ata1-master PIO4 Fatal trap 18: integer divide fault while in kernel mode instruction pointer = 0x20:0xc0699c37 stack pointer = 0x28:0xc0c20b78 frame pointer = 0x28:0xc0c20c14 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 18 panic: integer divide fault KDB: stack backtrace: panic(c06c8ad5,c06f119b,0,0,fffff) at 0xc0511f23 = panic+0x103 trap_fatal(0,0,0,0,c07333c0) at 0xc06910a5 = trap_fatal+0x225 trap(8,28,28,1,0) at 0xc06915d7 = trap+0x20f calltrap() at 0xc068081a = calltrap+0x5 --- trap 0x12, eip = 0xc0699c37, esp = 0xc0c20b78, ebp = 0xc0c20c14 --- __qdivrem(7a2b0,0,0,0,0) at 0xc0699c37 = __qdivrem+0x3b __udivdi3(7a2b0,0,0,0) at 0xc069a0de = __udivdi3+0x16 ad_attach(c3343c80,c3343c80,c32bd800,0,c0c20d24) at 0xc04684af = ad_attach+0x44f device_attach(c3343c80) at 0xc0526c8e = device_attach+0x1be bus_generic_attach(c3217000,c3217000,ffffffff,2,c3343c80) at 0xc05278a6 = bus_generic_attach+0x12 ata_identify(c3217000,c3147bd0,c0c20d6c,c0523d00,0) at 0xc045906d = ata_identify+0xcd ata_boot_attach(0,c07206b0,c0c20d88,c04e34c7,0) at 0xc04591e5 = ata_boot_attach+0x4d run_interrupt_driven_config_hooks(0,c31459e8,c1ec00,c1e000,c25000) at 0xc0523d00 = run_interrupt_driven_config_hooks+0x1c mi_startup() at 0xc04e34c7 = mi_startup+0xb3 begin() at 0xc0433e55 = begin+0x2c Uptime: 3s Cannot dump. No dump device defined. Automatic reboot in 15 seconds - press a key on the console to abort Below is a dmesg with the CF slot empty. Its been a while since I tried, but I am pretty sure it used to work Mar 6 17:03:54 ps9996 kernel: Copyright (c) 1992-2006 The FreeBSD Project. Mar 6 17:03:54 ps9996 kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Mar 6 17:03:54 ps9996 kernel: The Regents of the University of California. All rights reserved. Mar 6 17:03:54 ps9996 kernel: FreeBSD 6.1-PRERELEASE #0: Sat Mar 4 07:20:49 EST 2006 Mar 6 17:03:54 ps9996 kernel: mdtancsa@ps9996.station.sentex.ca:/usr/obj/usr/src/sys/gas Mar 6 17:03:54 ps9996 kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Mar 6 17:03:54 ps9996 kernel: CPU: VIA C3 Nehemiah+RNG+ACE (796.77-MHz 686-class CPU) Mar 6 17:03:54 ps9996 kernel: Origin = "CentaurHauls" Id = 0x698 Stepping = 8 Mar 6 17:03:54 ps9996 kernel: Features=0x381b03f Mar 6 17:03:54 ps9996 kernel: real memory = 517865472 (493 MB) Mar 6 17:03:54 ps9996 kernel: avail memory = 497393664 (474 MB) Mar 6 17:03:54 ps9996 kernel: npx0: [FAST] Mar 6 17:03:54 ps9996 kernel: npx0: on motherboard Mar 6 17:03:54 ps9996 kernel: npx0: INT 16 interface Mar 6 17:03:54 ps9996 kernel: acpi0: on motherboard Mar 6 17:03:54 ps9996 kernel: acpi0: Power Button (fixed) Mar 6 17:03:54 ps9996 kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 Mar 6 17:03:54 ps9996 kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 Mar 6 17:03:54 ps9996 kernel: cpu0: on acpi0 Mar 6 17:03:54 ps9996 kernel: acpi_button0: on acpi0 Mar 6 17:03:54 ps9996 kernel: acpi_button1: on acpi0 Mar 6 17:03:54 ps9996 kernel: pcib0: port 0xcf8-0xcff on acpi0 Mar 6 17:03:54 ps9996 kernel: pci0: on pcib0 Mar 6 17:03:54 ps9996 kernel: agp0: mem 0xf8000000-0xf9ffffff at device 0.0 on pci 0 Mar 6 17:03:54 ps9996 kernel: pcib1: at device 1.0 on pci0 Mar 6 17:03:54 ps9996 kernel: pci1: on pcib1 Mar 6 17:03:54 ps9996 kernel: pci1: at device 0.0 (no driver attached) Mar 6 17:03:54 ps9996 kernel: puc0: port 0xe400-0xe407 irq 12 at device 8.0 on pci0 Mar 6 17:03:54 ps9996 kernel: sio4: on puc0 Mar 6 17:03:54 ps9996 kernel: sio4: type 16550A Mar 6 17:03:54 ps9996 kernel: sio4: unable to activate interrupt in fast mode - using normal mode Mar 6 17:03:54 ps9996 kernel: rl0: port 0xd000-0xd0ff mem 0xfc000000-0xfc0000ff irq 7 at device 10.0 on pci0 Mar 6 17:03:54 ps9996 kernel: miibus0: on rl0 Mar 6 17:03:54 ps9996 kernel: rlphy0: on miibus0 Mar 6 17:03:54 ps9996 kernel: rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Mar 6 17:03:54 ps9996 kernel: rl0: Ethernet address: 00:03:1d:02:0b:fd Mar 6 17:03:54 ps9996 kernel: pci0: at device 11.0 (no driver attached) Mar 6 17:03:54 ps9996 kernel: atapci0: port 0xeb00-0xeb07,0xe000-0xe003,0xe100-0xe107,0xe200-0xe203,0 xe300-0xe30f,0xd400-0xd4ff irq 10 at device 15.0 on pci0 Mar 6 17:03:54 ps9996 kernel: ata2: on atapci0 Mar 6 17:03:54 ps9996 kernel: ata3: on atapci0 Mar 6 17:03:54 ps9996 kernel: atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xe500-0xe50f at devi ce 15.1 on pci0 Mar 6 17:03:54 ps9996 kernel: ata0: on atapci1 Mar 6 17:03:54 ps9996 kernel: ata1: on atapci1 Mar 6 17:03:54 ps9996 kernel: uhci0: port 0xe600-0xe61f irq 12 at device 16.0 on pci0 Mar 6 17:03:54 ps9996 kernel: uhci0: [GIANT-LOCKED] Mar 6 17:03:54 ps9996 kernel: usb0: on uhci0 Mar 6 17:03:54 ps9996 kernel: usb0: USB revision 1.0 Mar 6 17:03:54 ps9996 kernel: uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Mar 6 17:03:54 ps9996 kernel: uhub0: 2 ports with 2 removable, self powered Mar 6 17:03:54 ps9996 kernel: uhci1: port 0xe700-0xe71f irq 12 at device 16.1 on pci0 Mar 6 17:03:54 ps9996 kernel: uhci1: [GIANT-LOCKED] Mar 6 17:03:54 ps9996 kernel: usb1: on uhci1 Mar 6 17:03:54 ps9996 kernel: usb1: USB revision 1.0 Mar 6 17:03:54 ps9996 kernel: uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Mar 6 17:03:54 ps9996 kernel: uhub1: 2 ports with 2 removable, self powered Mar 6 17:03:54 ps9996 kernel: uhci2: port 0xe800-0xe81f irq 10 at device 16.2 on pci0 Mar 6 17:03:54 ps9996 kernel: uhci2: [GIANT-LOCKED] Mar 6 17:03:54 ps9996 kernel: usb2: on uhci2 Mar 6 17:03:54 ps9996 kernel: usb2: USB revision 1.0 Mar 6 17:03:54 ps9996 kernel: uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Mar 6 17:03:54 ps9996 kernel: uhub2: 2 ports with 2 removable, self powered Mar 6 17:03:54 ps9996 kernel: uhci3: port 0xe900-0xe91f irq 10 at device 16.3 on pci0 Mar 6 17:03:54 ps9996 kernel: uhci3: [GIANT-LOCKED] Mar 6 17:03:54 ps9996 kernel: usb3: on uhci3 Mar 6 17:03:54 ps9996 kernel: usb3: USB revision 1.0 Mar 6 17:03:54 ps9996 kernel: uhub3: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Mar 6 17:03:54 ps9996 kernel: uhub3: 2 ports with 2 removable, self powered Mar 6 17:03:54 ps9996 kernel: pci0: at device 16.4 (no driver attached) Mar 6 17:03:54 ps9996 kernel: isab0: at device 17.0 on pci0 Mar 6 17:03:54 ps9996 kernel: isa0: on isab0 Mar 6 17:03:54 ps9996 kernel: pci0: at device 17.5 (no driver attached) Mar 6 17:03:54 ps9996 kernel: vr0: port 0xdc00-0xdcff mem 0xfc003000-0xfc0030ff irq 12 at device 18.0 on pci0 Mar 6 17:03:54 ps9996 kernel: miibus1: on vr0 Mar 6 17:03:54 ps9996 kernel: ukphy0: on miibus1 Mar 6 17:03:54 ps9996 kernel: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Mar 6 17:03:54 ps9996 kernel: vr0: Ethernet address: 00:03:1d:02:0a:fd Mar 6 17:03:54 ps9996 kernel: acpi_tz0: on acpi0 Mar 6 17:03:54 ps9996 kernel: fdc0: port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0 Mar 6 17:03:54 ps9996 kernel: fdc0: [FAST] Mar 6 17:03:54 ps9996 kernel: sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 Mar 6 17:03:54 ps9996 kernel: sio0: type 16550A, console Mar 6 17:03:54 ps9996 kernel: sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 Mar 6 17:03:54 ps9996 kernel: sio1: type 16550A Mar 6 17:03:54 ps9996 kernel: sio2: <16550A-compatible COM port> port 0x3e8-0x3ef irq 5 on acpi0 Mar 6 17:03:54 ps9996 kernel: sio2: type 16550A Mar 6 17:03:54 ps9996 kernel: sio3: <16550A-compatible COM port> port 0x2e8-0x2ef irq 11 on acpi0 Mar 6 17:03:54 ps9996 kernel: sio3: type 16550A Mar 6 17:03:54 ps9996 kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 Mar 6 17:03:54 ps9996 kernel: atkbd0: irq 1 on atkbdc0 Mar 6 17:03:54 ps9996 kernel: kbd0 at atkbd0 Mar 6 17:03:54 ps9996 kernel: atkbd0: [GIANT-LOCKED] Mar 6 17:03:54 ps9996 kernel: orm0: at iomem 0xc0000-0xcf7ff,0xd0000-0xd3fff on isa0 Mar 6 17:03:54 ps9996 kernel: sc0: at flags 0x100 on isa0 Mar 6 17:03:54 ps9996 kernel: sc0: VGA <16 virtual consoles, flags=0x300> Mar 6 17:03:54 ps9996 kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Mar 6 17:03:54 ps9996 kernel: Timecounter "TSC" frequency 796770007 Hz quality 800 Mar 6 17:03:54 ps9996 kernel: Timecounters tick every 1.000 msec Mar 6 17:03:54 ps9996 kernel: Fast IPsec: Initialized Security Association Processing. Mar 6 17:03:54 ps9996 kernel: ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding enabled, default to accept, logging limited to 9100 packets/entry by default Mar 6 17:03:54 ps9996 kernel: ad0: 38166MB at ata0-master UDMA100 Mar 6 17:03:54 ps9996 kernel: Trying to mount root from ufs:/dev/ad0s1a Mar 6 17:03:55 ps9996 kernel: vr0: link state changed to UP Mar 6 17:04:00 ps9996 kernel: rl0: promiscuous mode enabled Mar 6 17:04:00 ps9996 kernel: Loading itxwd module. Mar 6 17:04:00 ps9996 kernel: itxwd0: on motherboard Mar 6 17:04:00 ps9996 kernel: itxwd0: Watchdog ready... Mar 6 17:04:00 ps9996 kernel: itxwd0: Watchdog armed -------------------------------------------------------------------- Mike Tancsa, tel +1 519 651 3400 Sentex Communications, mike@sentex.net Providing Internet since 1994 www.sentex.net Cambridge, Ontario Canada www.sentex.net/mike From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 05:37:28 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1E3C16A420 for ; Tue, 14 Mar 2006 05:37:28 +0000 (UTC) (envelope-from andrew@areilly.bpc-users.org) Received: from omta02sl.mx.bigpond.com (omta02sl.mx.bigpond.com [144.140.93.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA6FF43D49 for ; Tue, 14 Mar 2006 05:37:26 +0000 (GMT) (envelope-from andrew@areilly.bpc-users.org) Received: from areilly.bpc-users.org ([141.168.4.160]) by omta02sl.mx.bigpond.com with ESMTP id <20060314053724.BJPA24931.omta02sl.mx.bigpond.com@areilly.bpc-users.org> for ; Tue, 14 Mar 2006 05:37:24 +0000 Received: (qmail 18485 invoked by uid 501); 14 Mar 2006 05:37:57 -0000 Date: Tue, 14 Mar 2006 16:37:57 +1100 From: Andrew Reilly To: Greg Rivers Message-ID: <20060314053757.GA18290@gurney.reilly.home> References: <20060310151942.GP23971@elvis.mu.org> <20060310214635.P1122@nc8000.tharned.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060310214635.P1122@nc8000.tharned.org> User-Agent: Mutt/1.4.2.1i Cc: stable@freebsd.org, Alfred Perlstein Subject: Re: Required audit group is missing... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 05:37:28 -0000 On Fri, Mar 10, 2006 at 09:48:43PM -0600, Greg Rivers wrote: > On Fri, 10 Mar 2006, Alfred Perlstein wrote: > > >mmmm... stable... :D > > > >/usr/src # make installworld > >ERROR: Required audit group is missing, see /usr/src/UPDATING. > >*** Error code 1 > > > >Stop in /usr/src. > >*** Error code 1 > > > >Stop in /usr/src. > >/usr/src # grep audit /usr/src/UPDATING > >/usr/src # > > > >??? > > > > mergemaster -p is your friend. When I bumped into this error (I usually mergemaster after installworld, in contravention of the UPDATING recommendation,) I went to run mergemaster and mergemaster itself barfed, complaining about the lack of the audit group. Sorry, I didn't bother to make a note of the error message. It was easy to fix manually, but a bit weird, given the error message and the lack of anything specific in UPDATING at the time. -- Andrew From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 05:45:18 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EEBD16A401; Tue, 14 Mar 2006 05:45:18 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA44A43D45; Tue, 14 Mar 2006 05:45:17 +0000 (GMT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by smarthost1.sentex.ca (8.13.4/8.13.4) with ESMTP id k2E5jGg6066131; Tue, 14 Mar 2006 00:45:16 -0500 (EST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.3/8.13.3) with ESMTP id k2E5jEMf015149 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 00:45:14 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20060314002825.069fad38@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Tue, 14 Mar 2006 00:38:58 -0500 To: freebsd-stable@freebsd.org From: Mike Tancsa In-Reply-To: <6.2.3.4.0.20060313232855.107fa680@64.7.153.2> References: <6.2.3.4.0.20060313232855.107fa680@64.7.153.2> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new X-Scanned-By: MIMEDefang 2.51 on 64.7.153.18 Subject: Re: ata panic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 05:45:18 -0000 At 11:38 PM 13/03/2006, Mike Tancsa wrote: >Hi, >I was trying out a recent RELENG_6 on a VIA mini ITX board with >built in CF reader. If a CF is present, the box panics at boot >(tried with 2 separate boards and different CFs just in case it was >hardware). This is with a RELENG_6 from March 7th > > >with the flash in I get a panic at bootup. Just updated the source to the latest RELENG_6 in case the changes fixed it, but no dice GEOM: new disk ad0 ad0: VIA check1 failed ad0: Adaptec check1 failed ad0: LSI (v3) check1 failed ad0: LSI (v2) check1 failed ad0: FreeBSD check1 failed ata1-master: pio=PIO4 wdma=UNSUPPORTED udma=UNSUPPORTED cable=40 wire ad2: setting PIO4 on 8237 chip ad2: 244MB at ata1-master PIO4 Fatal trap 18: integer divide fault while in kernel mode instruction pointer = 0x20:0xc069c01b stack pointer = 0x28:0xc0c20b78 frame pointer = 0x28:0xc0c20c14 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) trap number = 18 panic: integer divide fault KDB: stack backtrace: panic(c06caf91,c06f370c,0,0,fffff) at 0xc0512343 = panic+0x103 trap_fatal(0,0,0,0,c07359a0) at 0xc0693485 = trap_fatal+0x225 trap(8,28,28,1,0) at 0xc06939b7 = trap+0x20f calltrap() at 0xc0682b6a = calltrap+0x5 --- trap 0x12, eip = 0xc069c01b, esp = 0xc0c20b78, ebp = 0xc0c20c14 --- __qdivrem(7a2b0,0,0,0,0) at 0xc069c01b = __qdivrem+0x3b __udivdi3(7a2b0,0,0,0) at 0xc069c4c2 = __udivdi3+0x16 ad_attach(c3199400,c3199400,c32a5000,0,c0c20d24) at 0xc046870b = ad_attach+0x44f device_attach(c3199400) at 0xc05270ae = device_attach+0x1be bus_generic_attach(c3228380,c3228380,ffffffff,2,c3199400) at 0xc0527cc6 = bus_generic_attach+0x12 ata_identify(c3228380,0,c0c20d6c,c0524120,0) at 0xc04592c9 = ata_identify+0xcd ata_boot_attach(0,c0722c90,c0c20d88,c04e37f7,0) at 0xc0459441 = ata_boot_attach+0x4d run_interrupt_driven_config_hooks(0,c31459f0,c1ec00,c1e000,c25000) at 0xc0524120 = run_interrupt_driven_config_hooks+0x1c mi_startup() at 0xc04e37f7 = mi_startup+0xb3 begin() at 0xc0434095 = begin+0x2c Uptime: 3s Cannot dump. No dump device defined. Automatic reboot in 15 seconds - press a key on the console to abort --> Press a key on the console to reboot, --> or switch off the system now. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 05:50:41 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FBB616A401; Tue, 14 Mar 2006 05:50:41 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 521A943D46; Tue, 14 Mar 2006 05:50:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 339121A4DD4; Mon, 13 Mar 2006 21:50:41 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1A9CD5186D; Tue, 14 Mar 2006 00:50:40 -0500 (EST) Date: Tue, 14 Mar 2006 00:50:39 -0500 From: Kris Kennaway To: Andrew Reilly Message-ID: <20060314055039.GA8038@xor.obsecurity.org> References: <20060310151942.GP23971@elvis.mu.org> <20060310214635.P1122@nc8000.tharned.org> <20060314053757.GA18290@gurney.reilly.home> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <20060314053757.GA18290@gurney.reilly.home> User-Agent: Mutt/1.4.2.1i Cc: Greg Rivers , stable@freebsd.org, Alfred Perlstein Subject: Re: Required audit group is missing... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 05:50:41 -0000 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 14, 2006 at 04:37:57PM +1100, Andrew Reilly wrote: > On Fri, Mar 10, 2006 at 09:48:43PM -0600, Greg Rivers wrote: > > On Fri, 10 Mar 2006, Alfred Perlstein wrote: > >=20 > > >mmmm... stable... :D > > > > > >/usr/src # make installworld > > >ERROR: Required audit group is missing, see /usr/src/UPDATING. > > >*** Error code 1 > > > > > >Stop in /usr/src. > > >*** Error code 1 > > > > > >Stop in /usr/src. > > >/usr/src # grep audit /usr/src/UPDATING > > >/usr/src # > > > > > >??? > > > > >=20 > > mergemaster -p is your friend. >=20 > When I bumped into this error (I usually mergemaster after installworld, > in contravention of the UPDATING recommendation,) I went to run > mergemaster and mergemaster itself barfed, complaining about the > lack of the audit group. Sorry, I didn't bother to make a note of > the error message. You ran mergemaster, not mergemaster -p. Kris --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFlmvWry0BWjoQKURAho1AJ9ucIpXKAsuB5fhEDaPLHvfwcL80gCgwJXK ulMVx2vpS7Ni2kEvwUk9YzE= =Sbba -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 06:37:35 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A81F16A41F for ; Tue, 14 Mar 2006 06:37:35 +0000 (UTC) (envelope-from sos@deepcore.dk) Received: from spider.deepcore.dk (cpe.atm2-0-53484.0x50a6c9a6.abnxx9.customer.tele.dk [80.166.201.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B48643D46 for ; Tue, 14 Mar 2006 06:37:34 +0000 (GMT) (envelope-from sos@deepcore.dk) Received: from [194.192.25.142] (spider.deepcore.dk [194.192.25.142]) by spider.deepcore.dk (8.13.4/8.13.4) with ESMTP id k2E6bVge062448; Tue, 14 Mar 2006 07:37:31 +0100 (CET) (envelope-from sos@deepcore.dk) Message-ID: <441664AB.9060303@deepcore.dk> Date: Tue, 14 Mar 2006 07:37:31 +0100 From: =?ISO-8859-1?Q?S=F8ren_Schmidt?= User-Agent: Thunderbird 1.5 (X11/20060213) MIME-Version: 1.0 To: Mike Tancsa References: <6.2.3.4.0.20060313232855.107fa680@64.7.153.2> <6.2.3.4.0.20060314002825.069fad38@64.7.153.2> In-Reply-To: <6.2.3.4.0.20060314002825.069fad38@64.7.153.2> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-mail-scanned: by DeepCore Virus & Spam killer v1.16 Cc: freebsd-stable@FreeBSD.ORG Subject: Re: ata panic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 06:37:35 -0000 Mike Tancsa wrote: > At 11:38 PM 13/03/2006, Mike Tancsa wrote: >> Hi, >> I was trying out a recent RELENG_6 on a VIA mini ITX board with built >> in CF reader. If a CF is present, the box panics at boot (tried with 2 >> separate boards and different CFs just in case it was hardware). This >> is with a RELENG_6 from March 7th >> >> >> with the flash in I get a panic at bootup. > > Just updated the source to the latest RELENG_6 in case the changes fixed > it, but no dice Hmm, thats not the intended behavior :) Thanks for the report, I'll look into this ASAP! -Sřren > > GEOM: new disk ad0 > ad0: VIA check1 failed > ad0: Adaptec check1 failed > ad0: LSI (v3) check1 failed > ad0: LSI (v2) check1 failed > ad0: FreeBSD check1 failed > ata1-master: pio=PIO4 wdma=UNSUPPORTED udma=UNSUPPORTED cable=40 wire > ad2: setting PIO4 on 8237 chip > ad2: 244MB at ata1-master PIO4 > > > Fatal trap 18: integer divide fault while in kernel mode > instruction pointer = 0x20:0xc069c01b > stack pointer = 0x28:0xc0c20b78 > frame pointer = 0x28:0xc0c20c14 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 0 (swapper) > trap number = 18 > panic: integer divide fault > KDB: stack backtrace: > panic(c06caf91,c06f370c,0,0,fffff) at 0xc0512343 = panic+0x103 > trap_fatal(0,0,0,0,c07359a0) at 0xc0693485 = trap_fatal+0x225 > trap(8,28,28,1,0) at 0xc06939b7 = trap+0x20f > calltrap() at 0xc0682b6a = calltrap+0x5 > --- trap 0x12, eip = 0xc069c01b, esp = 0xc0c20b78, ebp = 0xc0c20c14 --- > __qdivrem(7a2b0,0,0,0,0) at 0xc069c01b = __qdivrem+0x3b > __udivdi3(7a2b0,0,0,0) at 0xc069c4c2 = __udivdi3+0x16 > ad_attach(c3199400,c3199400,c32a5000,0,c0c20d24) at 0xc046870b = > ad_attach+0x44f > device_attach(c3199400) at 0xc05270ae = device_attach+0x1be > bus_generic_attach(c3228380,c3228380,ffffffff,2,c3199400) at 0xc0527cc6 > = bus_generic_attach+0x12 > ata_identify(c3228380,0,c0c20d6c,c0524120,0) at 0xc04592c9 = > ata_identify+0xcd > ata_boot_attach(0,c0722c90,c0c20d88,c04e37f7,0) at 0xc0459441 = > ata_boot_attach+0x4d > run_interrupt_driven_config_hooks(0,c31459f0,c1ec00,c1e000,c25000) at > 0xc0524120 = run_interrupt_driven_config_hooks+0x1c > mi_startup() at 0xc04e37f7 = mi_startup+0xb3 > begin() at 0xc0434095 = begin+0x2c > Uptime: 3s > Cannot dump. No dump device defined. > Automatic reboot in 15 seconds - press a key on the console to abort > --> Press a key on the console to reboot, > --> or switch off the system now. > > > > . > From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 07:10:21 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0569116A401 for ; Tue, 14 Mar 2006 07:10:21 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D65843D45 for ; Tue, 14 Mar 2006 07:10:20 +0000 (GMT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by smarthost2.sentex.ca (8.13.4/8.13.4) with ESMTP id k2E7ADhc003662; Tue, 14 Mar 2006 02:10:13 -0500 (EST) (envelope-from mike@sentex.net) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.3/8.13.3) with ESMTP id k2E7ABlH015626 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 02:10:12 -0500 (EST) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20060314015728.031b6180@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Tue, 14 Mar 2006 02:09:20 -0500 To: =?iso-8859-1?Q?S=F8ren?= Schmidt From: Mike Tancsa In-Reply-To: <441664AB.9060303@deepcore.dk> References: <6.2.3.4.0.20060313232855.107fa680@64.7.153.2> <6.2.3.4.0.20060314002825.069fad38@64.7.153.2> <441664AB.9060303@deepcore.dk> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by amavisd-new X-Scanned-By: MIMEDefang 2.51 on 205.211.164.50 Cc: freebsd-stable@FreeBSD.ORG Subject: Re: ata panic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 07:10:21 -0000 At 01:37 AM 14/03/2006, S=F8ren Schmidt wrote: >Mike Tancsa wrote: >>At 11:38 PM 13/03/2006, Mike Tancsa wrote: >>>Hi, >>>I was trying out a recent RELENG_6 on a VIA=20 >>>mini ITX board with built in CF reader. If a=20 >>>CF is present, the box panics at boot (tried=20 >>>with 2 separate boards and different CFs just=20 >>>in case it was hardware). This is with a RELENG_6 from March 7th >>> >>> >>>with the flash in I get a panic at bootup. >>Just updated the source to the latest RELENG_6=20 >>in case the changes fixed it, but no dice > >Hmm, thats not the intended behavior :) >Thanks for the report, I'll look into this ASAP! Thanks! I also just confirmed a kernel from Feb=20 1 boots up OK, but not with boot -v ?? eg here is a regular boot from the Feb 1 kernel WARNING: WITNESS option enabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: VIA C3 Nehemiah+RNG+ACE (796.77-MHz 686-class CPU) atapci0: port=20 0xeb00-0xeb07,0xe000-0xe003,0xe100-0xe107,0xe200-0xe203,0xe300-0xe30f,0xd400= -0xd4ff=20 irq 10 at device 15.0 on pci0 ata2: on atapci0 ata3: on atapci0 atapci1: port=20 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xe500-0xe50f at device 15.1 on pci0 ata0: on atapci1 ata1: on atapci1 Timecounters tick every 1.000 msec Fast IPsec: Initialized Security Association Processing. ad0: 38166MB at ata0-master UDMA100 ad2: 244MB at ata1-master PIO4 Trying to mount root from ufs:/dev/ad0s1a where as boot -v gives ata0-master: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA100 cable=3D80 wire ad0: setting PIO4 on 8237 chip ad0: setting UDMA100 on 8237 chip ad0: 38166MB at ata0-master UDMA100 ad0: 78165360 sectors [77545C/16H/63S] 16 sectors/interrupt 1 depth queue ata1-master: pio=3DPIO4 wdma=3DUNSUPPORTED udma=3DUNSUPPORTED cable=3D40= wire ad2: setting PIO4 on 8237 chip ad2: 244MB at ata1-master PIO4 Fatal trap 18: integer divide fault while in kernel mode cpuid =3D 0; apic id =3D 00 instruction pointer =3D 0x20:0xc06d7637 stack pointer =3D 0x28:0xc0c20b64 frame pointer =3D 0x28:0xc0c20bec code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 0 (swapper) [thread pid 0 tid 0 ] Stopped at __qdivrem+0x3b: divl %ecx,%eax db> db> bt Tracing pid 0 tid 0 td 0xc078dac0 __qdivrem(7a2b0,0,0,0,0) at __qdivrem+0x3b __udivdi3(7a2b0,0,0,0) at __udivdi3+0x16 ad_describe(c339f700,c339f700,c32df3a0,c33bd800,c31a3600) at= ad_describe+0x1b3 ad_attach(c339f700) at ad_attach+0x1e7 device_attach(c339f700,c0c20d28,c339f700,0,c33bd800) at device_attach+0x58 device_probe_and_attach(c339f700) at device_probe_and_attach+0xe0 bus_generic_attach(c328b280,c328b280,ffffffff,2,c339f700)=20 at bus_generic_attach+0x16 ata_identify(c328b280) at ata_identify+0x1c8 ata_boot_attach(0) at ata_boot_attach+0x3e run_interrupt_driven_config_hooks(0,c1ec00,c1e000,0,c043b215)=20 at run_interrupt_driven_config_hooks+0x18 mi_startup() at mi_startup+0x96 begin() at begin+0x2c db> Tracing pid 0 tid 0 td 0xc078dac0 __qdivrem(7a2b0,0,0,0,0) at __qdivrem+0x3b __udivdi3(7a2b0,0,0,0) at __udivdi3+0x16 ad_describe(c339f700,c339f700,c32df3a0,c33bd800,c31a3600) at= ad_describe+0x1b3 ad_attach(c339f700) at ad_attach+0x1e7 device_attach(c339f700,c0c20d28,c339f700,0,c33bd800) at device_attach+0x58 device_probe_and_attach(c339f700) at device_probe_and_attach+0xe0 bus_generic_attach(c328b280,c328b280,ffffffff,2,c339f700)=20 at bus_generic_attach+0x16 ata_identify(c328b280) at ata_identify+0x1c8 ata_boot_attach(0) at ata_boot_attach+0x3e run_interrupt_driven_config_hooks(0,c1ec00,c1e000,0,c043b215)=20 at run_interrupt_driven_config_hooks+0x18 mi_startup() at mi_startup+0x96 begin() at begin+0x2c db> From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 07:27:31 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3906A16A400 for ; Tue, 14 Mar 2006 07:27:31 +0000 (UTC) (envelope-from nakal@nurfuerspam.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 28B3643D45 for ; Tue, 14 Mar 2006 07:27:29 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: (qmail invoked by alias); 14 Mar 2006 07:27:28 -0000 Received: from p5090E68C.dip.t-dialin.net (EHLO klotz.local) [80.144.230.140] by mail.gmx.net (mp033) with SMTP; 14 Mar 2006 08:27:28 +0100 X-Authenticated: #989277 Received: from [192.168.0.1] (klotz.local [192.168.0.1]) by klotz.local (8.13.4/8.13.4) with ESMTP id k2E7RMtk002255; Tue, 14 Mar 2006 08:27:23 +0100 (CET) (envelope-from nakal@nurfuerspam.de) Message-ID: <4416705A.50708@nurfuerspam.de> Date: Tue, 14 Mar 2006 08:27:22 +0100 From: Martin User-Agent: Thunderbird 1.5 (X11/20060205) MIME-Version: 1.0 To: David Xu References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <4413F891.2070006@nurfuerspam.de> <4415AE49.1010104@nurfuerspam.de> <200603140744.34246.davidxu@freebsd.org> In-Reply-To: <200603140744.34246.davidxu@freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-stable@freebsd.org Subject: kern/94278 (was: threads/80435: panic on high loads) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 07:27:31 -0000 David Xu wrote: > Can anyone add this to 6.1 todo list ? this definitely should be fixed before > 6.1R. One of my friends also has found kern/94278: http://www.freebsd.org/cgi/query-pr.cgi?pr=94278 There is no comment on it so far. This crash (without panic) is not less important, in my opinion. Martin From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 08:41:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FCB416A426 for ; Tue, 14 Mar 2006 08:41:37 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A04943D46; Tue, 14 Mar 2006 08:41:37 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from localhost.my.domain (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2E8fZnn048003; Tue, 14 Mar 2006 08:41:36 GMT (envelope-from davidxu@freebsd.org) From: David Xu To: freebsd-stable@freebsd.org Date: Tue, 14 Mar 2006 16:41:32 +0800 User-Agent: KMail/1.8.2 References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <200603140744.34246.davidxu@freebsd.org> <4416705A.50708@nurfuerspam.de> In-Reply-To: <4416705A.50708@nurfuerspam.de> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200603141641.32705.davidxu@freebsd.org> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: Martin Subject: Re: kern/94278 (was: threads/80435: panic on high loads) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 08:41:37 -0000 On Tuesday 14 March 2006 15:27, Martin wrote: > > David Xu wrote: > > > Can anyone add this to 6.1 todo list ? this definitely should be fixed before > > 6.1R. > > One of my friends also has found kern/94278: > http://www.freebsd.org/cgi/query-pr.cgi?pr=94278 > > There is no comment on it so far. This crash (without panic) > is not less important, in my opinion. > > Martin Yeah, fifo refuses to work if the caller did not allocate a FILE structure for it, but ktrace insists that it should work without a FILE, it believes a vnode is enough for everything, I am really tired of such arch breakage. David Xu From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 08:48:17 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60FDF16A400 for ; Tue, 14 Mar 2006 08:48:17 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FDFA43D45 for ; Tue, 14 Mar 2006 08:48:15 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k2E8m48k036080; Tue, 14 Mar 2006 10:48:04 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Tue, 14 Mar 2006 10:48:04 +0200 (EET) From: Dmitry Pryanishnikov To: Jon Dama In-Reply-To: Message-ID: <20060314095808.I12991@atlantis.atlantis.dp.ua> References: <20060302181625.I3905@atlantis.atlantis.dp.ua> <76FAD2DB-CD18-42D4-95C8-F016CFB17B00@segpub.com.au> <20060303110936.R86586@atlantis.atlantis.dp.ua> <20060303185157.GB692@turion.vk2pj.dyndns.org> <20060304001224.G356@atlantis.atlantis.dp.ua> <20060304065138.GD692@turion.vk2pj.dyndns.org> <20060310121758.S80837@atlantis.atlantis.dp.ua> <20060310123942.GI37572@deviant.kiev.zoral.com.ua> <20060310153737.X40396@atlantis.atlantis.dp.ua> <20060310193248.GC688@turion.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Kostik Belousov , Peter Jeremy , freebsd-stable@freebsd.org, Michael Proto Subject: Re: RELENG_4 on flash disk and swap X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 08:48:17 -0000 Hello! I won't reply to the overcommit part of your letter, since my concern is rather local: I'm just not sure whether FreeBSD does it's best during the DoS-attack in swapless environment. On Mon, 13 Mar 2006, Jon Dama wrote: > Also, when the system is page-starved it kills the largest consumer of > pages that has the same UID as the process that pushed the system over the > limit---not merely the largest consumer of pages. So you see, running > critical services that carefully pre-allocate and fault their memory is > possible within the overcommit framework. I fail to see any UID check in this code (/sys/vm/vm_pageout.c from RELENG_4_11, the last part of vm_pageout_scan()): /* * If we are out of swap and were not able to reach our paging * target, kill the largest process. */ if ((vm_swap_size < 64 && vm_page_count_min()) || (swap_pager_full && vm_paging_target() > 0)) { #if 0 if ((vm_swap_size < 64 || swap_pager_full) && vm_page_count_min()) { #endif bigproc = NULL; bigsize = 0; for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) { /* * if this is a system process, skip it */ if ((p->p_flag & P_SYSTEM) || (p->p_pid == 1) || ((p->p_pid < 48) && (vm_swap_size != 0))) { continue; } /* * if the process is in a non-running type state, * don't touch it. */ if (p->p_stat != SRUN && p->p_stat != SSLEEP) { continue; } /* * get the process size */ size = vmspace_resident_count(p->p_vmspace) + vmspace_swap_count(p->p_vmspace); /* * if the this process is bigger than the biggest one * remember it. */ if (size > bigsize) { bigproc = p; bigsize = size; } } if (bigproc != NULL) { killproc(bigproc, "out of swap space"); bigproc->p_estcpu = 0; bigproc->p_nice = PRIO_MIN; resetpriority(bigproc); wakeup(&cnt.v_free_count); } } Neither I see UID check in the fresh CURRENT. Also, even if UID check were here, it wouldn't buy much for us, since during the DoS attack the target is the main listener (say, sshd or sendmail), and it always runs as root because otherwise it couldn't listen at port < 1024. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 08:48:23 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8208616A400 for ; Tue, 14 Mar 2006 08:48:23 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (ll-227.216.82.212.sovam.net.ua [212.82.216.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id B161643D45 for ; Tue, 14 Mar 2006 08:48:22 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.3/8.13.3) with ESMTP id k2E8mAmF003103 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 10:48:11 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k2E8mAtR042242; Tue, 14 Mar 2006 10:48:10 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4/Submit) id k2E8m8D8042233; Tue, 14 Mar 2006 10:48:08 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 14 Mar 2006 10:48:08 +0200 From: Kostik Belousov To: Jon Dama Message-ID: <20060314084808.GK37572@deviant.kiev.zoral.com.ua> References: <76FAD2DB-CD18-42D4-95C8-F016CFB17B00@segpub.com.au> <20060303110936.R86586@atlantis.atlantis.dp.ua> <20060303185157.GB692@turion.vk2pj.dyndns.org> <20060304001224.G356@atlantis.atlantis.dp.ua> <20060304065138.GD692@turion.vk2pj.dyndns.org> <20060310121758.S80837@atlantis.atlantis.dp.ua> <20060310123942.GI37572@deviant.kiev.zoral.com.ua> <20060310153737.X40396@atlantis.atlantis.dp.ua> <20060310193248.GC688@turion.vk2pj.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 on fw.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on fw.zoral.com.ua Cc: Dmitry Pryanishnikov , Peter Jeremy , Kostik Belousov , freebsd-stable@freebsd.org, Michael Proto Subject: Re: RELENG_4 on flash disk and swap X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 08:48:23 -0000 On Mon, Mar 13, 2006 at 11:48:06AM -0800, Jon Dama wrote: > > If you feel this situation is undesirable, the first thing to do is to put > together the patches necessary to allow the kernel to actually track how > much ram+swap might be needed to cover the address-space allocations > that have been granted. This isn't trivial: just start thinking about > shared allocations, forking, copy-on-writem, etc. > > In order to make this change "costless" I suspect you'll have to hide it > behind a kernel config option. Maybe you'll bill it as mere > instrumentation. > > Then worry about convincing people that overcommit shouldn't be the only > option. But once you have your kernel config option to enable proper > accounting it should be a short-hop to making a sysctl that can disable > overcommit and enforce limits based on the previously mentioned > "accounting". > > Most importantly though you won't need to convince anyone that the > default ought to be changed. > > SIGDANGER has essentially been rejected universally by everyone but its > creators (IBM), and as it is unusual, don't expect anyone to write a > program that uses it. Ditto for any solution that involves madvise or expecting > programs to prefault their pages. > > Other suggestion: build a time machine to go back to 1990 and get early > (pages guaranteed) and late (overcommitted) allocation written into POSIX. > > Somewhat accepted is to ensure allocations must be backed but to also > support a M_NORESERVE flag in mmap to permit overcomitted allocations. > Anyways, no matter what you must first give the kernel the necessary > accounting code. > > For the record: I believe in overcommit, but I recognize that it violates > the semantics people were (foolishly) taught in school. > > Also, when the system is page-starved it kills the largest consumer of > pages that has the same UID as the process that pushed the system over the > limit---not merely the largest consumer of pages. So you see, running > critical services that carefully pre-allocate and fault their memory is > possible within the overcommit framework. > > Jon I already sent the link to the patch that does exactly this, and did this countless number of times (and, at least once in this thread): http://kostikbel.narod.ru/overcommit !!!!!!!! Patches are ready for testing. But everybody prefer to speak about, instead of just test and give the feedback. It seems that this matter is interesting only as soapbox. Sorry. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 08:55:21 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65B9516A42F for ; Tue, 14 Mar 2006 08:55:21 +0000 (UTC) (envelope-from gemini@geminix.org) Received: from geminix.org (geminix.org [213.73.82.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3891D43D5E for ; Tue, 14 Mar 2006 08:55:18 +0000 (GMT) (envelope-from gemini@geminix.org) Message-ID: <441684F3.8030401@geminix.org> Date: Tue, 14 Mar 2006 09:55:15 +0100 From: Uwe Doering Organization: Private UNIX Site User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060129 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eric Anderson References: <4415E8BB.1080602@centtech.com> In-Reply-To: <4415E8BB.1080602@centtech.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Received: from gemini by geminix.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FJ5JE-0002KK-3U; Tue, 14 Mar 2006 09:55:16 +0100 Cc: freebsd-stable@freebsd.org Subject: Re: panic: ffs_valloc: dup alloc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 08:55:21 -0000 Eric Anderson wrote: > I get the above panic after nfs clients attach to this nfs server and > being read/write ops on it after an unclean shutdown. I've fsck'ed the > fs, and it marks it as clean, but I get this every time. It's an NFS > share of a GEOM stripe (about 2TB). > mode = 0100600, inum = 58456203, fs = /mnt > panic: ffs_valloc: dup alloc Do you happen to have disk mirroring on this server (RAID 1)? At work, on a workstation with RAID 1, we once had a case where after a power failure fsck would succeed, but subsequently, when mounting and using the partitions, the kernel still paniced because of a corrupt filesystem. Repeatedly. This caused some major head scratching on our part until we figured out what was happening. The mirrored disks had gone out of sync. For performance reasons, a RAID 1 controller reads data from one disk drive or the other, depending on which drive is less busy in that particular moment. So while fsck was able to find and fix some filesystem inconsistencies there were still some more left in disk sectors it didn't access. The RAID controller we used turned out to have a verification mode where it would scan the disks and re-synchronize them. Afterwards we did another fsck run, and this fixed the remaining filesystem inconsistencies. The kernel panics were gone. Now, with the information you've provided I can't tell whether these findings apply to your case, but perhaps this story helps at least others in a similar situation. Uwe -- Uwe Doering | EscapeBox - Managed On-Demand UNIX Servers gemini@geminix.org | http://www.escapebox.net From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 09:21:03 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B753D16A401 for ; Tue, 14 Mar 2006 09:21:03 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id F17D343D53 for ; Tue, 14 Mar 2006 09:21:02 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 14 Mar 2006 09:21:01 -0000 Received: from p54A7D6D7.dip.t-dialin.net (EHLO [192.168.0.12]) [84.167.214.215] by mail.gmx.net (mp032) with SMTP; 14 Mar 2006 10:21:01 +0100 X-Authenticated: #5465401 Message-ID: <44168AF8.9040309@gmx.de> Date: Tue, 14 Mar 2006 10:20:56 +0100 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5 (X11/20060128) MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <20060313103240.ie1bevcdijs4coko@webmail.meijome.net> In-Reply-To: <20060313103240.ie1bevcdijs4coko@webmail.meijome.net> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigE807E8560D7C105527691CB0" X-Y-GMX-Trusted: 0 Subject: Re: What laptop do you recommend? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 09:21:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE807E8560D7C105527691CB0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable I have seen a lot of Thinkpad recommendations and I'd like to give you a warning here. I'm owning an R40 and it works well driver-wise. But the USB- and PCMCIA-controller have broken 3 times and the mainboard has been replaced twice because of this. Now I am out of warranty and a replacement board costs ~$600. If you really go for a Thinkpad make sure you have at least a 3 years warranty plan. freebsd@meijome.net wrote: > hi everyone, > I'm looking for a new, gruntier laptop. What laptop is known to work > WELL with freeBSD? e.g.: >=20 > ACPI with no problems (and as many features as possible) > PATA / SATA with no problems > all other basic stuff (graphics, NIC, Wireless g, sound, > touchpad ,etc ) should work too, of course >=20 > Looking into either Intel duo Core or AMD64 chips. >=20 >>From what I've read, IBMs seem to have quite good support, so do DELLs > (though they seem chunkier than other laptops). I usually get Toshiba, > but I don't think they are so well supported. >=20 > Thanks in advance for any advice you can share :) >=20 > Best regards, > Beto >=20 > _______________________________________________ > freebsd-mobile@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mobile > To unsubscribe, send any mail to "freebsd-mobile-unsubscribe@freebsd.or= g" >=20 >=20 --------------enigE807E8560D7C105527691CB0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFor4fMDIb41/+S0RAhfSAJsHSxDvCFt8kahCo0Icyv1VBtfMzgCeP320 poRvub/c/iCNQvRNj7ql+ag= =sVlx -----END PGP SIGNATURE----- --------------enigE807E8560D7C105527691CB0-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 11:25:14 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B2BC16A400 for ; Tue, 14 Mar 2006 11:25:14 +0000 (UTC) (envelope-from howells@kde.org) Received: from mail.devrandom.org.uk (host-84-9-223-82.bulldogdsl.com [84.9.223.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F9F743D48 for ; Tue, 14 Mar 2006 11:25:13 +0000 (GMT) (envelope-from howells@kde.org) Received: from localhost (localhost [127.0.0.1]) by mail.devrandom.org.uk (Postfix) with ESMTP id EEB79FD01D for ; Tue, 14 Mar 2006 11:25:11 +0000 (GMT) Received: from mail.devrandom.org.uk ([127.0.0.1]) by localhost (mail.devrandom.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14631-06 for ; Tue, 14 Mar 2006 11:25:09 +0000 (GMT) Received: from [192.168.1.177] (unknown [192.168.1.177]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.devrandom.org.uk (Postfix) with ESMTP id 3D734FD008 for ; Tue, 14 Mar 2006 11:25:09 +0000 (GMT) From: Chris Howells Organization: K Desktop Environment To: freebsd-stable@freebsd.org Date: Tue, 14 Mar 2006 11:23:40 +0000 User-Agent: KMail/1.9.1 References: <20060310151942.GP23971@elvis.mu.org> <20060310214635.P1122@nc8000.tharned.org> <20060314053757.GA18290@gurney.reilly.home> In-Reply-To: <20060314053757.GA18290@gurney.reilly.home> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603141123.40902.howells@kde.org> X-Virus-Scanned: amavisd-new at devrandom.org.uk Subject: Re: Required audit group is missing... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 11:25:14 -0000 On Tuesday 14 March 2006 05:37, Andrew Reilly wrote: > When I bumped into this error (I usually mergemaster after installworld, > in contravention of the UPDATING recommendation,) I went to run Note that mergemaster should be ran twice during an upgrade; first as 'mergemaster -p' (pre-build world) then as 'mergemaster. -- Cheers, Chris Howells -- chris@chrishowells.co.uk, howells@kde.org Web: http://chrishowells.co.uk, PGP ID: 0x33795A2C KDE/Qt/C++/PHP Developer: http://www.kde.org From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 11:28:04 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0440116A400 for ; Tue, 14 Mar 2006 11:28:04 +0000 (UTC) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFB7C43D68 for ; Tue, 14 Mar 2006 11:27:47 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id k2EBRkrI085686; Tue, 14 Mar 2006 13:27:46 +0200 (EET) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ip.net.ua [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 04157-01; Tue, 14 Mar 2006 13:27:18 +0200 (EET) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id k2EBQigv085661 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 13:26:44 +0200 (EET) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id k2EBR2x6018111; Tue, 14 Mar 2006 13:27:02 +0200 (EET) (envelope-from ru) Date: Tue, 14 Mar 2006 13:27:02 +0200 From: Ruslan Ermilov To: Alan Amesbury Message-ID: <20060314112701.GF17026@ip.net.ua> References: <440DFEC5.3070501@umn.edu> <44159088.9000505@umn.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cz6wLo+OExbGG7q/" Content-Disposition: inline In-Reply-To: <44159088.9000505@umn.edu> User-Agent: Mutt/1.5.11 X-Virus-Scanned: amavisd-new at ip.net.ua Cc: freebsd-stable@freebsd.org Subject: Re: Kernel INCLUDE_CONFIG_FILE workaround? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 11:28:04 -0000 --cz6wLo+OExbGG7q/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 13, 2006 at 09:32:24AM -0600, Alan Amesbury wrote: > Jorge Aldana wrote: >=20 > >I'm on 6.1PreRelease and this works: > > > >strings -n 3 /boot/kernel/kernel | grep -v ____ | sed -n 's/^___//p' > > > >There was a minor tweek in this line back in 5.X transition form 4.X but= =20 > >my script works fine for 6.X since then. >=20 > Note that the problem isn't in the line you provided above that extracts= =20 > the built-in configuration file. It's in the build procedure that's=20 > supposed to put the config file into the kernel in the first place. In= =20 > other words, "options INCLUDE_CONFIG_FILE" doesn't include *all* the=20 > configuration data, because it doesn't include included configuration=20 > files. It's only including the very first level of nested configuration= =20 > files, which is not an accurate representation of what's in the kernel. >=20 > In my example, the configuration file for GENERIC should've been in=20 > there somewhere, as well as anything included by GENERIC (such as the=20 > stuff in DEFAULTS). >=20 > Again, this used to work great, but appears to have been broken in favor= =20 > of... usability? >=20 I posted a patch to config(8) some time ago that did what you want, but it wasn't widely accepted so I abandoned it. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --cz6wLo+OExbGG7q/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFEFqiFqRfpzJluFF4RAtO7AJ0ZtxJFIzTYndKIdrLP9gNx2gJP2ACgnoPB 9qZVXgII3YQ90vw+bSMXPZM= =H/KH -----END PGP SIGNATURE----- --cz6wLo+OExbGG7q/-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 12:02:02 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EDD416A401; Tue, 14 Mar 2006 12:02:02 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (ll-227.216.82.212.sovam.net.ua [212.82.216.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7043143D46; Tue, 14 Mar 2006 12:02:01 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.3/8.13.3) with ESMTP id k2EC1tEG008589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 14:01:55 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k2EC1scg017876; Tue, 14 Mar 2006 14:01:55 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4/Submit) id k2EC1rIG017873; Tue, 14 Mar 2006 14:01:53 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 14 Mar 2006 14:01:53 +0200 From: Kostik Belousov To: David Xu Message-ID: <20060314120153.GL37572@deviant.kiev.zoral.com.ua> References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <200603140744.34246.davidxu@freebsd.org> <4416705A.50708@nurfuerspam.de> <200603141641.32705.davidxu@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="kUBUi7JBpjcBtem/" Content-Disposition: inline In-Reply-To: <200603141641.32705.davidxu@freebsd.org> User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 on fw.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on fw.zoral.com.ua Cc: freebsd-stable@freebsd.org, bug-followup@freebsd.org, Martin Subject: [patch] Re: kern/94278: Crash with FIFOs and ktrace X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 12:02:02 -0000 --kUBUi7JBpjcBtem/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 14, 2006 at 04:41:32PM +0800, David Xu wrote: > On Tuesday 14 March 2006 15:27, Martin wrote: > >=20 > > David Xu wrote: > >=20 > > > Can anyone add this to 6.1 todo list ? this definitely should be fixe= d=20 > before > > > 6.1R. > >=20 > > One of my friends also has found kern/94278: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D94278 > >=20 > > There is no comment on it so far. This crash (without panic) > > is not less important, in my opinion. > >=20 > > Martin >=20 > Yeah, fifo refuses to work if the caller did not allocate a FILE structure > for it, but ktrace insists that it should work without a FILE, it believes > a vnode is enough for everything, I am really tired of such arch breakag= e. >=20 > David Xu In fact, the problem affects most places where kernel tries writing to the file, because usually code does not allocate file descriptor for write, but uses direct vnode access. I found approximately a dozen such places. BTW, the case for fhopen seems to be remotely exploitable. Long-term fix would be to correctly integrate fifo into VFS instead of overloading file op structure for vnodes. For now, please, try the following patch: Index: compat/linux/linux_misc.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/local/arch/ncvs/src/sys/compat/linux/linux_misc.c,v retrieving revision 1.172 diff -u -r1.172 linux_misc.c --- compat/linux/linux_misc.c 28 Dec 2005 07:08:54 -0000 1.172 +++ compat/linux/linux_misc.c 14 Mar 2006 11:45:57 -0000 @@ -310,6 +310,21 @@ * XXX: This should use vn_open() so that it is properly authorized, * and to reduce code redundancy all over the place here. */ + if (vp->v_type =3D=3D VLNK) { + error =3D EMLINK; + goto cleanup; + } + if (vp->v_type =3D=3D VSOCK) { + error =3D EOPNOTSUPP; + goto cleanup; + } + if (vp->v_type =3D=3D VFIFO) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error =3D EOPNOTSUPP; + goto cleanup; + } #ifdef MAC error =3D mac_check_vnode_open(td->td_ucred, vp, FREAD); if (error) Index: fs/fifofs/fifo_vnops.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/local/arch/ncvs/src/sys/fs/fifofs/fifo_vnops.c,v retrieving revision 1.132 diff -u -r1.132 fifo_vnops.c --- fs/fifofs/fifo_vnops.c 1 Oct 2005 20:15:41 -0000 1.132 +++ fs/fifofs/fifo_vnops.c 14 Mar 2006 11:46:07 -0000 @@ -168,6 +168,7 @@ int a_mode; struct ucred *a_cred; struct thread *a_td; + int a_fdidx; } */ *ap; { struct vnode *vp =3D ap->a_vp; Index: kern/vfs_syscalls.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_syscalls.c,v retrieving revision 1.411 diff -u -r1.411 vfs_syscalls.c --- kern/vfs_syscalls.c 4 Mar 2006 00:09:09 -0000 1.411 +++ kern/vfs_syscalls.c 14 Mar 2006 11:46:10 -0000 @@ -4101,6 +4101,13 @@ error =3D EOPNOTSUPP; goto bad; } + if (vp->v_type =3D=3D VFIFO) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error =3D EOPNOTSUPP; + goto bad; + } mode =3D 0; if (fmode & (FWRITE | O_TRUNC)) { if (vp->v_type =3D=3D VDIR) { Index: kern/vfs_vnops.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_vnops.c,v retrieving revision 1.238 diff -u -r1.238 vfs_vnops.c --- kern/vfs_vnops.c 11 Mar 2006 17:14:05 -0000 1.238 +++ kern/vfs_vnops.c 14 Mar 2006 11:46:10 -0000 @@ -194,6 +194,13 @@ error =3D EOPNOTSUPP; goto bad; } + if ((vp->v_type =3D=3D VFIFO) && (fdidx < 0)) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error =3D EOPNOTSUPP; + goto bad; + } mode =3D 0; if (fmode & (FWRITE | O_TRUNC)) { if (vp->v_type =3D=3D VDIR) { --kUBUi7JBpjcBtem/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFrCwC3+MBN1Mb4gRAonRAKDgl2lTuQTIAlJk0hc6ZkGV2u57ugCfR5cp Z/F+c/Kwf++VHIHPhQ2PoHc= =Au9C -----END PGP SIGNATURE----- --kUBUi7JBpjcBtem/-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 12:41:17 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C84D316A41F for ; Tue, 14 Mar 2006 12:41:17 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from mail.ticketswitch.com (mail.ticketswitch.com [194.200.93.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C08343D45 for ; Tue, 14 Mar 2006 12:41:17 +0000 (GMT) (envelope-from petefrench@ticketswitch.com) Received: from [172.16.1.6] (helo=dilbert.firstcallgroup.co.uk) by mail.ticketswitch.com with esmtp (Exim 4.52 (FreeBSD)) id 1FJ8pw-000HiR-DR for freebsd-stable@FreeBSD.ORG; Tue, 14 Mar 2006 12:41:16 +0000 Received: from petefrench by dilbert.firstcallgroup.co.uk with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FJ8pv-000Bmv-S3 for freebsd-stable@FreeBSD.ORG; Tue, 14 Mar 2006 12:41:15 +0000 To: freebsd-stable@FreeBSD.ORG Message-Id: From: Pete French Date: Tue, 14 Mar 2006 12:41:15 +0000 Cc: Subject: Cannot boot 6.1-PRERELEASE in SMP mode X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 12:41:17 -0000 I have an MSI K8D Master, wth an Opteron 242 installed, on which I have been happily running 6.0-RELEASE. I did have one problem wuth the board, which was that if I had ACPI enabled then the operating system would not boot, it froze at the point where it waited for the SCSI devices to settle. I got round this by disabling ACPI in loader.conf and it works fine. A couple of days ago I installed a second Opteron 242 in the other socket to build an SMP machine. The second processor is recognised by the BIOS - and I have also moved half the memory to be attached to the second processor. The BIOS still shows 1GB so I am pretty confident the 2nd processor works. Swapping the processors also works, so I know the chips are good. But FreeBSD will not boot SMP with the second processor installed. It behaves exactly as it did with a single processor and ACPI enabled - i.e. it stops at the 'Waiting for SCSI devices to settle" point and does not get beyond this. I have two SCSI controllers installed - a Compaq 5304 RAID controller and an Adaptec 29160. The system boots from the Adaptec. I do have ATAPICAM compiled in to the kernel, but I get the same result with generic SMP. I have upgraded the machine to 6.1-PRERELEASE and I still get the same problem. Does anybody have any ideas about setting about debugging this ? The motherboard has been flashed to the latest BIOS and I am running i386 not amd64 on the board. help! -pcf. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 13:02:49 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDE5416A400; Tue, 14 Mar 2006 13:02:49 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (ll-227.216.82.212.sovam.net.ua [212.82.216.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F9BD43D49; Tue, 14 Mar 2006 13:02:48 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.3/8.13.3) with ESMTP id k2ED2g2v039092 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 15:02:42 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k2ED2gYH029957; Tue, 14 Mar 2006 15:02:42 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4/Submit) id k2ED2gXJ029955; Tue, 14 Mar 2006 15:02:42 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 14 Mar 2006 15:02:42 +0200 From: Kostik Belousov To: David Xu , freebsd-stable@freebsd.org, Martin , bug-followup@freebsd.org Message-ID: <20060314130242.GN37572@deviant.kiev.zoral.com.ua> References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <200603140744.34246.davidxu@freebsd.org> <4416705A.50708@nurfuerspam.de> <200603141641.32705.davidxu@freebsd.org> <20060314120153.GL37572@deviant.kiev.zoral.com.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qSHHer9gQ0dtepKr" Content-Disposition: inline In-Reply-To: <20060314120153.GL37572@deviant.kiev.zoral.com.ua> User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 on fw.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on fw.zoral.com.ua Cc: Subject: Re: [patch] Re: kern/94278: Crash with FIFOs and ktrace X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 13:02:50 -0000 --qSHHer9gQ0dtepKr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sorry for garbled patch. I do not know why mutt decided to encode some "=" as =3D. Index: compat/linux/linux_misc.c =================================================================== RCS file: /usr/local/arch/ncvs/src/sys/compat/linux/linux_misc.c,v retrieving revision 1.172 diff -u -r1.172 linux_misc.c --- compat/linux/linux_misc.c 28 Dec 2005 07:08:54 -0000 1.172 +++ compat/linux/linux_misc.c 14 Mar 2006 11:45:57 -0000 @@ -310,6 +310,21 @@ * XXX: This should use vn_open() so that it is properly authorized, * and to reduce code redundancy all over the place here. */ + if (vp->v_type == VLNK) { + error = EMLINK; + goto cleanup; + } + if (vp->v_type == VSOCK) { + error = EOPNOTSUPP; + goto cleanup; + } + if (vp->v_type == VFIFO) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error = EOPNOTSUPP; + goto cleanup; + } #ifdef MAC error = mac_check_vnode_open(td->td_ucred, vp, FREAD); if (error) Index: fs/fifofs/fifo_vnops.c =================================================================== RCS file: /usr/local/arch/ncvs/src/sys/fs/fifofs/fifo_vnops.c,v retrieving revision 1.132 diff -u -r1.132 fifo_vnops.c --- fs/fifofs/fifo_vnops.c 1 Oct 2005 20:15:41 -0000 1.132 +++ fs/fifofs/fifo_vnops.c 14 Mar 2006 11:46:07 -0000 @@ -168,6 +168,7 @@ int a_mode; struct ucred *a_cred; struct thread *a_td; + int a_fdidx; } */ *ap; { struct vnode *vp = ap->a_vp; Index: kern/vfs_syscalls.c =================================================================== RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_syscalls.c,v retrieving revision 1.411 diff -u -r1.411 vfs_syscalls.c --- kern/vfs_syscalls.c 4 Mar 2006 00:09:09 -0000 1.411 +++ kern/vfs_syscalls.c 14 Mar 2006 11:46:10 -0000 @@ -4101,6 +4101,13 @@ error = EOPNOTSUPP; goto bad; } + if (vp->v_type == VFIFO) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error = EOPNOTSUPP; + goto bad; + } mode = 0; if (fmode & (FWRITE | O_TRUNC)) { if (vp->v_type == VDIR) { Index: kern/vfs_vnops.c =================================================================== RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_vnops.c,v retrieving revision 1.238 diff -u -r1.238 vfs_vnops.c --- kern/vfs_vnops.c 11 Mar 2006 17:14:05 -0000 1.238 +++ kern/vfs_vnops.c 14 Mar 2006 11:46:10 -0000 @@ -194,6 +194,13 @@ error = EOPNOTSUPP; goto bad; } + if ((vp->v_type == VFIFO) && (fdidx < 0)) { + /* Due to way fifo works (by overloading f_ops), + * tricking kernel into write to the fifo leads to + * panic. Make a band-aid to filter the case. */ + error = EOPNOTSUPP; + goto bad; + } mode = 0; if (fmode & (FWRITE | O_TRUNC)) { if (vp->v_type == VDIR) { --qSHHer9gQ0dtepKr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFr7vC3+MBN1Mb4gRAh9JAJsEEgDWtQU4mG+fcV+hp/VcXKmp/QCfUntI XiXFoulphhvY5fn8XGoLCTM= =KV3e -----END PGP SIGNATURE----- --qSHHer9gQ0dtepKr-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 13:17:56 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E274716A420; Tue, 14 Mar 2006 13:17:55 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EEF743D45; Tue, 14 Mar 2006 13:17:55 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from localhost.my.domain (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2EDHrWv073328; Tue, 14 Mar 2006 13:17:55 GMT (envelope-from davidxu@freebsd.org) From: David Xu To: freebsd-stable@freebsd.org Date: Tue, 14 Mar 2006 21:17:49 +0800 User-Agent: KMail/1.8.2 References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <20060314120153.GL37572@deviant.kiev.zoral.com.ua> <20060314130242.GN37572@deviant.kiev.zoral.com.ua> In-Reply-To: <20060314130242.GN37572@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603142117.49739.davidxu@freebsd.org> Cc: Kostik Belousov , bug-followup@freebsd.org, Martin Subject: Re: [patch] Re: kern/94278: Crash with FIFOs and ktrace X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 13:17:56 -0000 On Tuesday 14 March 2006 21:02, Kostik Belousov wrote: > Sorry for garbled patch. I do not know why mutt decided to encode > some "=" as =3D. > > > Index: compat/linux/linux_misc.c > =================================================================== > RCS file: /usr/local/arch/ncvs/src/sys/compat/linux/linux_misc.c,v > retrieving revision 1.172 > diff -u -r1.172 linux_misc.c > --- compat/linux/linux_misc.c 28 Dec 2005 07:08:54 -0000 1.172 > +++ compat/linux/linux_misc.c 14 Mar 2006 11:45:57 -0000 > @@ -310,6 +310,21 @@ > * XXX: This should use vn_open() so that it is properly authorized, > * and to reduce code redundancy all over the place here. > */ > + if (vp->v_type == VLNK) { > + error = EMLINK; > + goto cleanup; > + } > + if (vp->v_type == VSOCK) { > + error = EOPNOTSUPP; > + goto cleanup; > + } > + if (vp->v_type == VFIFO) { > + /* Due to way fifo works (by overloading f_ops), > + * tricking kernel into write to the fifo leads to > + * panic. Make a band-aid to filter the case. */ > + error = EOPNOTSUPP; > + goto cleanup; > + } > #ifdef MAC > error = mac_check_vnode_open(td->td_ucred, vp, FREAD); > if (error) > Index: fs/fifofs/fifo_vnops.c > =================================================================== > RCS file: /usr/local/arch/ncvs/src/sys/fs/fifofs/fifo_vnops.c,v > retrieving revision 1.132 > diff -u -r1.132 fifo_vnops.c > --- fs/fifofs/fifo_vnops.c 1 Oct 2005 20:15:41 -0000 1.132 > +++ fs/fifofs/fifo_vnops.c 14 Mar 2006 11:46:07 -0000 > @@ -168,6 +168,7 @@ > int a_mode; > struct ucred *a_cred; > struct thread *a_td; > + int a_fdidx; > } */ *ap; > { > struct vnode *vp = ap->a_vp; > Index: kern/vfs_syscalls.c > =================================================================== > RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_syscalls.c,v > retrieving revision 1.411 > diff -u -r1.411 vfs_syscalls.c > --- kern/vfs_syscalls.c 4 Mar 2006 00:09:09 -0000 1.411 > +++ kern/vfs_syscalls.c 14 Mar 2006 11:46:10 -0000 > @@ -4101,6 +4101,13 @@ > error = EOPNOTSUPP; > goto bad; > } > + if (vp->v_type == VFIFO) { > + /* Due to way fifo works (by overloading f_ops), > + * tricking kernel into write to the fifo leads to > + * panic. Make a band-aid to filter the case. */ > + error = EOPNOTSUPP; > + goto bad; > + } > mode = 0; > if (fmode & (FWRITE | O_TRUNC)) { > if (vp->v_type == VDIR) { > Index: kern/vfs_vnops.c > =================================================================== > RCS file: /usr/local/arch/ncvs/src/sys/kern/vfs_vnops.c,v > retrieving revision 1.238 > diff -u -r1.238 vfs_vnops.c > --- kern/vfs_vnops.c 11 Mar 2006 17:14:05 -0000 1.238 > +++ kern/vfs_vnops.c 14 Mar 2006 11:46:10 -0000 > @@ -194,6 +194,13 @@ > error = EOPNOTSUPP; > goto bad; > } > + if ((vp->v_type == VFIFO) && (fdidx < 0)) { > + /* Due to way fifo works (by overloading f_ops), > + * tricking kernel into write to the fifo leads to > + * panic. Make a band-aid to filter the case. */ > + error = EOPNOTSUPP; > + goto bad; > + } > mode = 0; > if (fmode & (FWRITE | O_TRUNC)) { > if (vp->v_type == VDIR) { > I know, someone will work out such a messy patch, but is it reasonable ? why does not the fifi code suddenly work with well defined vnode interface ? why did someone want to break the well defined FILE->vnode->fs->device layers ? sigh. David Xu From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 13:32:11 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C60E16A41F for ; Tue, 14 Mar 2006 13:32:11 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh2.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DE9B43D46 for ; Tue, 14 Mar 2006 13:32:10 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh2.centtech.com (8.13.1/8.13.1) with ESMTP id k2EDW923072644; Tue, 14 Mar 2006 07:32:09 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <4416C5D6.3020501@centtech.com> Date: Tue, 14 Mar 2006 07:32:06 -0600 From: Eric Anderson User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: Uwe Doering References: <4415E8BB.1080602@centtech.com> <441684F3.8030401@geminix.org> In-Reply-To: <441684F3.8030401@geminix.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1329/Mon Mar 13 18:22:03 2006 on mh2.centtech.com X-Virus-Status: Clean Cc: freebsd-stable@freebsd.org Subject: Re: panic: ffs_valloc: dup alloc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 13:32:11 -0000 Uwe Doering wrote: > Eric Anderson wrote: >> I get the above panic after nfs clients attach to this nfs server and >> being read/write ops on it after an unclean shutdown. I've fsck'ed >> the fs, and it marks it as clean, but I get this every time. It's an >> NFS share of a GEOM stripe (about 2TB). >> mode = 0100600, inum = 58456203, fs = /mnt >> panic: ffs_valloc: dup alloc > > Do you happen to have disk mirroring on this server (RAID 1)? At > work, on a workstation with RAID 1, we once had a case where after a > power failure fsck would succeed, but subsequently, when mounting and > using the partitions, the kernel still paniced because of a corrupt > filesystem. Repeatedly. > > This caused some major head scratching on our part until we figured > out what was happening. The mirrored disks had gone out of sync. For > performance reasons, a RAID 1 controller reads data from one disk > drive or the other, depending on which drive is less busy in that > particular moment. So while fsck was able to find and fix some > filesystem inconsistencies there were still some more left in disk > sectors it didn't access. > > The RAID controller we used turned out to have a verification mode > where it would scan the disks and re-synchronize them. Afterwards we > did another fsck run, and this fixed the remaining filesystem > inconsistencies. The kernel panics were gone. > > Now, with the information you've provided I can't tell whether these > findings apply to your case, but perhaps this story helps at least > others in a similar situation. I do have mirroring enabled on the OS drives, but this is happening with an external fiber channel array of SATA disks, striped using gstripe. Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 13:36:51 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4661A16A420 for ; Tue, 14 Mar 2006 13:36:51 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E803543DB1 for ; Tue, 14 Mar 2006 13:35:41 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh1.centtech.com (8.13.1/8.13.1) with ESMTP id k2EDZfEH071445; Tue, 14 Mar 2006 07:35:41 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <4416C6AA.5050200@centtech.com> Date: Tue, 14 Mar 2006 07:35:38 -0600 From: Eric Anderson User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: Mike Tancsa References: <4415E8BB.1080602@centtech.com> <6.2.3.4.0.20060313172933.1058dc30@64.7.153.2> In-Reply-To: <6.2.3.4.0.20060313172933.1058dc30@64.7.153.2> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1329/Mon Mar 13 18:22:03 2006 on mh1.centtech.com X-Virus-Status: Clean Cc: freebsd-stable@freebsd.org Subject: Re: panic: ffs_valloc: dup alloc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 13:36:51 -0000 Mike Tancsa wrote: > At 04:48 PM 13/03/2006, Eric Anderson wrote: >> I get the above panic after nfs clients attach to this nfs server and >> being >> I do have dumps from two crashes so far. >> This is FreeBSD-6.1-PRERELEASE from Friday-ish. > > Dont know if it was fixed or not, but there were a lot of VM changes > committed last night that might help. > > http://lists.freebsd.org/pipermail/freebsd-stable/2006-March/023526.html I just updated, and it still happens. More information for those interested: mode = 0100600, inum = 58456203, fs = /mnt panic: ffs_valloc: dup alloc #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) backtrace #0 doadump () at pcpu.h:165 #1 0xc064482f in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:399 #2 0xc0644b55 in panic (fmt=0xc0890967 "ffs_valloc: dup alloc") at /usr/src/sys/kern/kern_shutdown.c:555 #3 0xc077ee3c in ffs_valloc (pvp=0xc8eab440, mode=33152, cred=0xc8a91d80, vpp=0xe83a5824) at /usr/src/sys/ufs/ffs/ffs_alloc.c:945 #4 0xc07a5933 in ufs_makeinode (mode=33152, dvp=0xc8eab440, vpp=0xe83a5acc, cnp=0xe83a5ae0) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2165 #5 0xc07a2b0d in ufs_create (ap=0x0) at /usr/src/sys/ufs/ufs/ufs_vnops.c:171 #6 0xc082dc98 in VOP_CREATE_APV (vop=0x0, a=0xe83a5a18) at vnode_if.c:204 #7 0xc0737590 in nfsrv_create (nfsd=0xc8a91d00, slp=0xc8816700, td=0xc7d99780, mrq=0xe83a5c98) at vnode_if.h:111 #8 0xc0744e95 in nfssvc_nfsd (td=0x0) at /usr/src/sys/nfsserver/nfs_syscalls.c:472 #9 0xc0744688 in nfssvc (td=0xc7d99780, uap=0xe83a5d04) at /usr/src/sys/nfsserver/nfs_syscalls.c:181 #10 0xc081cd7f in syscall (frame= {tf_fs = 59, tf_es = 59, tf_ds = 59, tf_edi = 1, tf_esi = 0, tf_ebp = -1077941448, tf_isp = -398828188, tf_ebx = 4, tf_edx = 672385208, tf_ecx = 25, tf_eax = 155, tf_trapno = 12, tf_err = 2, tf_eip = 671840155, tf_cs = 51, tf_eflags = 662, tf_esp = -1077941476, tf_ss = 59}) at /usr/src/sys/i386/i386/trap.c:981 #11 0xc0809e8f in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:200 #12 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb) Maybe that helps somebody? Should I sent this to -current instead, since it appears this would happen under -current also, and possibly there is a larger base of people watching the list? Thanks! Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 13:41:53 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC2F816A420; Tue, 14 Mar 2006 13:41:53 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (ll-227.216.82.212.sovam.net.ua [212.82.216.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F1E043D6A; Tue, 14 Mar 2006 13:41:48 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.3/8.13.3) with ESMTP id k2EDfhaQ080415 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Mar 2006 15:41:43 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k2EDfhVF037683; Tue, 14 Mar 2006 15:41:43 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.4/8.13.4/Submit) id k2EDfgnI037678; Tue, 14 Mar 2006 15:41:42 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 14 Mar 2006 15:41:42 +0200 From: Kostik Belousov To: David Xu Message-ID: <20060314134142.GO37572@deviant.kiev.zoral.com.ua> References: <200603111140.k2BBerFh096411@freefall.freebsd.org> <20060314120153.GL37572@deviant.kiev.zoral.com.ua> <20060314130242.GN37572@deviant.kiev.zoral.com.ua> <200603142117.49739.davidxu@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="l8yJEXo8J9fv7OFY" Content-Disposition: inline In-Reply-To: <200603142117.49739.davidxu@freebsd.org> User-Agent: Mutt/1.4.2.1i X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on fw.zoral.com.ua Cc: Kostik Belousov , freebsd-stable@freebsd.org, bug-followup@freebsd.org, Martin Subject: Re: [patch] Re: kern/94278: Crash with FIFOs and ktrace X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 13:41:53 -0000 --l8yJEXo8J9fv7OFY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 14, 2006 at 09:17:49PM +0800, David Xu wrote: > I know, someone will work out such a messy patch, but is it reasonable ? > why does not the fifi code suddenly work with well defined vnode interfac= e ? > why did someone want to break the well defined FILE->vnode->fs->device > layers ? sigh. =46rom CVS history for sys/fs/fifofs//fifo_vnops.c: Revision 1.105 Wed Nov 17 07:30:02 2004 UTC (15 months, 3 weeks ago) by phk Make vnode bypass for fifos (read, write, poll) mandatory. Revision 1.104 Mon Nov 15 14:51:44 2004 UTC (15 months, 3 weeks ago) by phk Add file ops to fifofs so that we can bypass vnodes (and Giant) for the heavy-duty operations (read, write, poll/select, kqueue). Disabled for now, enable with "vfs.fifofs.fops=3D1" in loader.conf. --l8yJEXo8J9fv7OFY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFsgVC3+MBN1Mb4gRAu4tAJ9IsGeclPEL8ZUnxCmtlI1RdGzu2gCcDdby z8Rzv8QCAVEBQJUIKFQ0ym4= =MmVR -----END PGP SIGNATURE----- --l8yJEXo8J9fv7OFY-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 15:06:35 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F76016A401 for ; Tue, 14 Mar 2006 15:06:35 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC69543D53 for ; Tue, 14 Mar 2006 15:06:31 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (xklmrw@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k2EF63fc030625 for ; Tue, 14 Mar 2006 16:06:26 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k2EF63ur030624; Tue, 14 Mar 2006 16:06:03 +0100 (CET) (envelope-from olli) Date: Tue, 14 Mar 2006 16:06:03 +0100 (CET) Message-Id: <200603141506.k2EF63ur030624@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG In-Reply-To: X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Tue, 14 Mar 2006 16:06:26 +0100 (CET) Cc: Subject: Re: When is the 6.1 branch going to be cut? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 15:06:35 -0000 Nikolas Britton wrote: > M. Warner Losh wrote: > > I think we're going to see another BETA (BETA4) shortly. The hold up > > is that there's still enough problems that need to be fixed that the > > release isn't near enough to do the branch. [...] > > Thanks for the status update, take all the time you need... All I ask > is you keep the community in the loop. > > Have you thought about putting up a page on the website where FreeBSD > committers and core members can easily post news, such as this, in an > informal and/or casual manner?... wiki, blog, etc. Actually, an RSS feed would be perfect for that kind of information. (That doesn't rule out a wiki or blog, of course, but an RSS feed would be a nice way to distribute the information in a concise, efficient and easy to digest way.) Yes, I know that there's already a "news" RSS feed on the FreeBSD site, but it doesn't seem to contain that kind of information. Just my 2 cents. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "C++ is the only current language making COBOL look good." -- Bertrand Meyer From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 15:08:16 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F37816A41F for ; Tue, 14 Mar 2006 15:08:16 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id D659B43D48 for ; Tue, 14 Mar 2006 15:07:46 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 65892B80C; Tue, 14 Mar 2006 10:07:43 -0500 (EST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Tue, 14 Mar 2006 10:07:42 -0500 To: Pete French X-Mailer: Apple Mail (2.746.2) Cc: freebsd-stable@freebsd.org Subject: Re: Cannot boot 6.1-PRERELEASE in SMP mode X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 15:08:16 -0000 On Mar 14, 2006, at 7:41 AM, Pete French wrote: > But FreeBSD will not boot SMP with the second processor installed. > It behaves > exactly as it did with a single processor and ACPI enabled - i.e. > it stops > at the 'Waiting for SCSI devices to settle" point and does not get > beyond > this. when you boot, at the FreeBSD menu, break to the command prompt and type this: debug.acpi.disabled=timer boot and see if it works. I have one system on which 5.4 works flawlessly, but anything from 6.0-REL and up requires I disable the ACPI timer. If it works, just add the above line to your /boot/loader.conf file to make it stick across reboots. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 15:26:51 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66F6F16A401 for ; Tue, 14 Mar 2006 15:26:51 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from mail.ticketswitch.com (mail.ticketswitch.com [194.200.93.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB2F43D46 for ; Tue, 14 Mar 2006 15:26:50 +0000 (GMT) (envelope-from petefrench@ticketswitch.com) Received: from [172.16.1.6] (helo=dilbert.firstcallgroup.co.uk) by mail.ticketswitch.com with esmtp (Exim 4.52 (FreeBSD)) id 1FJBQ9-000KoW-Ha; Tue, 14 Mar 2006 15:26:49 +0000 Received: from petefrench by dilbert.firstcallgroup.co.uk with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FJBQ9-000Ci1-EL; Tue, 14 Mar 2006 15:26:49 +0000 To: vivek@khera.org In-Reply-To: Message-Id: From: Pete French Date: Tue, 14 Mar 2006 15:26:49 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: Cannot boot 6.1-PRERELEASE in SMP mode X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 15:26:51 -0000 > when you boot, at the FreeBSD menu, break to the command prompt and > type this: > > debug.acpi.disabled=timer > boot O.K., I will give this a try - that might fix theoriginal problem with ACPI booting too I guess ? Cant try this for a few hours though as the machine is remote, thanks for the fast response. -pete. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 16:30:51 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7437C16A401; Tue, 14 Mar 2006 16:30:51 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B3B043D55; Tue, 14 Mar 2006 16:30:42 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.4/8.13.4) with ESMTP id k2EGUfel013657; Tue, 14 Mar 2006 11:30:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.4/8.13.4) with ESMTP id k2EGUwoG037046; Tue, 14 Mar 2006 11:30:58 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 8AE1B7304D; Tue, 14 Mar 2006 11:30:41 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060314163041.8AE1B7304D@freebsd-current.sentex.ca> Date: Tue, 14 Mar 2006 11:30:41 -0500 (EST) X-Virus-Scanned: ClamAV version 0.87.1, clamav-milter version 0.87 on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.51 on 64.7.153.18 Cc: Subject: [releng_6 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 16:30:51 -0000 TB --- 2006-03-14 15:04:30 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-03-14 15:04:30 - starting RELENG_6 tinderbox run for sparc64/sparc64 TB --- 2006-03-14 15:04:30 - cleaning the object tree TB --- 2006-03-14 15:04:52 - checking out the source tree TB --- 2006-03-14 15:04:52 - cd /tinderbox/RELENG_6/sparc64/sparc64 TB --- 2006-03-14 15:04:52 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src TB --- 2006-03-14 15:14:42 - building world (CFLAGS=-O2 -pipe) TB --- 2006-03-14 15:14:42 - cd /src TB --- 2006-03-14 15:14:42 - /usr/bin/make -B buildworld >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything TB --- 2006-03-14 16:19:12 - generating LINT kernel config TB --- 2006-03-14 16:19:12 - cd /src/sys/sparc64/conf TB --- 2006-03-14 16:19:12 - /usr/bin/make -B LINT TB --- 2006-03-14 16:19:12 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-03-14 16:19:12 - cd /src TB --- 2006-03-14 16:19:12 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 14 16:19:12 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] db_trace.o(.text+0x714): In function `stack_save': : undefined reference to `tl_text_begin' db_trace.o(.text+0x718): In function `stack_save': : undefined reference to `tl_text_end' db_trace.o(.text+0x71c): In function `stack_save': : undefined reference to `tl_text_begin' db_trace.o(.text+0x724): In function `stack_save': : undefined reference to `tl_text_end' *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-03-14 16:30:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-03-14 16:30:41 - ERROR: failed to build lint kernel TB --- 2006-03-14 16:30:41 - tinderbox aborted TB --- 0.80 user 3.77 system 5170.56 real From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 16:30:54 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF71A16A420 for ; Tue, 14 Mar 2006 16:30:54 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4216643D73 for ; Tue, 14 Mar 2006 16:30:49 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (kjofyb@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k2EGUgpc053169 for ; Tue, 14 Mar 2006 17:30:47 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k2EGUgDe053168; Tue, 14 Mar 2006 17:30:42 +0100 (CET) (envelope-from olli) Date: Tue, 14 Mar 2006 17:30:42 +0100 (CET) Message-Id: <200603141630.k2EGUgDe053168@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Tue, 14 Mar 2006 17:30:48 +0100 (CET) Cc: Subject: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 16:30:55 -0000 Hi, I'll be getting a few new machines for a customer soon. They will be SMP (dual processor Pentium-IV) with 4 GB RAM, and I plan to install FreeBSD/i386 6-stable on them. What's the current status of running with that amount of memory? I'm not completely up to date in that regard, and searching the archive didn't get any definitive answers. I remember that there were several issues in the past, but I have no idea if they still exist. They required fiddling with VM_KMEM_SIZE_MAX, or KVA_PAGES or similar things. Will FreeBSD/i386 6-stable run on a 4 GB machine out of the box? Do I have to apply special tuning (kernel config or sysctl or whatever)? Using PAE shouldn't be necessary, I assume. It would also be interesting to know if 4-stable (which is currently running on the predecessor machines) would run without problems on those new 4 GB ones, too. Thanks in advance for any information! Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "To this day, many C programmers believe that 'strong typing' just means pounding extra hard on the keyboard." -- Peter van der Linden From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 16:47:03 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43B6C16A401 for ; Tue, 14 Mar 2006 16:47:03 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFA6743D45 for ; Tue, 14 Mar 2006 16:47:02 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh1.centtech.com (8.13.1/8.13.1) with ESMTP id k2EGl29I075554 for ; Tue, 14 Mar 2006 10:47:02 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <4416F383.9050409@centtech.com> Date: Tue, 14 Mar 2006 10:46:59 -0600 From: Eric Anderson User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> In-Reply-To: <200603141630.k2EGUgDe053168@lurza.secnetix.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1329/Mon Mar 13 18:22:03 2006 on mh1.centtech.com X-Virus-Status: Clean Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 16:47:03 -0000 Oliver Fromme wrote: > Hi, > > I'll be getting a few new machines for a customer soon. > They will be SMP (dual processor Pentium-IV) with 4 GB RAM, > and I plan to install FreeBSD/i386 6-stable on them. > > What's the current status of running with that amount of > memory? I'm not completely up to date in that regard, and > searching the archive didn't get any definitive answers. > I remember that there were several issues in the past, but > I have no idea if they still exist. They required fiddling > with VM_KMEM_SIZE_MAX, or KVA_PAGES or similar things. > > Will FreeBSD/i386 6-stable run on a 4 GB machine out of the > box? Do I have to apply special tuning (kernel config or > sysctl or whatever)? Using PAE shouldn't be necessary, I > assume. > > It would also be interesting to know if 4-stable (which is > currently running on the predecessor machines) would run > without problems on those new 4 GB ones, too. > > Thanks in advance for any information! > The base install, running GENERIC will only use 3GB. I believe you would either need to use the PAE kernel option, or use the 64bit version of FreeBSD on a corresponding 64bit hardware. Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 17:00:28 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E02916A400 for ; Tue, 14 Mar 2006 17:00:27 +0000 (UTC) (envelope-from agava-develop@yandex.ru) Received: from smtp2.yandex.ru (smtp2.yandex.ru [213.180.200.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24C143D46 for ; Tue, 14 Mar 2006 17:00:26 +0000 (GMT) (envelope-from agava-develop@yandex.ru) Received: from guns.agava.net ([81.200.14.42]:46308 "EHLO [192.168.4.194]" smtp-auth: "agava-develop" TLS-CIPHER: TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S3376118AbWCNRAX (ORCPT ); Tue, 14 Mar 2006 20:00:23 +0300 Message-ID: <4416F6A5.1060908@yandex.ru> Date: Tue, 14 Mar 2006 20:00:21 +0300 From: Ivan Kolosovskiy User-Agent: Thunderbird 1.5 (X11/20060215) MIME-Version: 1.0 To: Eric Anderson References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> <4416F383.9050409@centtech.com> In-Reply-To: <4416F383.9050409@centtech.com> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 17:00:28 -0000 Eric Anderson wrote: > > The base install, running GENERIC will only use 3GB. :[ ]. Why so?! How make FreeBSD to use 4GB? it is possible? From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 17:05:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 231D716A546 for ; Tue, 14 Mar 2006 17:05:37 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB4F543D45 for ; Tue, 14 Mar 2006 17:05:36 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [10.177.171.220] (neutrino.centtech.com [10.177.171.220]) by mh1.centtech.com (8.13.1/8.13.1) with ESMTP id k2EH5aDJ076005; Tue, 14 Mar 2006 11:05:36 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <4416F7DD.3050408@centtech.com> Date: Tue, 14 Mar 2006 11:05:33 -0600 From: Eric Anderson User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: Ivan Kolosovskiy References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> <4416F383.9050409@centtech.com> <4416F6A5.1060908@yandex.ru> In-Reply-To: <4416F6A5.1060908@yandex.ru> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1329/Mon Mar 13 18:22:03 2006 on mh1.centtech.com X-Virus-Status: Clean Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 17:05:37 -0000 Ivan Kolosovskiy wrote: > Eric Anderson wrote: >> >> The base install, running GENERIC will only use 3GB. > :[ ]. Why so?! How make FreeBSD to use 4GB? it is possible? > > Sure, as the rest of my email said. man pae Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 17:52:06 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F55C16A420 for ; Tue, 14 Mar 2006 17:52:06 +0000 (UTC) (envelope-from atanas@asd.aplus.net) Received: from pro20.abac.com (pro20.abac.com [66.226.64.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F1F43D45 for ; Tue, 14 Mar 2006 17:52:05 +0000 (GMT) (envelope-from atanas@asd.aplus.net) Received: from [216.55.129.41] (asd0.aplus.net [216.55.129.41]) (authenticated bits=0) by pro20.abac.com (8.13.4/8.13.4) with ESMTP id k2EHq3jQ082059 for ; Tue, 14 Mar 2006 09:52:03 -0800 (PST) (envelope-from atanas@asd.aplus.net) Message-ID: <44170327.7030702@asd.aplus.net> Date: Tue, 14 Mar 2006 09:53:43 -0800 From: Atanas User-Agent: Thunderbird 1.5 (X11/20051201) MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> In-Reply-To: <200603141630.k2EGUgDe053168@lurza.secnetix.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 1.47 (SPF_SOFTFAIL) Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 17:52:06 -0000 Oliver Fromme said the following on 03/14/06 08:30: > > Will FreeBSD/i386 6-stable run on a 4 GB machine out of the > box? Do I have to apply special tuning (kernel config or > sysctl or whatever)? Using PAE shouldn't be necessary, I > assume. > All it depends is what size of memory address space the motherboard manufacturer decided to reserve for PCI devices. I've seen boards with PCI window size ranging from 256 to 1024MB. In order to utilize the full amount of RAM you would need PAE. > It would also be interesting to know if 4-stable (which is > currently running on the predecessor machines) would run > without problems on those new 4 GB ones, too. > For 4-STABLE you would need to adjust KVA_PAGES. Otherwise, depending on the load and the memory usage, you might get random crashes. Or at least this is what I experienced when upgrading RAM on a bunch of 4.x based machines. Regards, Atanas From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 18:38:23 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3B2816A401 for ; Tue, 14 Mar 2006 18:38:22 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id F3FA143D45 for ; Tue, 14 Mar 2006 18:38:20 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 14 Mar 2006 18:38:17 -0000 Received: from p54A7EA76.dip.t-dialin.net (EHLO [192.168.0.12]) [84.167.234.118] by mail.gmx.net (mp037) with SMTP; 14 Mar 2006 19:38:17 +0100 X-Authenticated: #5465401 Message-ID: <44170D84.5050302@gmx.de> Date: Tue, 14 Mar 2006 19:37:56 +0100 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5 (X11/20060128) MIME-Version: 1.0 To: Kris Kennaway References: <4416893B.5020202@gmx.de> <20060314170218.GB37864@xor.obsecurity.org> In-Reply-To: <20060314170218.GB37864@xor.obsecurity.org> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig673136D50E73B12EAF3568CA" X-Y-GMX-Trusted: 0 Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org Subject: Re: cvsup - TreeList failed: Network write failure: Connection closed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 18:38:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig673136D50E73B12EAF3568CA Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable That would mean that ipw is broken. I never had such problems when I was using 5-stable with ipw from the ports. Kris Kennaway wrote: > On Tue, Mar 14, 2006 at 10:13:31AM +0100, [LoN]Kamikaze wrote: >> When using cvsup to update my sources over a wireless connection I oft= en >> get the error message: >> >> TreeList failed: Network write failure: Connection closed >> >> after a couple of seconds. This doesn't occur when I am connected >> through a cable ethernet device. >=20 > OK, this just means your system was unable to maintain the network > connection. >=20 > Kris --------------enig673136D50E73B12EAF3568CA Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFw2MfMDIb41/+S0RAvJOAJ0QT7vMUgdBPTE4s1cvWYHDnvIDggCeLyEN eJ/b6U2weRGRgqdqFjq5NJA= =iqEJ -----END PGP SIGNATURE----- --------------enig673136D50E73B12EAF3568CA-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 18:39:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5325C16A427; Tue, 14 Mar 2006 18:39:37 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1505543D45; Tue, 14 Mar 2006 18:39:37 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 000D91A4DF3; Tue, 14 Mar 2006 10:39:36 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 56CF251A83; Tue, 14 Mar 2006 13:39:36 -0500 (EST) Date: Tue, 14 Mar 2006 13:39:36 -0500 From: Kris Kennaway To: "[LoN]Kamikaze" Message-ID: <20060314183936.GA40963@xor.obsecurity.org> References: <4416893B.5020202@gmx.de> <20060314170218.GB37864@xor.obsecurity.org> <44170D84.5050302@gmx.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <44170D84.5050302@gmx.de> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: cvsup - TreeList failed: Network write failure: Connection closed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 18:39:37 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Mar 14, 2006 at 07:37:56PM +0100, [LoN]Kamikaze wrote: > That would mean that ipw is broken. I never had such problems when I was > using 5-stable with ipw from the ports. OK. Kris --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEFw3nWry0BWjoQKURAhFkAJ0Uu4B4siu6urBvFpHPI+PrjtC+jACfTOsB H7WQ8AxmvJbtPRy8EVymCFU= =KD0z -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 19:39:30 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8792816A41F for ; Tue, 14 Mar 2006 19:39:30 +0000 (UTC) (envelope-from amon@sockar.homeip.net) Received: from sockar.homeip.net (tourist.net8.nerim.net [213.41.176.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24A643D45 for ; Tue, 14 Mar 2006 19:39:29 +0000 (GMT) (envelope-from amon@sockar.homeip.net) Received: from sockar.homeip.net (localhost [127.0.0.1]) by sockar.homeip.net (8.13.3/8.13.3) with ESMTP id k2EJUvtW032701 for ; Tue, 14 Mar 2006 20:30:57 +0100 (CET) (envelope-from amon@sockar.homeip.net) Received: (from amon@localhost) by sockar.homeip.net (8.13.3/8.13.3/Submit) id k2EJUvCB032700 for freebsd-stable@freebsd.org; Tue, 14 Mar 2006 20:30:57 +0100 (CET) (envelope-from amon) Date: Tue, 14 Mar 2006 20:30:57 +0100 From: Herve Boulouis To: freebsd-stable@freebsd.org Message-ID: <20060314193057.GB17399@ra.aabs> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: Question on protocol drain routines X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 19:39:30 -0000 Hi, I'm starting to deploy 6.0-STABLE (from mid january) to progressively replace all the 4.9 servers we have here and I'm seeing a curious thing : On all 6.0 which get moderate to high network activity (ie webmail to inn), I see that the 'calls to protocol drain routines' statistic given by netstat -m is non zero : webmail box : archimonde:~# netstat -m 234/1641/1875 mbufs in use (current/cache/total) 201/557/758/25280 mbuf clusters in use (current/cache/total/max) 0/50/6576 sfbufs in use (current/peak/max) 460K/1524K/1984K bytes allocated to network (current/cache/total) 0 requests for sfbufs denied 0 requests for sfbufs delayed 0 requests for I/O initiated by sendfile 29 calls to protocol drain routines archimonde:~# uptime 8:26PM up 42 days, 15:07, 2 users, load averages: 0.00, 0.01, 0.02 inn box : ridley:~# netstat -m 886/719/1605 mbufs in use (current/cache/total) 774/494/1268/25600 mbuf clusters in use (current/cache/total/max) 86/728/6656 sfbufs in use (current/peak/max) 1769K/1167K/2937K bytes allocated to network (current/cache/total) 0 requests for sfbufs denied 0 requests for sfbufs delayed 1320 requests for I/O initiated by sendfile 95779 calls to protocol drain routines ridley:~# uptime 8:26PM up 20 days, 5:06, 2 users, load averages: 0.26, 0.24, 0.18 I have NBUF=0 and NMBCLUSTERS=8192 in all my kernels. (Is this wrong on 6.0 ?) I have taken a look at the sources and it seems that in 6.0 the mb_reclaim() handler is called on each iteration of vm_pageout() whereas in 4.9 the m_reclaim() function was only called when mbuf exhaustion occured so I suspect this is why I see the mbstat.m_drain counter != 0 in 6.0 and not in 4.9. My question is : does this regular draining have effects on network performance ? (got performance problems with the inn box that triggered this investigation) -- Herve Boulouis From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 20:35:44 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C0216A41F for ; Tue, 14 Mar 2006 20:35:44 +0000 (UTC) (envelope-from dalroi@solfertje.student.utwente.nl) Received: from solfertje.student.utwente.nl (solfertje.student.utwente.nl [130.89.167.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7901C43D45 for ; Tue, 14 Mar 2006 20:35:44 +0000 (GMT) (envelope-from dalroi@solfertje.student.utwente.nl) Received: from [10.236.150.4] (hollewijn.internal [10.236.150.4]) by solfertje.student.utwente.nl (Postfix) with ESMTP id 453577D74; Tue, 14 Mar 2006 21:47:03 +0100 (CET) In-Reply-To: <4415742B.8050205@mac.com> References: <74B9D1C5-5786-475B-99E6-18384B071EFB@solfertje.student.utwente.nl> <4415742B.8050205@mac.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Alban Date: Tue, 14 Mar 2006 21:35:41 +0100 To: Chuck Swiger X-Mailer: Apple Mail (2.746.2) Cc: freebsd-stable Subject: Re: Segfaults from gcc, awk and Zend; advice needed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 20:35:44 -0000 On Mar 13, 2006, at 2:31 PM, Chuck Swiger wrote: > Alban wrote: >> For some reason I'm getting more or less random segfaults compiling >> kernels, world or PHP5 on BETA-3 (Python and perl went ok). So far I >> haven't succeeded building a fresh kernel or world. This system is an >> Athlon XP with 1MB RAM and 4GB swap, compiling is done in the usual >> places in /usr, which is a set of two gstriped partitions. Dmesg >> attached. > > If the crashes aren't repeatable (ie, the compiler segfaults in > different places > if you re-do the make), that's an almost sure sign of hardware > problems like > overheating. Looks like you were right. After setting hw.acpi.cx_lowest to C2 I was able to finally compile a custom kernel. After vacuuming my CPU fan and putting the ventilator in a better position the buildworld succeeded at the 1st pass. Thanks for putting me on the right track. -- Alban Hertroys "If you can't see the forest through the trees, cut the trees and you'll see there is no forest" From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 21:20:29 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A26716A401 for ; Tue, 14 Mar 2006 21:20:29 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from mail.ticketswitch.com (mail.ticketswitch.com [194.200.93.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB6643D46 for ; Tue, 14 Mar 2006 21:20:28 +0000 (GMT) (envelope-from petefrench@ticketswitch.com) Received: from [172.16.1.6] (helo=dilbert.firstcallgroup.co.uk) by mail.ticketswitch.com with esmtp (Exim 4.52 (FreeBSD)) id 1FJGwK-0001QP-P4; Tue, 14 Mar 2006 21:20:24 +0000 Received: from petefrench by dilbert.firstcallgroup.co.uk with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FJGwK-0005ng-Iq; Tue, 14 Mar 2006 21:20:24 +0000 To: vivek@khera.org In-Reply-To: Message-Id: From: Pete French Date: Tue, 14 Mar 2006 21:20:24 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: Cannot boot 6.1-PRERELEASE in SMP mode X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 21:20:29 -0000 > debug.acpi.disabled=timer > > and see if it works. I have one system on which 5.4 works > flawlessly, but anything from 6.0-REL and up requires I disable the > ACPI timer. Thanks - that does make it work with ACPI enabled, which is good. It still won't boot SMP however - and despite the fcat it gets stuck at the same point as it used to with ACPI I think it is a different problem. Booting verbose SMP gives nothing after the stick - whereas with the ACPI problem I used to get periodic "error 22" and "Unretryable Error" outputs. But having ACPI working is good :-) Shame about the SMP :-( -pete. PS: On a separate partition I have placed Windows 2000 and that sees both processors and runs SMP fine, so I am now more convinced than ever that this is a FreeBSD problem. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 22:17:27 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BC1F16A401 for ; Tue, 14 Mar 2006 22:17:27 +0000 (UTC) (envelope-from michael.grant@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E4643D48 for ; Tue, 14 Mar 2006 22:17:26 +0000 (GMT) (envelope-from michael.grant@gmail.com) Received: by nproxy.gmail.com with SMTP id q29so1188641nfc for ; Tue, 14 Mar 2006 14:17:25 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ufYVMsB0A3a3wtuyBtvjDBH3x+iFqWjmJ0qpNuYSeaaYYq2MxNK6ozWAJFV3DXgLRe/Bbkh6LpFHDppcAk4ZsQr7WbWDu88HOUZJGZXq41wHfchyhEdONfKXIQCk8er9wKCygU00Tjs1pbQ2Inx5yj02XFKieDW1S/uweAFK34I= Received: by 10.49.75.12 with SMTP id c12mr229790nfl; Tue, 14 Mar 2006 14:17:25 -0800 (PST) Received: by 10.48.157.15 with HTTP; Tue, 14 Mar 2006 14:17:24 -0800 (PST) Message-ID: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> Date: Tue, 14 Mar 2006 23:17:24 +0100 From: "Michael Grant" Sender: michael.grant@gmail.com To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 22:17:27 -0000 Can anyone tell me if/when the Adaptec AIC9410 SAS/SATA controller will be supported? Michael Grant From owner-freebsd-stable@FreeBSD.ORG Tue Mar 14 23:36:50 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35E9216A41F for ; Tue, 14 Mar 2006 23:36:50 +0000 (UTC) (envelope-from darren.pilgrim@bitfreak.org) Received: from mail.bitfreak.org (mail.bitfreak.org [65.75.198.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBB8C43D45 for ; Tue, 14 Mar 2006 23:36:49 +0000 (GMT) (envelope-from darren.pilgrim@bitfreak.org) Received: from [127.0.0.1] (mail.bitfreak.org [65.75.198.146]) by mail.bitfreak.org (Postfix) with ESMTP id 0DCB619F2C for ; Tue, 14 Mar 2006 15:36:46 -0800 (PST) Message-ID: <4417538D.5080305@bitfreak.org> Date: Tue, 14 Mar 2006 15:36:45 -0800 From: Darren Pilgrim User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: FreeBSD-Stable Post Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: How to make sshd not log invalid user login attempts? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 23:36:50 -0000 In 4.x, I can make sshd not log this noise by using the Deny/Allow Users/Groups options. In 6.x, the same configuration doesn't stop the logging, so my logs get overrun with thousands of "Failed password for invalid user" messages. What do I need to do to make sshd not log this information? From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 00:04:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B85F16A420 for ; Wed, 15 Mar 2006 00:04:00 +0000 (UTC) (envelope-from jamesoff@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02B2C43D5A for ; Wed, 15 Mar 2006 00:03:58 +0000 (GMT) (envelope-from jamesoff@gmail.com) Received: by xproxy.gmail.com with SMTP id i31so1157831wxd for ; Tue, 14 Mar 2006 16:03:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=dGE09lRWmHOWETtycqj8brUdGskklJS8nInl3DNNBNVLlqrqDDMEkXeLRK1MjEcYcdTqQQv42hJRwQdqWahDUJ3PAblIR6vYWuDL4ZMGF25xUSWlVitThxm06rPruYuyDKA26iudjlisZYrMjw0bDq7rzJesNonGGTQaIBsfekw= Received: by 10.70.53.6 with SMTP id b6mr1481945wxa; Tue, 14 Mar 2006 16:03:57 -0800 (PST) Received: by 10.70.95.17 with HTTP; Tue, 14 Mar 2006 16:03:57 -0800 (PST) Message-ID: <720051dc0603141603pda449a6n9dfb29fca8d9ddc5@mail.gmail.com> Date: Wed, 15 Mar 2006 00:03:57 +0000 From: "James Seward" To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: Still can't boot on 6.0-STABLE > Nov 2005 or 6.1-BETA X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 00:04:00 -0000 Hello folks, A while back (January) I posted to the list about a problem I had booting 6.0-STABLE built with sources after about November 2005 on my workstation. Since that point, and including (I have now discovered) 6.1-PRERELEASE (as my freshly built kernel identified itself just now), I can't boot. At the point where the kernel should mount my root fs and continue booting, it decides it can't see any disks other than fd0, and presents me with a "mountroot>" prompt. Looking through the scrollback, it correctly identifies my ata controllers earlier in the boot process. A boot -v (captured over serial) is available here: http://sakaki.jamesoff.net/~james/dmesg-broken.txt A successful boot is available here: http://sakaki.jamesoff.net/~james/dmesg-working.txt When I get to the mountroot> prompt, my IDE light is stuck on solid. At the time I initially reported this problem I was running amd64. I have since moved back to i386 (mainly for things like nvidia-driver and win32-codecs), but the problem persists :( My motherboard is an A8V-E Deluxe, and my disks are on both IDE and SATA; the IDE disk plays no role in my FreeBSD boot (it has WinXP on it). FreeBSD lives on my SATA drives. 5.3 and 5.4, as well as WinXP, have no problems with the disks. I'm not doing anything funky like RAID or geom. I did try posting a PR for this a while back, but it never even seemed to be recorded. If I'm sending this request the wrong way, please let me know! I'd love to help get this fixed so I can take advantage of the latest and greatest on this machine :) Thanks in advance, James From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 01:25:26 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAADB16A420 for ; Wed, 15 Mar 2006 01:25:26 +0000 (UTC) (envelope-from jeff@pugetpc.com) Received: from booyah.pugetpc.com (pugetpc.com [216.254.19.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD9F43D45 for ; Wed, 15 Mar 2006 01:25:26 +0000 (GMT) (envelope-from jeff@pugetpc.com) Received: from pctech ([192.168.24.104]) (authenticated bits=0) by booyah.pugetpc.com (8.13.4/8.13.4) with ESMTP id k2F1N58i095296 for ; Tue, 14 Mar 2006 17:23:07 -0800 (PST) (envelope-from jeff@pugetpc.com) Message-Id: <200603150123.k2F1N58i095296@booyah.pugetpc.com> From: "Jeff Seeman" To: Date: Tue, 14 Mar 2006 17:25:23 -0800 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcZHz1TprUdSNBx7QSaui6Gdy5e+tA== X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,HTML_MESSAGE autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on booyah.pugetpc.com X-Virus-Scanned: ClamAV 0.88/1332/Tue Mar 14 14:22:52 2006 on booyah.pugetpc.com X-Virus-Status: Clean Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Adaptec 1200A No longer supported? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 01:25:26 -0000 Just booted from a 6.1BETA4 CD and it does not recognize the Adaptec 1200A raid card. Is there a work around for this? From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 01:59:06 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A91016A422 for ; Wed, 15 Mar 2006 01:59:06 +0000 (UTC) (envelope-from ambrisko@ambrisko.com) Received: from mail2.ambrisko.com (mail2.ambrisko.com [64.174.51.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82B3943D66 for ; Wed, 15 Mar 2006 01:59:02 +0000 (GMT) (envelope-from ambrisko@ambrisko.com) Received: from server2.ambrisko.com (HELO www.ambrisko.com) ([192.168.1.2]) by mail2.ambrisko.com with ESMTP; 14 Mar 2006 17:58:37 -0800 Received: from ambrisko.com (localhost [127.0.0.1]) by www.ambrisko.com (8.12.11/8.12.11) with ESMTP id k2F1x1Rr058568; Tue, 14 Mar 2006 17:59:02 -0800 (PST) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.12.11/8.12.11/Submit) id k2F1x1ci058567; Tue, 14 Mar 2006 17:59:01 -0800 (PST) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <200603150159.k2F1x1ci058567@ambrisko.com> In-Reply-To: <20060309085658.o6d44acukg4ksso8@webmail.restart.be> To: Henri Hennebert Date: Tue, 14 Mar 2006 17:59:01 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Cc: freebsd-stable@freebsd.org Subject: Re: Changing release version on source X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 01:59:06 -0000 Henri Hennebert writes: | > Glenn Dawson wrote: | >> At 12:06 PM 3/8/2006, you wrote: | >>> Does anyone know how to change the release version of the source | >>> code? I have some brain dead software (Plesk) that insists on | >>> FreeBSD 5.3, while it will work just fine on 5.5 and even 6. I am | >>> wondering i can change the version of RELENG_5 code so that this | >>> software will think its 5.3-R and let me install. I have tried | >>> changing the variable in /usr/src/release/Makefile, but that seems | >>> to have no effect. | >> | >> Take a look at sys/conf/newvers.sh | > | > Excellent, thanks! I'm presuming i have to do a full build/install | > world for this to take effect. Do you think that anything may break | > because of this manual change, even if i used RELENG_6 code? I will not | > be installing any ports. | | I would prefer to wrap /usr/bin/uname with a temporary custom version | returning | the disired values. You can use UNAME_ over-rides. Doug A. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 05:07:52 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B46C416A41F for ; Wed, 15 Mar 2006 05:07:52 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B0D943D46 for ; Wed, 15 Mar 2006 05:07:51 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k2F57oGM074167; Tue, 14 Mar 2006 22:07:50 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <4417A126.5020800@samsco.org> Date: Tue, 14 Mar 2006 22:07:50 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Grant References: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> In-Reply-To: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: freebsd-stable@freebsd.org Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 05:07:52 -0000 Michael Grant wrote: > Can anyone tell me if/when the Adaptec AIC9410 SAS/SATA controller > will be supported? > > Michael Grant It's on my TODO list, but realistically I won't even be able to think about starting it until this summer at the earliest. The MPT driver has prototype support for SAS (in 7-current for now), so that might be a better alternative. Scott From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 05:30:28 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2526916A400; Wed, 15 Mar 2006 05:30:28 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92FC143D48; Wed, 15 Mar 2006 05:30:27 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k2F5UPJ6074324; Tue, 14 Mar 2006 22:30:25 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <4417A671.7090109@samsco.org> Date: Tue, 14 Mar 2006 22:30:25 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: hackers@freebsd.org, stable@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: re@freebsd.org Subject: FreeBSD 6.1-BETA2/FreeBSD 5.5-BETA2 Available X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 05:30:28 -0000 Announcement ------------ The FreeBSD Release Engineering Team is pleased to announce the availability of FreeBSD 6.1-BETA4 and FreeBSD 5.5-BETA4. Both FreeBSD 6.1 and FreeBSD 5.5 are meant to be a refinement of their respective branches with few dramatic changes. A lot of bugfixes have been made, some drivers have been updated, and some areas have been tweaked for better performance, etc. but no large changes have been made to the basic architecture. The FreeBSD 5.5 Release is being done for people who are unable to make the jump to FreeBSD 6.X at this time. We do encourage people to make that transition as soon as possible, though. There have been some updates made between FreeBSD 5.4 and FreeBSD 5.5 but not all of the bugfixes done to RELENG_6 have been backported to RELENG_5. This will almost certainly be the last 5.X release. We encourage people to help with testing so any final bugs can be identified and worked out. Availability of ISO images is given below. If you have an older system you want to update using the normal CVS/cvsup source based upgrade the branch tag to use is RELENG_6 for 6.1 and RELENG_5 for 5.5, though that will change later in the release cycle when we start doing the Release Candidates. Problem reports can be submitted using the send-pr(1) command. The list of open issues and things still being worked on are on the todo list: http://www.freebsd.org/releases/6.1R/todo.html http://www.freebsd.org/releases/5.5R/todo.html Known Issues ------------ A couple of significant changes were made to 6.1-BETA4. First is a large set of fixes to the VFS layer and various filesystems that should sigficantly help performance under heavy load and also fix problems with forcefully unmounting these filesystems. While these changes have recieved considerable developer testing, users are requested to test filesystem stability as much as possible to ensure that there are no regressions. The second large change is that sysinstall will now install both the GENERIC and SMP kernels and automatically select the appropriate one based on whether it detects one CPU in the system or multiple CPUs. However, single CPU systems with hyperthreading will still be treated as uni-processor by sysinstall. The automatic selection can be overridden within sysinstall. Testing of this is requested to help identify systems that are not detected correctly. Availability ------------ The BETA4 ISOs and FTP support are available on most of the FreeBSD Mirror sites. A list of the mirror sites is available here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html The MD5s are: MD5 (5.5-BETA4-pc98-disc1.iso) = bf6cf1238c000a01fe8c34ed4554e66e MD5 (5.5-BETA4-alpha-bootonly.iso) = 84e55974d8854692a85d43558e10c658 MD5 (5.5-BETA4-alpha-disc1.iso) = b5fc0a01dc6cb96924c7cd9c18af6dd9 MD5 (5.5-BETA4-i386-bootonly.iso) = e54261162e775b692138597ae2512bf6 MD5 (5.5-BETA4-i386-disc1.iso) = 15f3161d4c5f996bbbc9b28682198dde MD5 (5.5-BETA4-i386-disc2.iso) = 10c4c7985eea736862480b0212e60155 MD5 (5.5-BETA4-amd64-bootonly.iso) = 371522c9ab80e7d5c0fadd71d670543e MD5 (5.5-BETA4-amd64-disc1.iso) = 4811510b11620f8706f51e4e0154b8b1 MD5 (5.5-BETA4-amd64-disc2.iso) = 54ee8ec3240de9d84576f1f0cbf2048a MD5 (6.1-BETA4-pc98-disc1.iso) = ee891f12ddb7b62b2c1d3672555ceb3b MD5 (6.1-BETA4-ia64-bootonly.iso) = b05da331e737c6c614acbb924584199e MD5 (6.1-BETA4-ia64-disc1.iso) = d0b09231c1d55308fb8fb45eec845284 MD5 (6.1-BETA4-ia64-livefs.iso) = 9db26824bb09ee98e33ecead0000b643 MD5 (6.1-BETA4-alpha-bootonly.iso) = c77a7d80803efeba3b8140072ccd4969 MD5 (6.1-BETA4-alpha-disc1.iso) = b2701eb2931dd815b3b595f9183ae5a4 MD5 (6.1-BETA4-i386-bootonly.iso) = 113f1b990d298aa8b7f81d93a3636dc3 MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 MD5 (6.1-BETA4-i386-disc2.iso) = 01b01719f7a06d2613a3e9fe15417b3f MD5 (6.1-BETA4-amd64-bootonly.iso) = c52a2081931d89cbbebf50f198e8b169 MD5 (6.1-BETA4-amd64-disc1.iso) = 5624a6ba41abdc60802d21be9ab4cf6e MD5 (6.1-BETA4-amd64-disc2.iso) = db427ec7ab4af75a8224a890c476846d The SHA256s are: SHA256 (5.5-BETA4-pc98-disc1.iso) = 0574c7db49a81c77d1d9cded1add28451026fee5ca52605be03ab6660f9b5ab5 SHA256 (5.5-BETA4-i386-bootonly.iso) = 077a4b6561311af08d9f760d734fc822d2589554f4a25ac413cfeb275a59361c SHA256 (5.5-BETA4-i386-disc1.iso) = 3367499f48d7fdc526a1f447f8e83ee4eef7a76e74784eb7471124499440e05d SHA256 (5.5-BETA4-i386-disc2.iso) = 40751884348826807f6c24ec78d424568be21c3e64fcb002f7cfd2bf9ec3bfa7 SHA256 (5.5-BETA4-amd64-bootonly.iso) = ca7390623cfa64589a4f19c80fa557e8a6085c54335811010c6b609a4202fd20 SHA256 (5.5-BETA4-amd64-disc1.iso) = a9cba0901cf6747193e173eb1c1d1b843ddaa59d12f2e8e84d0d634d2aba5bb0 SHA256 (5.5-BETA4-amd64-disc2.iso) = 763d5dfe8d7bed4dadc8850e04e2ad04b8c3f4ae6e283df6cfdd25b9475a80d0 SHA256 (6.1-BETA4-pc98-disc1.iso) = 3de12c8ec0d65a651bcb200049c5fa7b4a9228ebea6f64dea15b35ab07d19178 SHA256 (6.1-BETA4-ia64-bootonly.iso) = 430681fcf11c258c0161bd1b79b19a7131252aaf033f2cfcc6f5f3053a2aa255 SHA256 (6.1-BETA4-ia64-disc1.iso) = 0f91037340f11c64db68613d154d046470f0ec3e6daef125e6c923d172fb9608 SHA256 (6.1-BETA4-ia64-livefs.iso) = 6ff4ad8ef9e1d8b18a0352c5d400887e44ef75b856f91aa5760cb8c0fd026df7 SHA256 (6.1-BETA4-i386-bootonly.iso) = 5b1173e91459c1613cdbac3e400802f0755c880b13571a8441941d027c1ee5d6 SHA256 (6.1-BETA4-i386-disc1.iso) = fad4d1811061c45ed3cde22d40893e02256df518234c57671be06dddeb532d37 SHA256 (6.1-BETA4-i386-disc2.iso) = 1a68984b90a222893001cd3bcfeb4a20bf9effb497055d236f830fac655ff63e SHA256 (6.1-BETA4-amd64-bootonly.iso) = e76e9594a2a76e73dfc50d79576d37347b1c18c3b301567a1953946a66caced7 SHA256 (6.1-BETA4-amd64-disc1.iso) = a8bf30ed9d8c8d3a62702d8e7b0bc9436a2bf21ea13944ae46cab839ed38bac7 SHA256 (6.1-BETA4-amd64-disc2.iso) = 23259557817b4f52a3c0000698976c3be38c34d370d64b478c67e00a241c9304 From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 05:45:49 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CD0E16A41F; Wed, 15 Mar 2006 05:45:49 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025E143D60; Wed, 15 Mar 2006 05:45:46 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k2F5jjOg074457; Tue, 14 Mar 2006 22:45:45 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <4417AA08.1090209@samsco.org> Date: Tue, 14 Mar 2006 22:45:44 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: hackers@freebsd.org, stable@freebsd.org References: <4417A671.7090109@samsco.org> In-Reply-To: <4417A671.7090109@samsco.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: re@freebsd.org Subject: BETA4! [Re: FreeBSD 6.1-BETA2/FreeBSD 5.5-BETA2 Available] X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 05:45:49 -0000 Sorry, I accidentally sent out an incomplete draft. This announcement is for BETA4, of course. Also, the note about VFS changes below should stress that the changes were made for stability, not performance. Sorry for the confusion. Scott Long wrote: > Announcement > ------------ > > The FreeBSD Release Engineering Team is pleased to announce the > availability of FreeBSD 6.1-BETA4 and FreeBSD 5.5-BETA4. Both FreeBSD > 6.1 and FreeBSD 5.5 are meant to be a refinement of their respective > branches with few dramatic changes. A lot of bugfixes have been made, > some drivers have been updated, and some areas have been tweaked for > better performance, etc. but no large changes have been made to the > basic architecture. The FreeBSD 5.5 Release is being done for people > who are unable to make the jump to FreeBSD 6.X at this time. We do > encourage people to make that transition as soon as possible, though. > There have been some updates made between FreeBSD 5.4 and FreeBSD 5.5 > but not all of the bugfixes done to RELENG_6 have been backported to > RELENG_5. This will almost certainly be the last 5.X release. > > We encourage people to help with testing so any final bugs can be > identified and worked out. Availability of ISO images is given below. > If you have an older system you want to update using the normal > CVS/cvsup source based upgrade the branch tag to use is RELENG_6 for 6.1 > and RELENG_5 for 5.5, though that will change later in the release cycle > when we start doing the Release Candidates. Problem reports can be > submitted using the send-pr(1) command. > > The list of open issues and things still being worked on are on the > todo list: > > http://www.freebsd.org/releases/6.1R/todo.html > http://www.freebsd.org/releases/5.5R/todo.html > > Known Issues > ------------ > > A couple of significant changes were made to 6.1-BETA4. First is a > large set of fixes to the VFS layer and various filesystems that > should sigficantly help performance under heavy load and also fix > problems with forcefully unmounting these filesystems. While these > changes have recieved considerable developer testing, users are > requested to test filesystem stability as much as possible to ensure > that there are no regressions. > > The second large change is that sysinstall will now install both the > GENERIC and SMP kernels and automatically select the appropriate one > based on whether it detects one CPU in the system or multiple CPUs. > However, single CPU systems with hyperthreading will still be treated > as uni-processor by sysinstall. The automatic selection can be > overridden within sysinstall. Testing of this is requested to help > identify systems that are not detected correctly. > > Availability > ------------ > > The BETA4 ISOs and FTP support are available on most of the FreeBSD > Mirror sites. A list of the mirror sites is available here: > > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html > > The MD5s are: > > MD5 (5.5-BETA4-pc98-disc1.iso) = bf6cf1238c000a01fe8c34ed4554e66e > MD5 (5.5-BETA4-alpha-bootonly.iso) = 84e55974d8854692a85d43558e10c658 > MD5 (5.5-BETA4-alpha-disc1.iso) = b5fc0a01dc6cb96924c7cd9c18af6dd9 > MD5 (5.5-BETA4-i386-bootonly.iso) = e54261162e775b692138597ae2512bf6 > MD5 (5.5-BETA4-i386-disc1.iso) = 15f3161d4c5f996bbbc9b28682198dde > MD5 (5.5-BETA4-i386-disc2.iso) = 10c4c7985eea736862480b0212e60155 > MD5 (5.5-BETA4-amd64-bootonly.iso) = 371522c9ab80e7d5c0fadd71d670543e > MD5 (5.5-BETA4-amd64-disc1.iso) = 4811510b11620f8706f51e4e0154b8b1 > MD5 (5.5-BETA4-amd64-disc2.iso) = 54ee8ec3240de9d84576f1f0cbf2048a > > MD5 (6.1-BETA4-pc98-disc1.iso) = ee891f12ddb7b62b2c1d3672555ceb3b > MD5 (6.1-BETA4-ia64-bootonly.iso) = b05da331e737c6c614acbb924584199e > MD5 (6.1-BETA4-ia64-disc1.iso) = d0b09231c1d55308fb8fb45eec845284 > MD5 (6.1-BETA4-ia64-livefs.iso) = 9db26824bb09ee98e33ecead0000b643 > MD5 (6.1-BETA4-alpha-bootonly.iso) = c77a7d80803efeba3b8140072ccd4969 > MD5 (6.1-BETA4-alpha-disc1.iso) = b2701eb2931dd815b3b595f9183ae5a4 > MD5 (6.1-BETA4-i386-bootonly.iso) = 113f1b990d298aa8b7f81d93a3636dc3 > MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 > MD5 (6.1-BETA4-i386-disc2.iso) = 01b01719f7a06d2613a3e9fe15417b3f > MD5 (6.1-BETA4-amd64-bootonly.iso) = c52a2081931d89cbbebf50f198e8b169 > MD5 (6.1-BETA4-amd64-disc1.iso) = 5624a6ba41abdc60802d21be9ab4cf6e > MD5 (6.1-BETA4-amd64-disc2.iso) = db427ec7ab4af75a8224a890c476846d > > The SHA256s are: > > SHA256 (5.5-BETA4-pc98-disc1.iso) = > 0574c7db49a81c77d1d9cded1add28451026fee5ca52605be03ab6660f9b5ab5 > SHA256 (5.5-BETA4-i386-bootonly.iso) = > 077a4b6561311af08d9f760d734fc822d2589554f4a25ac413cfeb275a59361c > SHA256 (5.5-BETA4-i386-disc1.iso) = > 3367499f48d7fdc526a1f447f8e83ee4eef7a76e74784eb7471124499440e05d > SHA256 (5.5-BETA4-i386-disc2.iso) = > 40751884348826807f6c24ec78d424568be21c3e64fcb002f7cfd2bf9ec3bfa7 > SHA256 (5.5-BETA4-amd64-bootonly.iso) = > ca7390623cfa64589a4f19c80fa557e8a6085c54335811010c6b609a4202fd20 > SHA256 (5.5-BETA4-amd64-disc1.iso) = > a9cba0901cf6747193e173eb1c1d1b843ddaa59d12f2e8e84d0d634d2aba5bb0 > SHA256 (5.5-BETA4-amd64-disc2.iso) = > 763d5dfe8d7bed4dadc8850e04e2ad04b8c3f4ae6e283df6cfdd25b9475a80d0 > > SHA256 (6.1-BETA4-pc98-disc1.iso) = > 3de12c8ec0d65a651bcb200049c5fa7b4a9228ebea6f64dea15b35ab07d19178 > SHA256 (6.1-BETA4-ia64-bootonly.iso) = > 430681fcf11c258c0161bd1b79b19a7131252aaf033f2cfcc6f5f3053a2aa255 > SHA256 (6.1-BETA4-ia64-disc1.iso) = > 0f91037340f11c64db68613d154d046470f0ec3e6daef125e6c923d172fb9608 > SHA256 (6.1-BETA4-ia64-livefs.iso) = > 6ff4ad8ef9e1d8b18a0352c5d400887e44ef75b856f91aa5760cb8c0fd026df7 > SHA256 (6.1-BETA4-i386-bootonly.iso) = > 5b1173e91459c1613cdbac3e400802f0755c880b13571a8441941d027c1ee5d6 > SHA256 (6.1-BETA4-i386-disc1.iso) = > fad4d1811061c45ed3cde22d40893e02256df518234c57671be06dddeb532d37 > SHA256 (6.1-BETA4-i386-disc2.iso) = > 1a68984b90a222893001cd3bcfeb4a20bf9effb497055d236f830fac655ff63e > SHA256 (6.1-BETA4-amd64-bootonly.iso) = > e76e9594a2a76e73dfc50d79576d37347b1c18c3b301567a1953946a66caced7 > SHA256 (6.1-BETA4-amd64-disc1.iso) = > a8bf30ed9d8c8d3a62702d8e7b0bc9436a2bf21ea13944ae46cab839ed38bac7 > SHA256 (6.1-BETA4-amd64-disc2.iso) = > 23259557817b4f52a3c0000698976c3be38c34d370d64b478c67e00a241c9304 > From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 07:19:01 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA7F716A400 for ; Wed, 15 Mar 2006 07:19:01 +0000 (UTC) (envelope-from michael.grant@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B91A43D66 for ; Wed, 15 Mar 2006 07:18:53 +0000 (GMT) (envelope-from michael.grant@gmail.com) Received: by nproxy.gmail.com with SMTP id p46so32924nfa for ; Tue, 14 Mar 2006 23:18:52 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qP8X3ekgnXhcTecco2xRZMEPGmYT09cxy4IMEcEvvoQLmgcdU7gN0Vf62FxsQbmHaVXG7mgAXVTE0lUVGDMbY2dsgBAEEysJrUW1H24Ehg/Ww7zJZ2sl8oobwQE0EtSL1ZvAPku4P0v/W/URiAJJOpO/lvr6f6Gfzy38P1Ypl6A= Received: by 10.49.10.11 with SMTP id n11mr86298nfi; Tue, 14 Mar 2006 23:18:51 -0800 (PST) Received: by 10.48.157.15 with HTTP; Tue, 14 Mar 2006 23:18:51 -0800 (PST) Message-ID: <62b856460603142318s521f1b9ew724a334250e25338@mail.gmail.com> Date: Wed, 15 Mar 2006 08:18:51 +0100 From: "Michael Grant" Sender: michael.grant@gmail.com To: "Scott Long" In-Reply-To: <4417A126.5020800@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> <4417A126.5020800@samsco.org> Cc: freebsd-stable@freebsd.org Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 07:19:01 -0000 I just bought a Supermicro X6DH3-G2 with some Maxtor 500gig SATA drives. The box sees the SATA drives in the bios but of course not in Freebsd. Do you think I can use the MPT driver from 7-current and use in 6-stable with these SATA drives? Michael On 3/15/06, Scott Long wrote: > Michael Grant wrote: > > > Can anyone tell me if/when the Adaptec AIC9410 SAS/SATA controller > > will be supported? > > > > Michael Grant > > It's on my TODO list, but realistically I won't even be able to think > about starting it until this summer at the earliest. The MPT driver > has prototype support for SAS (in 7-current for now), so that might > be a better alternative. > > Scott > > From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 07:31:24 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23D6E16A401 for ; Wed, 15 Mar 2006 07:31:24 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63AF143D4C for ; Wed, 15 Mar 2006 07:31:20 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k2F7VIsW075030; Wed, 15 Mar 2006 00:31:19 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <4417C2C6.6050908@samsco.org> Date: Wed, 15 Mar 2006 00:31:18 -0700 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Grant References: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> <4417A126.5020800@samsco.org> <62b856460603142318s521f1b9ew724a334250e25338@mail.gmail.com> In-Reply-To: <62b856460603142318s521f1b9ew724a334250e25338@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: freebsd-stable@freebsd.org Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 07:31:24 -0000 Sorry, I should have been more specific. The MPT driver has prototype support for SAS enabled LSI Logic chips. Scott Michael Grant wrote: > I just bought a Supermicro X6DH3-G2 with some Maxtor 500gig SATA > drives. The box sees the SATA drives in the bios but of course not in > Freebsd. > > Do you think I can use the MPT driver from 7-current and use in > 6-stable with these SATA drives? > > Michael > > On 3/15/06, Scott Long wrote: > >>Michael Grant wrote: >> >> >>>Can anyone tell me if/when the Adaptec AIC9410 SAS/SATA controller >>>will be supported? >>> >>>Michael Grant >> >>It's on my TODO list, but realistically I won't even be able to think >>about starting it until this summer at the earliest. The MPT driver >>has prototype support for SAS (in 7-current for now), so that might >>be a better alternative. >> >>Scott >> >> From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 07:41:02 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C577016A420 for ; Wed, 15 Mar 2006 07:41:02 +0000 (UTC) (envelope-from joe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2E2343D67 for ; Wed, 15 Mar 2006 07:41:01 +0000 (GMT) (envelope-from joe@FreeBSD.org) Received: from freefall.freebsd.org (joe@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2F7f1jM046742 for ; Wed, 15 Mar 2006 07:41:01 GMT (envelope-from joe@freefall.freebsd.org) Received: (from joe@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2F7f1ff046741 for stable@freebsd.org; Wed, 15 Mar 2006 07:41:01 GMT (envelope-from joe) Date: Wed, 15 Mar 2006 07:41:01 +0000 From: Josef Karthauser To: stable@freebsd.org Message-ID: <20060315074101.GA46614@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: Kernel borked? (fsck stuck in g_waitidlel) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 07:41:02 -0000 Yesterday's kernel appears to be broken, in as much as my g_mirror enabled machine boots, but g_mirror doesn't start mirroring! This is after a crash; the machine reboots, kernel comes up, and then instead of g_mirror starting to recover the degraded mirror pair, nothing happens, and fsck sits there blocked on 'g_waitidlel'. Joe From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 10:05:05 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04AE116A401 for ; Wed, 15 Mar 2006 10:05:04 +0000 (UTC) (envelope-from mikhail.manuilov@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB7C443D4C for ; Wed, 15 Mar 2006 10:05:03 +0000 (GMT) (envelope-from mikhail.manuilov@gmail.com) Received: by wproxy.gmail.com with SMTP id i20so73799wra for ; Wed, 15 Mar 2006 02:05:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=lPf5SHVfLGSBhnAKhmvjuXImGHUKNYF4K8jA8pc0frtKJ3nmXL4RmD2hCLhJhrQwMabhyQkJ0/tG9ZMFix4iWJxLQzf6vzYWy8Kfk6wpoDdYft5fM9EFgAYwv1YAPou/LQb6CZsiVtPK4pZYFE4Ue6tVXv6sppqfOl0PXfITmb4= Received: by 10.64.27.20 with SMTP id a20mr207578qba; Wed, 15 Mar 2006 01:36:44 -0800 (PST) Received: by 10.64.76.19 with HTTP; Wed, 15 Mar 2006 01:36:44 -0800 (PST) Message-ID: <7ec6def90603150136g4d9b93b0rd56c77f66199a008@mail.gmail.com> Date: Wed, 15 Mar 2006 12:36:44 +0300 From: "Mikhail Manuylov" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Dead Hang/Panic trap with Promise SATA300 TX4 Controller X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 10:05:05 -0000 Hello, Some days ago I got new Promise SATA300 TX4 Controller and 2 250GB Samsung SATA300 disks. I've installed this pci card to my old pentium-mmx RELENG_6 ( 10 Jan 2006 ) box and one of new disks. While trying to dump/restore my old files from UDMA33 ad0 (40GB Samsung) to new successfully recognized ad4 system hang up deadly. So I ran few tests with dd: 1) RELENG_6 (10 Jan 2006) a) dd if=3D/dev/ad0 of=3D/dev/ad4 -> ran all night and no trap or panic (bu= t due to no small buffer speed was very low: only 30GB have been dumped). b) dd if=3D/dev/ad0 of=3D/dev/ad4 bs=3D8m -> hang or hang with no vga signa= l immediately c) dd if=3D/dev/ad4 of=3D/dev/null bs=3D8m -> normal (expected) speed, no h= ang d) dd if=3D/dev/zero of=3D/dev/ad4 bs=3D8m -> normal speed, no hang e) dd if=3D/dev/random of=3D/dev/ad4 bs=3D8m -> hang/trap immediately e) dd if=3D/dev/ad0 of=3D/dev/ad4 bs=3D8m -> hang/trap immediately After looking up to cvs-web with recent changes to promise chipsets I've found out that Soren changed something in the end of February, so I rebuile= d my system updated it to FreeBSD 6.1-PRERELEASE #0: Tue Mar 14 11:07:49 MSK 2006 2) And I've have to report that everything runs ( i mean hangs ) the same way as before but sometimes there is a trap - not just dead hang. I'd really like to help this debugged. So I'll follow instructions on dump/debug and stuff to developer. See my `dmesg` below. Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.1-PRERELEASE #0: Tue Mar 14 11:07:49 MSK 2006 root@blablabla.bla:/usr/obj/usr/src/sys/FOORY WARNING: MPSAFE network stack disabled, expect reduced performance. link_elf: symbol iicbus_intr undefined KLD file pcf.ko - could not finalize loading Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium/P55C (233.86-MHz 586-class CPU) Origin =3D "GenuineIntel" Id =3D 0x543 Stepping =3D 3 Features=3D0x8001bf real memory =3D 134217728 (128 MB) avail memory =3D 125788160 (119 MB) Intel Pentium detected, installing workaround for F00F bug npx0: [FAST] npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 isab0: at device 1.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 1.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0x6000-0x601f irq 11 at device 1.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered intpm0: port 0x5c00-0x5c0f irq = 9 at device 1.3 on pci0 intpm0: I/O mapped 5c00 intpm0: intr IRQ 9 enabled revision 0 intpm0: [GIANT-LOCKED] intsmb0: on intpm0 smbus1: on intsmb0 smb0: on smbus1 intpm0: PM I/O mapped 5800 pci0: at device 9.0 (no driver attached) fxp0: port 0x6800-0x683f mem 0xe1221000-0xe1221fff,0xe1000000-0xe10fffff irq 12 at device 10.0 on pci0 miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:04:ac:13:ae:e6 fxp0: [GIANT-LOCKED] fxp1: port 0x6c00-0x6c1f mem 0xe1220000-0xe1220fff,0xe1100000-0xe11fffff irq 9 at device 11.0 on pci0 miibus1: on fxp1 inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: Ethernet address: 00:04:ac:25:54:a4 fxp1: [GIANT-LOCKED] atapci1: port 0x7000-0x707f,0x7400-0x74ff mem 0xe1222000-0xe1222fff,0xe1200000-0xe121ffff irq 10 at device 12.0 on pci0 ata2: on atapci1 ata3: on atapci1 ata4: on atapci1 ata5: on atapci1 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xc8fff,0xc9000-0xcdfff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd0: [GIANT-LOCKED] ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold ppbus0: on ppc0 ppbus0: IEEE1284 device found /NIBBLE/ECP Probing for PnP devices on ppbus0: ppbus0: PRINTER MLC,PCL,PJL lpt0: on ppbus0 lpt0: Interrupt-driven port pcfclock0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> 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 speaker0: at port 0x61 on isa0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) speaker1: at port 0x61 on isa0 speaker1: Already attached! device_attach: speaker1 attach returned 6 unknown: can't assign resources (memory) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) ugen0: American Power Conversion Smart-UPS 750 FW:651.12.I USB FW:4.2, rev 1.10/0.06, addr 2 Timecounters tick every 1.000 msec ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding enabled, default to deny, logging limited to 10 packets/entry by default ad0: 32253MB at ata0-master UDMA33 ad4: 238475MB at ata2-master SATA300 Trying to mount root from ufs:/dev/ad0s1a -- Truly yours, Mikhail Manuilov From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 10:35:32 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E7BE16A422; Wed, 15 Mar 2006 10:35:32 +0000 (UTC) (envelope-from wsk@gddsn.org.cn) Received: from gddsn.org.cn (gddsn.org.cn [218.19.164.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id 889A143D69; Wed, 15 Mar 2006 10:35:25 +0000 (GMT) (envelope-from wsk@gddsn.org.cn) Received: from [192.168.168.135] (unknown [218.19.164.153]) by gddsn.org.cn (Postfix) with ESMTP id 7B0D138CB71; Wed, 15 Mar 2006 18:34:30 +0800 (CST) Message-ID: <4417EDE9.3030707@gddsn.org.cn> Date: Wed, 15 Mar 2006 18:35:21 +0800 From: Suken Woo User-Agent: Thunderbird 1.5 (X11/20051128) MIME-Version: 1.0 To: current@freebsd.org, stable@freebsd.org Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 7bit Cc: Subject: build world failed on pflogd X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 10:35:32 -0000 list: cvsuped and build world failed today on pflogd. cc -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -Wno-uninitialized -Wstrict-prototypes -I/usr/src/sbin/pfctl/../../contrib/pf/pfctl -DENABLE_ALTQ -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/pfctl/../../contrib/pf/pfctl/pfctl_radix.c cc -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -Wno-uninitialized -Wstrict-prototypes -I/usr/src/sbin/pfctl/../../contrib/pf/pfctl -DENABLE_ALTQ -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/pfctl/../../contrib/pf/pfctl/pfctl_table.c cc -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -Wno-uninitialized -Wstrict-prototypes -I/usr/src/sbin/pfctl/../../contrib/pf/pfctl -DENABLE_ALTQ -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/pfctl/../../contrib/pf/pfctl/pfctl_qstats.c cc -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -Wno-uninitialized -Wstrict-prototypes -I/usr/src/sbin/pfctl/../../contrib/pf/pfctl -DENABLE_ALTQ -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/pfctl/../../contrib/pf/pfctl/pfctl_optimize.c cc -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -Wno-uninitialized -Wstrict-prototypes -I/usr/src/sbin/pfctl/../../contrib/pf/pfctl -DENABLE_ALTQ -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -o pfctl pfctl.o parse.o pfctl_parser.o pf_print_state.o pfctl_altq.o pfctl_osfp.o pfctl_radix.o pfctl_table.o pfctl_qstats.o pfctl_optimize.o -lm -lmd gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/pfctl/pfctl.8 > pfctl.8.gz gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/man/pf.4 > pf.4.gz gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/man/pflog.4 > pflog.4.gz gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/man/pfsync.4 > pfsync.4.gz gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/man/pf.conf.5 > pf.conf.5.gz gzip -cn /usr/src/sbin/pfctl/../../contrib/pf/man/pf.os.5 > pf.os.5.gz ===> sbin/pflogd (all) cc -O2 -fno-strict-aliasing -pipe -Wall -Werror -Wmissing-prototypes -Wshadow -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/pflogd/../../contrib/pf/pflogd/pflogd.c /usr/src/sbin/pflogd/../../contrib/pf/pflogd/pflogd.c: In function `main': /usr/src/sbin/pflogd/../../contrib/pf/pflogd/pflogd.c:572: warning: passing arg 4 of `strtonum' from incompatible pointer type /usr/src/sbin/pflogd/../../contrib/pf/pflogd/pflogd.c:581: warning: passing arg 4 of `strtonum' from incompatible pointer type *** Error code 1 Stop in /usr/src/sbin/pflogd. *** Error code 1 Stop in /usr/src/sbin. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 12:24:10 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A56DB16A420 for ; Wed, 15 Mar 2006 12:24:10 +0000 (UTC) (envelope-from vadim_nuclight@mail.ru) Received: from mx3.mail.ru (mx3.mail.ru [194.67.23.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id 441D343D4C for ; Wed, 15 Mar 2006 12:24:10 +0000 (GMT) (envelope-from vadim_nuclight@mail.ru) Received: from [83.172.2.81] (port=15091 helo=[83.172.2.81]) by mx3.mail.ru with esmtp id 1FJV2u-000ATL-00 for freebsd-stable@freebsd.org; Wed, 15 Mar 2006 15:24:08 +0300 Date: Wed, 15 Mar 2006 18:19:26 +0600 From: Vadim Goncharov X-Mailer: The Bat! (v2.10.01) Personal Organization: Home X-Priority: 3 (Normal) Message-ID: <1591151085.20060315181926@mail.ru> To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vadim Goncharov List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 12:24:10 -0000 Hello freebsd-stable, I have 5.5-PRERELEASE server in production, booting from ad0s1: # BLOCKSIZE=512 swapinfo Device 512-blocks Used Avail Capacity /dev/ad0s1b 2097152 52872 2044280 3% /dev/ad1s1b 2097152 51952 2045200 2% Total 4194304 104824 4089480 2% # bsdlabel ad0s1 | fgrep b: b: 2097152 0 swap Previously, on a 4.11 system, swapinfo said that swap size was less than size of b: partition on a slice - it was ok, as boot sectors are located at beginning of slice. But now, sizes match exactly. What changed and is it dangerous nowadays to have swap partition at offset 0 ? -- Best regards, Vadim Goncharov ICQ UIN 166852181 mailto:vadim_nuclight@mail.ru From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 12:38:35 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0338916A42F for ; Wed, 15 Mar 2006 12:38:35 +0000 (UTC) (envelope-from vadim_nuclight@mail.ru) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84FB243D49 for ; Wed, 15 Mar 2006 12:38:34 +0000 (GMT) (envelope-from vadim_nuclight@mail.ru) Received: from [83.172.2.81] (port=49386 helo=[83.172.2.81]) by mx2.mail.ru with esmtp id 1FJVGq-000FpT-00 for freebsd-stable@freebsd.org; Wed, 15 Mar 2006 15:38:33 +0300 Date: Wed, 15 Mar 2006 18:37:31 +0600 From: Vadim Goncharov X-Mailer: The Bat! (v2.10.01) Personal Organization: Home X-Priority: 3 (Normal) Message-ID: <256754692.20060315183731@mail.ru> To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: panic with ZERO_COPY_SOCKETS on 5.4 (and probably 6.0) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Vadim Goncharov List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 12:38:35 -0000 Hello freebsd-stable, I've seen several panics on a 5.4-STABLE (RELENG_5 at end of January) under moderate ftpd/samba load with diagnostic: vm_page_free: freeing wired page Server rebooted after a panic every ~4 hours. Removing ZERO_COPY_SOCKETS from kernel config resolved problem. And I've found same diagnostic with same causes in freebsd-current@ mail lists on a 6.0-RC1: http://www.freebsd.org/cgi/getmsg.cgi?fetch=330124+334658+/usr/local/www/db/text/2005/freebsd-current/20051023.freebsd-current Also, there is a PR with a similar diagnostic (but not sure if it is ZERO_COPY_SOCKETS problem): http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/75780 I still have coredumps on my machine together with copy of kernel.debug (although I've updated machine to 5.5-PRERELEASE alredy), and can provide backtrace etc. if somebody will be interested in this. -- Best regards, Vadim Goncharov ICQ UIN 166852181 mailto:vadim_nuclight@mail.ru From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 12:53:20 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1602316A422 for ; Wed, 15 Mar 2006 12:53:20 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44ECF43D53 for ; Wed, 15 Mar 2006 12:53:19 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k2FCrEC4024163; Wed, 15 Mar 2006 14:53:14 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Wed, 15 Mar 2006 14:53:14 +0200 (EET) From: Dmitry Pryanishnikov To: Vadim Goncharov In-Reply-To: <1591151085.20060315181926@mail.ru> Message-ID: <20060315143939.Q17761@atlantis.atlantis.dp.ua> References: <1591151085.20060315181926@mail.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 12:53:20 -0000 Hello! On Wed, 15 Mar 2006, Vadim Goncharov wrote: > I have 5.5-PRERELEASE server in production, booting from ad0s1: > > # BLOCKSIZE=512 swapinfo > Device 512-blocks Used Avail Capacity > /dev/ad0s1b 2097152 52872 2044280 3% > /dev/ad1s1b 2097152 51952 2045200 2% > Total 4194304 104824 4089480 2% > # bsdlabel ad0s1 | fgrep b: > b: 2097152 0 swap > > Previously, on a 4.11 system, swapinfo said that swap size was less than > size of b: partition on a slice - it was ok, as boot sectors are > located at beginning of slice. But now, sizes match exactly. What > changed and is it dangerous nowadays to have swap partition at offset 0 ? It seems to me as a dangerous setup indeed - swap could easily overwrite disklabel (which is in sector 1 of the slice for every arch except Alpha). FFS doesn't touch first several sectors, so it would be safe to start FFS partition from the offset 0, but AFAIK swap engine makes no such guaranties. I don't know about current situation in RELENG_5, but in CURRENT bsdlabel by default reserves first 16 sectors for the disklabel, so offset of the first partition will be 16 regardless of the partition type. But stupid sysinstall still insists on putting first partition at offset 0, and it's a shame. For production server I would deactivate swap on this disk and recreate b-partition in order to start at offset 16, not 0. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 13:48:39 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EF9D16A400 for ; Wed, 15 Mar 2006 13:48:39 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64FEE43D48 for ; Wed, 15 Mar 2006 13:48:38 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (pahevu@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k2FDmVFZ027798; Wed, 15 Mar 2006 14:48:36 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k2FDmVht027797; Wed, 15 Mar 2006 14:48:31 +0100 (CET) (envelope-from olli) Date: Wed, 15 Mar 2006 14:48:31 +0100 (CET) Message-Id: <200603151348.k2FDmVht027797@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG, Vadim Goncharov In-Reply-To: <1591151085.20060315181926@mail.ru> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Wed, 15 Mar 2006 14:48:37 +0100 (CET) Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG, Vadim Goncharov List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 13:48:39 -0000 Vadim Goncharov wrote: > I have 5.5-PRERELEASE server in production, booting from ad0s1: > > # BLOCKSIZE=512 swapinfo > Device 512-blocks Used Avail Capacity > /dev/ad0s1b 2097152 52872 2044280 3% > /dev/ad1s1b 2097152 51952 2045200 2% > Total 4194304 104824 4089480 2% > # bsdlabel ad0s1 | fgrep b: > b: 2097152 0 swap > > Previously, on a 4.11 system, swapinfo said that swap size was less than > size of b: partition on a slice - it was ok, as boot sectors are > located at beginning of slice. But now, sizes match exactly. What > changed and is it dangerous nowadays to have swap partition at offset 0 ? The code in sys/swap_pager.c does not touch the first two blocks, where blocks are measured in PAGE_SIZE units. The smallest page size supported on FreeBSD architectures is 4 KB (on i386), so that's at least 2 * 4k, which is 16 sectors on the disk. That's enough to skip MBR, disklabel and boot blocks. In other words: You're save. No danger. No need to worry. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. > Can the denizens of this group enlighten me about what the > advantages of Python are, versus Perl ? "python" is more likely to pass unharmed through your spelling checker than "perl". -- An unknown poster and Fredrik Lundh From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 14:22:48 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85F3916A446 for ; Wed, 15 Mar 2006 14:22:42 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC0D43D45 for ; Wed, 15 Mar 2006 14:22:27 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k2FEM7td063462; Wed, 15 Mar 2006 16:22:07 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Wed, 15 Mar 2006 16:22:07 +0200 (EET) From: Dmitry Pryanishnikov To: freebsd-stable@freebsd.org, Vadim Goncharov In-Reply-To: <200603151348.k2FDmVht027797@lurza.secnetix.de> Message-ID: <20060315161248.L47405@atlantis.atlantis.dp.ua> References: <200603151348.k2FDmVht027797@lurza.secnetix.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 14:22:48 -0000 Hello! On Wed, 15 Mar 2006, Oliver Fromme wrote: > > # bsdlabel ad0s1 | fgrep b: > > b: 2097152 0 swap > > > > Previously, on a 4.11 system, swapinfo said that swap size was less than > > size of b: partition on a slice - it was ok, as boot sectors are > > located at beginning of slice. But now, sizes match exactly. What > > changed and is it dangerous nowadays to have swap partition at offset 0 ? > > The code in sys/swap_pager.c does not touch the first two > blocks, where blocks are measured in PAGE_SIZE units. > The smallest page size supported on FreeBSD architectures > is 4 KB (on i386), so that's at least 2 * 4k, which is 16 > sectors on the disk. That's enough to skip MBR, disklabel > and boot blocks. You're right about RELENG_5 (and CURRENT). I've found this code (though not from the first attempt ;) in /sys/vm/swap_pager.c, at start of swaponsomething(): /* * Do not free the first two block in order to avoid overwriting * any bsd label at the front of the partition */ blist_free(sp->sw_blist, 2, nblks - 2); However I don't see any equivalent code in RELENG_4. Neither can I find where it's documented, and thus any guarantees that it won't disappear tomorrow ;( > In other words: You're save. No danger. No need to worry. In this particular case - yes. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 14:29:07 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8876E16A420 for ; Wed, 15 Mar 2006 14:29:07 +0000 (UTC) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (etustar.ze.tum.de [129.187.39.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D79143D49 for ; Wed, 15 Mar 2006 14:29:04 +0000 (GMT) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (localhost [127.0.0.1]) by etustar.ze.tum.de (8.13.4/8.13.4) with ESMTP id k2FET2DP003561; Wed, 15 Mar 2006 15:29:02 +0100 (CET) (envelope-from estartu@etustar.ze.tum.de) Received: (from estartu@localhost) by etustar.ze.tum.de (8.13.4/8.13.4/Submit) id k2FET2R2003560; Wed, 15 Mar 2006 15:29:02 +0100 (CET) (envelope-from estartu) Date: Wed, 15 Mar 2006 15:29:02 +0100 From: Gerhard Schmidt To: Eric Anderson Message-ID: <20060315142902.GA3275@augusta.de> References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> <4416F383.9050409@centtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4416F383.9050409@centtech.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 14:29:07 -0000 On Tue, Mar 14, 2006 at 10:46:59AM -0600, Eric Anderson wrote: > Oliver Fromme wrote: > >Hi, > > > >I'll be getting a few new machines for a customer soon. > >They will be SMP (dual processor Pentium-IV) with 4 GB RAM, > >and I plan to install FreeBSD/i386 6-stable on them. > > > >What's the current status of running with that amount of > >memory? I'm not completely up to date in that regard, and > >searching the archive didn't get any definitive answers. > >I remember that there were several issues in the past, but > >I have no idea if they still exist. They required fiddling > >with VM_KMEM_SIZE_MAX, or KVA_PAGES or similar things. > > > >Will FreeBSD/i386 6-stable run on a 4 GB machine out of the > >box? Do I have to apply special tuning (kernel config or > >sysctl or whatever)? Using PAE shouldn't be necessary, I > >assume. > > > >It would also be interesting to know if 4-stable (which is > >currently running on the predecessor machines) would run > >without problems on those new 4 GB ones, too. > > > >Thanks in advance for any information! > > > > The base install, running GENERIC will only use 3GB. I believe you > would either need to use the PAE kernel option, or use the 64bit version > of FreeBSD on a corresponding 64bit hardware. I Have a i386 server running with 4Gig of ram without PAE. It's running with 5-STABLE. Has this changed in 6.0. ---------------------------------------------------------------------------- Gerhard Schmidt | Nick : estartu IRC : Estartu | Fischbachweg 3 | | PGP Public Key 86856 Hiltenfingen | EMail: estartu@augusta.de | on request Germany | | From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 14:38:32 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57FA616A424 for ; Wed, 15 Mar 2006 14:38:32 +0000 (UTC) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 070A743D46 for ; Wed, 15 Mar 2006 14:38:22 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id k2FEcKsn052508; Wed, 15 Mar 2006 16:38:20 +0200 (EET) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ip.net.ua [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 16092-04; Wed, 15 Mar 2006 16:38:03 +0200 (EET) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id k2FEboHK052492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Mar 2006 16:37:50 +0200 (EET) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id k2FEc9Y3013786; Wed, 15 Mar 2006 16:38:09 +0200 (EET) (envelope-from ru) Date: Wed, 15 Mar 2006 16:38:09 +0200 From: Ruslan Ermilov To: freebsd-stable@FreeBSD.org, Vadim Goncharov Message-ID: <20060315143809.GF10897@ip.net.ua> References: <1591151085.20060315181926@mail.ru> <200603151348.k2FDmVht027797@lurza.secnetix.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E7i4zwmWs5DOuDSH" Content-Disposition: inline In-Reply-To: <200603151348.k2FDmVht027797@lurza.secnetix.de> User-Agent: Mutt/1.5.11 X-Virus-Scanned: amavisd-new at ip.net.ua Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 14:38:32 -0000 --E7i4zwmWs5DOuDSH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 15, 2006 at 02:48:31PM +0100, Oliver Fromme wrote: > Vadim Goncharov wrote: > > I have 5.5-PRERELEASE server in production, booting from ad0s1: > >=20 > > # BLOCKSIZE=3D512 swapinfo > > Device 512-blocks Used Avail Capacity > > /dev/ad0s1b 2097152 52872 2044280 3% > > /dev/ad1s1b 2097152 51952 2045200 2% > > Total 4194304 104824 4089480 2% > > # bsdlabel ad0s1 | fgrep b: > > b: 2097152 0 swap > >=20 > > Previously, on a 4.11 system, swapinfo said that swap size was less th= an > > size of b: partition on a slice - it was ok, as boot sectors are > > located at beginning of slice. But now, sizes match exactly. What > > changed and is it dangerous nowadays to have swap partition at offset = 0 ? >=20 > The code in sys/swap_pager.c does not touch the first two > blocks, where blocks are measured in PAGE_SIZE units. > The smallest page size supported on FreeBSD architectures > is 4 KB (on i386), so that's at least 2 * 4k, which is 16 > sectors on the disk. That's enough to skip MBR, disklabel > and boot blocks. >=20 > In other words: You're save. No danger. No need to worry. >=20 Also, geom_bsd.c doesn't allow writing to the "label" sector: : # bsdlabel md0 : # /dev/md0: : 8 partitions: : # size offset fstype [fsize bsize bps/cpg] : a: 2048 0 unused 0 0 =20 : c: 2048 0 unused 0 0 # "raw" part, don= 't edit : # dd if=3D/dev/zero of=3D/dev/md0a count=3D1 seek=3D1 : dd: /dev/md0a: Operation not permitted : 1+0 records in : 0+0 records out : 0 bytes transferred in 0.000153 secs (0 bytes/sec) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --E7i4zwmWs5DOuDSH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFEGCbRqRfpzJluFF4RAtOsAJ9xCwA6DAfzf01yjQ3Sqj7972LY7ACeJiiV 7iwfXfauCPmv4XsdZMfMKog= =9/KT -----END PGP SIGNATURE----- --E7i4zwmWs5DOuDSH-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 15:10:44 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AD5D16A481 for ; Wed, 15 Mar 2006 15:10:44 +0000 (UTC) (envelope-from ah@cryptobank.de) Received: from mail.crypta.net (mail.crypta.net [83.136.131.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72A9B43D6B for ; Wed, 15 Mar 2006 15:10:41 +0000 (GMT) (envelope-from ah@cryptobank.de) Received: by mail.crypta.net (cryptobank/eProtect-smtpd, from userid 1001) id A740DECD45F; Wed, 15 Mar 2006 16:10:30 +0100 (CET) Date: Wed, 15 Mar 2006 16:10:30 +0100 From: Andy Hilker To: Gerhard Schmidt Message-ID: <20060315151030.GB84666@mail.crypta.net> References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> <4416F383.9050409@centtech.com> <20060315142902.GA3275@augusta.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060315142902.GA3275@augusta.de> User-Agent: Mutt/1.4.2.1i X-PGP-Key: http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0xEC6E1071 X-PGP-Fingerprint: 9B2E 5892 AD93 D5C5 FB8E 3912 35D6 951B EC6E 1071 Organization: cryptobank - Andy Hilker Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 15:10:44 -0000 Hi, You (Gerhard Schmidt) wrote: > > The base install, running GENERIC will only use 3GB. I believe you > > would either need to use the PAE kernel option, or use the 64bit version > > of FreeBSD on a corresponding 64bit hardware. > > I Have a i386 server running with 4Gig of ram without PAE. It's running > with 5-STABLE. Has this changed in 6.0. No. It depends on your hardware how much memory is really available. But there is no limit at 3GB in general. Do you use special options (KVA space etc.) in kernel-config or make.conf to have a stable system? bye, Andy From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 15:16:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E882916A422 for ; Wed, 15 Mar 2006 15:16:37 +0000 (UTC) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (etustar.ze.tum.de [129.187.39.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5149243D45 for ; Wed, 15 Mar 2006 15:16:37 +0000 (GMT) (envelope-from estartu@etustar.ze.tum.de) Received: from etustar.ze.tum.de (localhost [127.0.0.1]) by etustar.ze.tum.de (8.13.4/8.13.4) with ESMTP id k2FFGfee003935; Wed, 15 Mar 2006 16:16:41 +0100 (CET) (envelope-from estartu@etustar.ze.tum.de) Received: (from estartu@localhost) by etustar.ze.tum.de (8.13.4/8.13.4/Submit) id k2FFGfKE003934; Wed, 15 Mar 2006 16:16:41 +0100 (CET) (envelope-from estartu) Date: Wed, 15 Mar 2006 16:16:41 +0100 From: Gerhard Schmidt To: Andy Hilker Message-ID: <20060315151641.GA3911@augusta.de> References: <200603141630.k2EGUgDe053168@lurza.secnetix.de> <4416F383.9050409@centtech.com> <20060315142902.GA3275@augusta.de> <20060315151030.GB84666@mail.crypta.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060315151030.GB84666@mail.crypta.net> User-Agent: Mutt/1.4.2.1i Cc: Gerhard Schmidt , freebsd-stable@freebsd.org Subject: Re: FreeBSD/i386 6-stable + 4 GB RAM X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 15:16:38 -0000 On Wed, Mar 15, 2006 at 04:10:30PM +0100, Andy Hilker wrote: > Hi, > > You (Gerhard Schmidt) wrote: > > > The base install, running GENERIC will only use 3GB. I believe you > > > would either need to use the PAE kernel option, or use the 64bit version > > > of FreeBSD on a corresponding 64bit hardware. > > > > I Have a i386 server running with 4Gig of ram without PAE. It's running > > with 5-STABLE. Has this changed in 6.0. > > No. It depends on your hardware how much memory is really available. > But there is no limit at 3GB in general. > > Do you use special options (KVA space etc.) in kernel-config > or make.conf to have a stable system? I have the following options in the kernel # Fix for the Memory problems options VM_KMEM_SIZE_SCALE="4" options VM_KMEM_SIZE_MAX="(1024*1024*1024)" options KVA_PAGES=512 It runs stable for 4 Years now. Some problem when hyperthreading is enabled, but without hyperthreading it's stable sofar. Bye Estartu ---------------------------------------------------------------------------- Gerhard Schmidt | Nick : estartu IRC : Estartu | Fischbachweg 3 | | PGP Public Key 86856 Hiltenfingen | EMail: estartu@augusta.de | on request Germany | | From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 15:31:02 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0BFC16A400 for ; Wed, 15 Mar 2006 15:31:02 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4863843D45 for ; Wed, 15 Mar 2006 15:31:02 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 8D4A2B81F for ; Wed, 15 Mar 2006 10:31:01 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v746.3) In-Reply-To: <4417C2C6.6050908@samsco.org> References: <62b856460603141417p64513021x7bb0e96f9dbcc087@mail.gmail.com> <4417A126.5020800@samsco.org> <62b856460603142318s521f1b9ew724a334250e25338@mail.gmail.com> <4417C2C6.6050908@samsco.org> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <3D6411DD-1E84-4933-93EE-DDF5AB132DE1@khera.org> Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Wed, 15 Mar 2006 10:31:00 -0500 To: freebsd-stable X-Mailer: Apple Mail (2.746.3) Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 15:31:02 -0000 On Mar 15, 2006, at 2:31 AM, Scott Long wrote: > The MPT driver has prototype > support for SAS enabled LSI Logic chips. Sounds like what you would find in a Sunfire X4100 system... From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 15:42:23 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFDA216A401 for ; Wed, 15 Mar 2006 15:42:23 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 002DA43D5A for ; Wed, 15 Mar 2006 15:42:18 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (xqvcpa@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k2FFgBm8038015 for ; Wed, 15 Mar 2006 16:42:16 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k2FFgBSY038014; Wed, 15 Mar 2006 16:42:11 +0100 (CET) (envelope-from olli) Date: Wed, 15 Mar 2006 16:42:11 +0100 (CET) Message-Id: <200603151542.k2FFgBSY038014@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG In-Reply-To: <20060315161248.L47405@atlantis.atlantis.dp.ua> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Wed, 15 Mar 2006 16:42:16 +0100 (CET) Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 15:42:24 -0000 Dmitry Pryanishnikov wrote: > Oliver Fromme wrote: > > > # bsdlabel ad0s1 | fgrep b: > > > b: 2097152 0 swap > > > > > > Previously, on a 4.11 system, swapinfo said that swap size was less than > > > size of b: partition on a slice - it was ok, as boot sectors are > > > located at beginning of slice. But now, sizes match exactly. What > > > changed and is it dangerous nowadays to have swap partition at offset 0 ? > > > > The code in sys/swap_pager.c does not touch the first two > > blocks, where blocks are measured in PAGE_SIZE units. > > The smallest page size supported on FreeBSD architectures > > is 4 KB (on i386), so that's at least 2 * 4k, which is 16 > > sectors on the disk. That's enough to skip MBR, disklabel > > and boot blocks. > > You're right about RELENG_5 (and CURRENT). And RELENG_6, of course. > However I don't see any equivalent code in RELENG_4. RELENG_4 doesn't touch the first sectors of the swap partition either. See the calculations for vsbase in vm/vm_swap.c in the swaponvp() function. Apart from that, RELENG_4 is pretty much dead, as far as development is concerned, so nobody would suddenly change how partitions are laid out by default. > Neither can I find where it's documented, > and thus any guarantees that it won't disappear tomorrow ;( The comment in the source clearly state _why_ the first two blocks of the swap partition are excluded, so no developper will rip that out. UFS skips the first 16 sectors, too -- that won't change either, and nobody is really worried about it. By the way, the first partition on a disk is usually the root partition, not the swap partition. So the problem could arise only in unusual circumstances. > > In other words: You're save. No danger. No need to worry. > > In this particular case - yes. If you create a swap partition intentionally at the start of a disk (for whatever reason), and if you're paranoid, then make sure it starts at offset 16, not 0. But even with offset 0 you're save. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "In My Egoistical Opinion, most people's C programs should be indented six feet downward and covered with dirt." -- Blair P. Houghton From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 16:10:55 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FEB416A423 for ; Wed, 15 Mar 2006 16:10:55 +0000 (UTC) (envelope-from sascha@eirconnect.net) Received: from mail.druid-dns.com (ns1.druid-dns.com [70.84.181.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EA2443D5E for ; Wed, 15 Mar 2006 16:10:48 +0000 (GMT) (envelope-from sascha@eirconnect.net) Received: (qmail 3651 invoked by uid 7807); 15 Mar 2006 16:21:41 +0000 Received: from 84.203.161.126 by druiddns.servermatrix.com (envelope-from , uid 7805) with qmail-scanner-1.25-st-qms (clamdscan: 0.83/828. spamassassin: 3.0.2. perlscan: 1.25-st-qms. Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.619409 secs); 15 Mar 2006 16:21:41 -0000 X-Spam-Status: No, hits=-2.3 required=5.0 X-Antivirus-Druid-Mail-From: sascha@eirconnect.net via druiddns.servermatrix.com X-Antivirus-Druid: 1.25-st-qms (Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.619409 secs Process 3642) Received: from unknown (HELO saoirse) (sascha@eirconnect.net@84.203.161.126) by mail.druid-dns.com with AES256-SHA encrypted SMTP; 15 Mar 2006 16:21:39 +0000 From: Sascha Luck Organization: Eirconnect To: freebsd-stable@freebsd.org Date: Wed, 15 Mar 2006 16:10:42 +0000 User-Agent: KMail/1.9.1 X-NCC-RegID: ie.eirconnect MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603151610.42709.sascha@eirconnect.net> Subject: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 16:10:55 -0000 Hi, I'm having some issues with the newly imported ath_hal module on the sparc64 architecture: (/usr/src/sys/modules/ath_hal) root@serval# make Warning: Object directory not changed from original /usr/src/sys/modules/ath_hal make: don't know how to make /usr/src/sys/modules/ath_hal/../../contrib/dev/ath/public/sparc64-elf.hal.o.uu. Stop This file is actually called sparc64-be-elf.hal.o.uu. After copying to 'sparc64-elf.hal.o.uu', the module builds cleanly but doesn't load. The only error message when trying to load it is: serval# link_elf: symbol undefined Does this mean the uuencoded binary HAL is corrupt? cheers, s. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 16:55:10 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3332516A401 for ; Wed, 15 Mar 2006 16:55:10 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 882BD43D4C for ; Wed, 15 Mar 2006 16:55:09 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.187] ([10.0.0.187]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id k2FGt6o7012669 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Mar 2006 08:55:06 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <441846EA.50603@errno.com> Date: Wed, 15 Mar 2006 08:55:06 -0800 From: Sam Leffler User-Agent: Thunderbird 1.5 (X11/20060209) MIME-Version: 1.0 To: Sascha Luck References: <200603151610.42709.sascha@eirconnect.net> In-Reply-To: <200603151610.42709.sascha@eirconnect.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 16:55:10 -0000 Sascha Luck wrote: > Hi, > > I'm having some issues with the newly imported ath_hal module on the > sparc64 architecture: > > (/usr/src/sys/modules/ath_hal) > > root@serval# make > Warning: Object directory not changed from original > /usr/src/sys/modules/ath_hal > make: don't know how to make > /usr/src/sys/modules/ath_hal/../../contrib/dev/ath/public/sparc64-elf.hal.o.uu. > Stop > > This file is actually called sparc64-be-elf.hal.o.uu. After copying to > 'sparc64-elf.hal.o.uu', the module builds cleanly but doesn't load. The > only error message when trying to load it is: > > serval# link_elf: symbol undefined > > Does this mean the uuencoded binary HAL is corrupt? It means the files.sparc64 rules are botched. I just committed the changes to head yesterday but you posted to stable@; what version of the os are you running? I will mfc the changes to releng6 as soon as I get the ok. FWIW the sparc64 hal has not been tested on freebsd so far as I know. It is known to work on netbsd and linux and is os-independent but beware... Sam From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 17:01:42 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C7D16A400 for ; Wed, 15 Mar 2006 17:01:42 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9209343D46 for ; Wed, 15 Mar 2006 17:01:42 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.187] ([10.0.0.187]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id k2FH1do7012699 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Mar 2006 09:01:39 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <44184873.9080706@errno.com> Date: Wed, 15 Mar 2006 09:01:39 -0800 From: Sam Leffler User-Agent: Thunderbird 1.5 (X11/20060209) MIME-Version: 1.0 To: Sascha Luck References: <200603151610.42709.sascha@eirconnect.net> In-Reply-To: <200603151610.42709.sascha@eirconnect.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 17:01:42 -0000 Sascha Luck wrote: > Hi, > > I'm having some issues with the newly imported ath_hal module on the > sparc64 architecture: > > (/usr/src/sys/modules/ath_hal) > > root@serval# make > Warning: Object directory not changed from original > /usr/src/sys/modules/ath_hal > make: don't know how to make > /usr/src/sys/modules/ath_hal/../../contrib/dev/ath/public/sparc64-elf.hal.o.uu. > Stop > > This file is actually called sparc64-be-elf.hal.o.uu. After copying to > 'sparc64-elf.hal.o.uu', the module builds cleanly but doesn't load. The > only error message when trying to load it is: > > serval# link_elf: symbol undefined > > Does this mean the uuencoded binary HAL is corrupt? Oops, you were building a module, not adding ath_hal to a kernel config file. I will fix the module build but I have no way to test if the code works. Sam From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 17:06:44 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B872B16A400 for ; Wed, 15 Mar 2006 17:06:44 +0000 (UTC) (envelope-from sascha@eirconnect.net) Received: from mail.druid-dns.com (ns1.druid-dns.com [70.84.181.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3071143D48 for ; Wed, 15 Mar 2006 17:06:44 +0000 (GMT) (envelope-from sascha@eirconnect.net) Received: (qmail 4339 invoked by uid 7807); 15 Mar 2006 17:17:36 +0000 Received: from 84.203.161.126 by druiddns.servermatrix.com (envelope-from , uid 7805) with qmail-scanner-1.25-st-qms (clamdscan: 0.83/828. spamassassin: 3.0.2. perlscan: 1.25-st-qms. Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.526286 secs); 15 Mar 2006 17:17:36 -0000 X-Spam-Status: No, hits=-2.3 required=5.0 X-Antivirus-Druid-Mail-From: sascha@eirconnect.net via druiddns.servermatrix.com X-Antivirus-Druid: 1.25-st-qms (Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.526286 secs Process 4330) Received: from unknown (HELO saoirse) (sascha@eirconnect.net@84.203.161.126) by mail.druid-dns.com with AES256-SHA encrypted SMTP; 15 Mar 2006 17:17:34 +0000 From: Sascha Luck Organization: Eirconnect To: Sam Leffler Date: Wed, 15 Mar 2006 17:06:37 +0000 User-Agent: KMail/1.9.1 References: <200603151610.42709.sascha@eirconnect.net> <441846EA.50603@errno.com> In-Reply-To: <441846EA.50603@errno.com> X-NCC-RegID: ie.eirconnect MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603151706.37449.sascha@eirconnect.net> Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 17:06:44 -0000 Sam, On Wednesday 15 March 2006 16:55, Sam Leffler wrote: > It means the files.sparc64 rules are botched. I just committed the > changes to head yesterday but you posted to stable@; what version of > the os are you running? I will mfc the changes to releng6 as soon as > I get the ok. Sorry, noticed only after posting, it's RELENG6 as of 1/2 hour ago. > FWIW the sparc64 hal has not been tested on freebsd so far as I know. > It is known to work on netbsd and linux and is os-independent but > beware... I've got a few U10s and an Atheros PCI card here if you want me to do some testing. Would it make more sense to pull one of them up to CURRENT to test this? > Sam cheers, s. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 17:19:19 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4416E16A401 for ; Wed, 15 Mar 2006 17:19:19 +0000 (UTC) (envelope-from sascha@eirconnect.net) Received: from mail.druid-dns.com (ns1.druid-dns.com [70.84.181.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7345143D72 for ; Wed, 15 Mar 2006 17:19:11 +0000 (GMT) (envelope-from sascha@eirconnect.net) Received: (qmail 4430 invoked by uid 7807); 15 Mar 2006 17:30:04 +0000 Received: from 84.203.161.126 by druiddns.servermatrix.com (envelope-from , uid 7805) with qmail-scanner-1.25-st-qms (clamdscan: 0.83/828. spamassassin: 3.0.2. perlscan: 1.25-st-qms. Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.674524 secs); 15 Mar 2006 17:30:04 -0000 X-Spam-Status: No, hits=-2.3 required=5.0 X-Antivirus-Druid-Mail-From: sascha@eirconnect.net via druiddns.servermatrix.com X-Antivirus-Druid: 1.25-st-qms (Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 1.674524 secs Process 4421) Received: from unknown (HELO saoirse) (sascha@eirconnect.net@84.203.161.126) by mail.druid-dns.com with AES256-SHA encrypted SMTP; 15 Mar 2006 17:30:03 +0000 From: Sascha Luck Organization: Eirconnect To: Sam Leffler Date: Wed, 15 Mar 2006 17:19:05 +0000 User-Agent: KMail/1.9.1 References: <200603151610.42709.sascha@eirconnect.net> <44184873.9080706@errno.com> In-Reply-To: <44184873.9080706@errno.com> X-NCC-RegID: ie.eirconnect MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603151719.05647.sascha@eirconnect.net> Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 17:19:19 -0000 On Wednesday 15 March 2006 17:01, Sam Leffler wrote: > Oops, you were building a module, not adding ath_hal to a kernel > config file. I will fix the module build but I have no way to test > if the code works. I initially tried to build it into the kernel too, but it failed (AFAIR with missing includes, but it was a while ago). As for testing, I can test the code on one of my Ultra10s. > Sam cheers, s. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 17:42:44 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD5216A401 for ; Wed, 15 Mar 2006 17:42:44 +0000 (UTC) (envelope-from b.candler@pobox.com) Received: from rune.pobox.com (rune.pobox.com [208.210.124.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id F006643D45 for ; Wed, 15 Mar 2006 17:42:41 +0000 (GMT) (envelope-from b.candler@pobox.com) Received: from rune (localhost [127.0.0.1]) by rune.pobox.com (Postfix) with ESMTP id 351A93374F for ; Wed, 15 Mar 2006 12:43:03 -0500 (EST) Received: from mappit.local.linnet.org (212-74-113-67.static.dsl.as9105.com [212.74.113.67]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by rune.sasl.smtp.pobox.com (Postfix) with ESMTP id 0D6903328B for ; Wed, 15 Mar 2006 12:43:02 -0500 (EST) Received: from lists by mappit.local.linnet.org with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FJa19-000FeL-7o for freebsd-stable@freebsd.org; Wed, 15 Mar 2006 17:42:39 +0000 Date: Wed, 15 Mar 2006 17:42:38 +0000 From: Brian Candler To: freebsd-stable@freebsd.org Message-ID: <20060315174238.GA60143@uk.tiscali.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: Strangeness with /dev nodes and mknod X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 17:42:44 -0000 I have a box running 6.0-STABLE as of 10 Nov last year. Previously I had created device nodes for /dev/random within chroot environments (this was for building and testing openssl). However now they don't work. I am left with the strange situation that device nodes from devfs work, but seemingly indentical device nodes created with mknod don't. # dd if=/dev/random bs=1 count=8 | hexdump 8+0 records in 8+0 records out 8 bytes transferred in 0.000070 secs (114131 bytes/sec) 0000000 6eaf 1d71 513b 8d8c 0000008 # mknod /tmp/test1 c 0 24 root:wheel # mknod /tmp/test2 c 24 0 root:wheel # chmod 666 /tmp/test1 /tmp/test2 # ls -l /tmp/test1 /tmp/test2 crw-rw-rw- 1 root wheel 0, 24 Mar 15 17:45 /tmp/test1 crw-rw-rw- 1 root wheel 24, 0 Mar 15 17:45 /tmp/test2 # dd if=/tmp/test1 bs=1 count=8 | hexdump dd: /tmp/test1: Operation not supported # dd if=/tmp/test2 bs=1 count=8 | hexdump dd: /tmp/test2: Operation not supported Why do my lovingly hand-created device nodes fail with "Operation not supported"? Thanks, Brian. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 18:22:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7586B16A41F for ; Wed, 15 Mar 2006 18:22:00 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B8943D48 for ; Wed, 15 Mar 2006 18:22:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id DF50B1A4E45; Wed, 15 Mar 2006 10:21:59 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3FB5E515BE; Wed, 15 Mar 2006 13:21:59 -0500 (EST) Date: Wed, 15 Mar 2006 13:21:59 -0500 From: Kris Kennaway To: Brian Candler Message-ID: <20060315182159.GA85131@xor.obsecurity.org> References: <20060315174238.GA60143@uk.tiscali.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline In-Reply-To: <20060315174238.GA60143@uk.tiscali.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: Strangeness with /dev nodes and mknod X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 18:22:00 -0000 --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 15, 2006 at 05:42:38PM +0000, Brian Candler wrote: > I have a box running 6.0-STABLE as of 10 Nov last year. >=20 > Previously I had created device nodes for /dev/random within chroot > environments (this was for building and testing openssl). However now they > don't work. I am left with the strange situation that device nodes from > devfs work, but seemingly indentical device nodes created with mknod don'= t. >=20 > # dd if=3D/dev/random bs=3D1 count=3D8 | hexdump > 8+0 records in > 8+0 records out > 8 bytes transferred in 0.000070 secs (114131 bytes/sec) > 0000000 6eaf 1d71 513b 8d8c =20 > 0000008 > # mknod /tmp/test1 c 0 24 root:wheel > # mknod /tmp/test2 c 24 0 root:wheel > # chmod 666 /tmp/test1 /tmp/test2 > # ls -l /tmp/test1 /tmp/test2 > crw-rw-rw- 1 root wheel 0, 24 Mar 15 17:45 /tmp/test1 > crw-rw-rw- 1 root wheel 24, 0 Mar 15 17:45 /tmp/test2 > # dd if=3D/tmp/test1 bs=3D1 count=3D8 | hexdump > dd: /tmp/test1: Operation not supported > # dd if=3D/tmp/test2 bs=3D1 count=3D8 | hexdump > dd: /tmp/test2: Operation not supported >=20 > Why do my lovingly hand-created device nodes fail with "Operation not > supported"? man devfs; you don't (can't) create device nodes by hand any more. Kris --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGFtGWry0BWjoQKURAoDMAJ92/dhe/YFCbuaICrJhRlnSMRHPHACfR+WB 5ZAoDC3JHfUIZ5LNxcPZ6Yw= =/brs -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 18:23:37 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BA7B16A400 for ; Wed, 15 Mar 2006 18:23:37 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD1DA43D46 for ; Wed, 15 Mar 2006 18:23:36 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id A5F801A4E49; Wed, 15 Mar 2006 10:23:36 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0FE44525C5; Wed, 15 Mar 2006 13:23:36 -0500 (EST) Date: Wed, 15 Mar 2006 13:23:35 -0500 From: Kris Kennaway To: Vadim Goncharov Message-ID: <20060315182335.GB85131@xor.obsecurity.org> References: <256754692.20060315183731@mail.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline In-Reply-To: <256754692.20060315183731@mail.ru> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: panic with ZERO_COPY_SOCKETS on 5.4 (and probably 6.0) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 18:23:37 -0000 --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 15, 2006 at 06:37:31PM +0600, Vadim Goncharov wrote: > Hello freebsd-stable, >=20 > I've seen several panics on a 5.4-STABLE (RELENG_5 at end of January) > under moderate ftpd/samba load with diagnostic: >=20 > vm_page_free: freeing wired page >=20 > Server rebooted after a panic every ~4 hours. Removing > ZERO_COPY_SOCKETS from kernel config resolved problem. > And I've found same diagnostic with same causes in freebsd-current@ > mail lists on a 6.0-RC1: > http://www.freebsd.org/cgi/getmsg.cgi?fetch=3D330124+334658+/usr/local/= www/db/text/2005/freebsd-current/20051023.freebsd-current >=20 > Also, there is a PR with a similar diagnostic (but not sure if it is > ZERO_COPY_SOCKETS problem): > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern/75780 >=20 > I still have coredumps on my machine together with copy of > kernel.debug (although I've updated machine to 5.5-PRERELEASE alredy), > and can provide backtrace etc. if somebody will be interested in this. There were fixes for this after 6.0. I don't know if anyone is interested in merging the fixes to 5.5; you should update to 6.1 for this and many other reasons. Kris --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGFumWry0BWjoQKURAhMeAJ43rtdqShCtpUqJ2DiK/pu3krPRSQCfQAbo D2cioCRFjzczR19UV5RlBQs= =KOyT -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 19:20:47 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA67016A484 for ; Wed, 15 Mar 2006 19:20:47 +0000 (UTC) (envelope-from matt@mattsnetwork.co.uk) Received: from mattsnetwork.co.uk (mattsnetwork.co.uk [82.152.140.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01AC843D45 for ; Wed, 15 Mar 2006 19:20:46 +0000 (GMT) (envelope-from matt@mattsnetwork.co.uk) Received: from workstation2.local.mattsnetwork.co.uk (workstation2.local.mattsnetwork.co.uk [192.168.0.101]) (authenticated bits=0) by mattsnetwork.co.uk (8.13.4/8.13.4) with ESMTP id k2FJKd1h039429 for ; Wed, 15 Mar 2006 19:20:42 GMT (envelope-from matt@mattsnetwork.co.uk) From: Matt Dawson To: freebsd-stable@freebsd.org Date: Wed, 15 Mar 2006 19:20:39 +0000 User-Agent: KMail/1.9.1 X-Face: Zrm9At!%e{M_#Po+[-\; RFQih#L0/\!^6f8JS_1Nz,8`(@bR%|T,c)3:o6my`.sy$Rt)'^)ec9cWp!MmeH^Gp|Afl)BkcH1GENCBqb&wZ$cdqN27uYfD=jU@1:vWXf|)LmuVKo?1wuS68KeDX&3,#wZP2$N1Ao!_'mZOws67 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603151920.39450.matt@mattsnetwork.co.uk> X-Spam-Status: No, score=-4.4 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=unavailable version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on central.local.mattsnetwork.co.uk X-Virus-Scanned: ClamAV 0.88/1334/Wed Mar 15 18:13:15 2006 on central.local.mattsnetwork.co.uk X-Virus-Status: Clean Subject: fdisk, sysinstall and 6.1-BETA3/amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 19:20:48 -0000 Hi folks, I'm moving a server over to amd64 in the next week or so and I'm preparing the RAID1 disk set with the 64 bit ports as we speak. I came across a nasty little bug whilst doing so. Motherboard is a Gigabyte GA-K8U with a ULi SATA controller and AR0 set up as a RAID1 array using FreeBSD pseudo-RAID (ULi's metadata isn't supported). So far, so good. Then into sysinstall to create the partitions. To have the required number of partitions (to make my dump script easier to manage) I need two slices. The problem is that the BETA3 sysinstall marks both slices active, causing the BIOS to halt on boot with an "Invalid partition table" error. Is this a bug, or is this something I'm doing wrong. Never had this problem before, and the server has always had two slices on a RAID1 (RAID5 on the Proliant) array, although admittedly on i386. It's easy enough to fix (just fdisk -a /dev/ar0 from a fixit and mark slice 1 as active) but it's rather annoying. -- Matt Dawson. matt@mattsnetwork.co.uk MTD15-RIPE OpenNIC M_D9 MD51-6BONE From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 19:28:25 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00E7A16A41F for ; Wed, 15 Mar 2006 19:28:25 +0000 (UTC) (envelope-from mikej@rogers.com) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id DA79043D46 for ; Wed, 15 Mar 2006 19:28:23 +0000 (GMT) (envelope-from mikej@rogers.com) Received: (qmail 28369 invoked from network); 15 Mar 2006 19:28:23 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=A5csC7Aq1N0W1HXqZi/3fVL98vefgBX+wgzpgSPMLPEDr5BO01WQMc/wzWZIKvO5s/gxBRP5SotN8PCnZNOzKEsqlgE3qAt7hRFHm+JcDD7BZQvE/4X6dd8SLmP+aijJCqtoptJKyhUKgyKDYIoHHSBbu+X4N3xB+Dq6+go/RsU= ; Received: from unknown (HELO ?70.31.50.218?) (mikej@rogers.com@70.31.50.218 with plain) by smtp102.rog.mail.re2.yahoo.com with SMTP; 15 Mar 2006 19:28:23 -0000 Message-ID: <44186AF7.3000607@rogers.com> Date: Wed, 15 Mar 2006 14:28:55 -0500 From: Mike Jakubik User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Pawel Jakub Dawidek References: <20060306222844.GC56506@garage.freebsd.pl> In-Reply-To: <20060306222844.GC56506@garage.freebsd.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@FreeBSD.org, freebsd-stable@FreeBSD.org Subject: Re: gmirror(8) and graid3(8) changes. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 19:28:25 -0000 Pawel Jakub Dawidek wrote: > Hi. > > Here you can find patches with changes to gmirror(8) and graid3(8): > > http://people.freebsd.org/~pjd/patches/gmirror.7.patch > http://people.freebsd.org/~pjd/patches/graid3.patch > Will these patches make it in to 5.5 ? From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 20:51:51 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA68616A400 for ; Wed, 15 Mar 2006 20:51:51 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FD2443D46 for ; Wed, 15 Mar 2006 20:51:51 +0000 (GMT) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id k2FKpovu001786 for ; Wed, 15 Mar 2006 12:51:50 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id k2FKpoHL001785 for stable@freebsd.org; Wed, 15 Mar 2006 12:51:50 -0800 (PST) (envelope-from david) Date: Wed, 15 Mar 2006 12:51:50 -0800 From: David Wolfskill To: stable@freebsd.org Message-ID: <20060315205150.GM400@bunrab.catwhisker.org> Mail-Followup-To: David Wolfskill , stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 20:51:52 -0000 I'm running: localhost(6.1-P)[21] uname -a FreeBSD localhost 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #19: Wed Mar 15 07:15:25 PST 2006 root@g1-18.catwhisker.org.:/common/S2/obj/usr/src/sys/LAPTOP_30W i386 localhost(6.1-P)[22] I figured I'd grab a copy of the recent 6.1-BETA4 (disc1) ISO to try it out & hand it out to folks.... It seems to have worked, but I got a bit of a whine in the "fixate" stage: localhost(6.1-P)[12] ls -l 6.1-BETA4* -rw-r--r-- 1 david wheel 464979968 Mar 15 12:13 6.1-BETA4-i386-disc1.iso localhost(6.1-P)[13] grep BETA4 CHECKSUM.MD5 MD5 (6.1-BETA4-i386-bootonly.iso) = 113f1b990d298aa8b7f81d93a3636dc3 MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 MD5 (6.1-BETA4-i386-disc2.iso) = 01b01719f7a06d2613a3e9fe15417b3f localhost(6.1-P)[14] md5 6.1-BETA4-i386-disc1.iso MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 localhost(6.1-P)[15] sudo burncd -s max -f /dev/acd0 data 6.1-BETA4-i386-disc1.iso fixate next writeable LBA 0 writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB written this track 454082 KB (100%) total 454082 KB fixating CD, please wait.. burncd: ioctl(CDRIOCFIXATE): Input/output error localhost(6.1-P)[16] sudo mount /cdrom localhost(6.1-P)[17] ls -Fa !$ ls -Fa /cdrom ./ HARDWARE.HTM bin/ lib/ sys@ ../ HARDWARE.TXT boot/ libexec/ tmp/ .cshrc INSTALL.HTM boot.catalog mnt/ usr/ .profile INSTALL.TXT cdrom.inf proc/ var/ 6.1-BETA4/ README.HTM dev/ rescue/ COPYRIGHT README.TXT docbook.css root/ ERRATA.HTM RELNOTES.HTM etc/ sbin/ ERRATA.TXT RELNOTES.TXT floppies/ stand@ localhost(6.1-P)[18] dirs ~/freebsd/stable localhost(6.1-P)[19] sudo umount /cdrom localhost(6.1-P)[20] I've used CDs from this batch successfully before -- they're TDK 650 MB media; it's not as if the ISO image is too big for the media. I certainly don't recall this behavior with 4-STABLE; my recent migration to 6-STABLE was a bit precipitous (though I had been tracking 6-STABLE, it was on a slice I didn't really use all that much on my laptop). I just tried it again, using a different brand of media, and also got: localhost(6.1-P)[22] sudo burncd -s max -f /dev/acd0 data 6.1-BETA4-i386-disc1.iso fixate Password: next writeable LBA 0 writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB written this track 454082 KB (100%) total 454082 KB fixating CD, please wait.. burncd: ioctl(CDRIOCFIXATE): Input/output error localhost(6.1-P)[23] There was a fair amount of time -- around 15 - 20 seconds -- between the "fixating CD, please wait.." message and the whine, during which there was activity involving the CD drive. Am I doing something stupid here? If not, it would be nice to not get this kind of behavior once 6.1 is released. Thanks...! Peace, david -- David H. Wolfskill david@catwhisker.org Mail filters, like sewers, need to be most restrictive at the point of entry. See http://www.catwhisker.org/~david/publickey.gpg for my public key. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:12:25 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 667A516A43B for ; Wed, 15 Mar 2006 21:12:25 +0000 (UTC) (envelope-from testing@itg-adrian-mac.unl.edu) Received: from itg-adrian-mac.unl.edu (itg-adrian-mac.unl.edu [129.93.140.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BFB143D48 for ; Wed, 15 Mar 2006 21:12:24 +0000 (GMT) (envelope-from testing@itg-adrian-mac.unl.edu) Received: by itg-adrian-mac.unl.edu (Postfix, from userid 1013534267) id 204978DC42; Wed, 15 Mar 2006 15:10:55 -0600 (CST) To: freebsd-stable@freebsd.org From: postcard.com Message-Id: <20060315211055.204978DC42@itg-adrian-mac.unl.edu> Date: Wed, 15 Mar 2006 15:10:55 -0600 (CST) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: You have received a postcard ! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:12:25 -0000 v> Hello friend ! You have just received a postcard from someone who cares about you! This is a part of the message: "Hy there! It has been a long time since I haven't heared about you! I've just found out about this service from Claire, a friend of mine who also told me that..." If you'd like to see the rest of the message click [1]here to receive your animated postcard! =================== Thank you for using www.yourpostcard.com 's services !!! Please take this opportunity to let your friends hear about us by sending them a postcard from our collection ! ================== References 1. http://members.lycos.co.uk/gambita/postcards.gif.exe From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:27:18 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 153A416A422; Wed, 15 Mar 2006 21:27:18 +0000 (UTC) (envelope-from scottro@nyc.rr.com) Received: from mail14.simplicato.com (host65.simplicato.com [207.99.47.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4C6E43D5E; Wed, 15 Mar 2006 21:27:15 +0000 (GMT) (envelope-from scottro@nyc.rr.com) Received: from mail14.simplicato.com (localhost [127.0.0.1]) by mail14.simplicato.com (Postfix) with ESMTP id 5977343D6; Wed, 15 Mar 2006 16:27:14 -0500 (EST) Received: from uws1.starlofashions.com (unknown [12.44.50.124]) by mail14.simplicato.com (Postfix) with ESMTP id 2431A4352; Wed, 15 Mar 2006 16:27:14 -0500 (EST) Received: by uws1.starlofashions.com (sSMTP sendmail emulation); Wed, 15 Mar 2006 16:27:13 -0500 Date: Wed, 15 Mar 2006 16:27:13 -0500 From: Scott Robbins To: freebsd-stable@freebsd.org Message-ID: <20060315212713.GC1206@uws1.starlofashions.com> Mail-Followup-To: freebsd-stable@freebsd.org, David Wolfskill , stable@freebsd.org References: <20060315205150.GM400@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20060315205150.GM400@bunrab.catwhisker.org> User-Agent: mutt-ng/devel-r581 (FreeBSD) Cc: stable@freebsd.org Subject: Re: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:27:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, Mar 15, 2006 at 12:51:50PM -0800, David Wolfskill wrote: > I'm running: > > > I just tried it again, using a different brand of media, and also got: > > localhost(6.1-P)[22] sudo burncd -s max -f /dev/acd0 data 6.1-BETA4-i386-disc1.iso fixate > Password: > next writeable LBA 0 > writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB > written this track 454082 KB (100%) total 454082 KB > fixating CD, please wait.. > burncd: ioctl(CDRIOCFIXATE): Input/output error > localhost(6.1-P)[23] > > There was a fair amount of time -- around 15 - 20 seconds -- between the > "fixating CD, please wait.." message and the whine, during which there > was activity involving the CD drive. > > Am I doing something stupid here? In my case, the CD burns without problem however, I get that error. Googling found me a few other people with a similar issue. Have you tried the CD afterwords to see if it works anyway? Out of curiosity, is it a Plextor drive, I think everyone who had a problem was running into it with Plextors. Some people, like myself, only get the annoying error message and everything is fine, others find that it doesn't work at all. - -- Scott GPG KeyID EB3467D6 ( 1B848 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Faith: You can't trust guys. Buffy: You can trust some guys. Really, I've read about them. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGIax+lTVdes0Z9YRAvq2AKCSd4T+A1Js/iDHb6s1hyXrl1hvbQCeIo+R CE6NPPHAj80/2MqMroNxhDM= =eCRD -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:27:18 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 153A416A422; Wed, 15 Mar 2006 21:27:18 +0000 (UTC) (envelope-from scottro@nyc.rr.com) Received: from mail14.simplicato.com (host65.simplicato.com [207.99.47.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4C6E43D5E; Wed, 15 Mar 2006 21:27:15 +0000 (GMT) (envelope-from scottro@nyc.rr.com) Received: from mail14.simplicato.com (localhost [127.0.0.1]) by mail14.simplicato.com (Postfix) with ESMTP id 5977343D6; Wed, 15 Mar 2006 16:27:14 -0500 (EST) Received: from uws1.starlofashions.com (unknown [12.44.50.124]) by mail14.simplicato.com (Postfix) with ESMTP id 2431A4352; Wed, 15 Mar 2006 16:27:14 -0500 (EST) Received: by uws1.starlofashions.com (sSMTP sendmail emulation); Wed, 15 Mar 2006 16:27:13 -0500 Date: Wed, 15 Mar 2006 16:27:13 -0500 From: Scott Robbins To: freebsd-stable@freebsd.org Message-ID: <20060315212713.GC1206@uws1.starlofashions.com> Mail-Followup-To: freebsd-stable@freebsd.org, David Wolfskill , stable@freebsd.org References: <20060315205150.GM400@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20060315205150.GM400@bunrab.catwhisker.org> User-Agent: mutt-ng/devel-r581 (FreeBSD) Cc: stable@freebsd.org Subject: Re: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:27:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, Mar 15, 2006 at 12:51:50PM -0800, David Wolfskill wrote: > I'm running: > > > I just tried it again, using a different brand of media, and also got: > > localhost(6.1-P)[22] sudo burncd -s max -f /dev/acd0 data 6.1-BETA4-i386-disc1.iso fixate > Password: > next writeable LBA 0 > writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB > written this track 454082 KB (100%) total 454082 KB > fixating CD, please wait.. > burncd: ioctl(CDRIOCFIXATE): Input/output error > localhost(6.1-P)[23] > > There was a fair amount of time -- around 15 - 20 seconds -- between the > "fixating CD, please wait.." message and the whine, during which there > was activity involving the CD drive. > > Am I doing something stupid here? In my case, the CD burns without problem however, I get that error. Googling found me a few other people with a similar issue. Have you tried the CD afterwords to see if it works anyway? Out of curiosity, is it a Plextor drive, I think everyone who had a problem was running into it with Plextors. Some people, like myself, only get the annoying error message and everything is fine, others find that it doesn't work at all. - -- Scott GPG KeyID EB3467D6 ( 1B848 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Faith: You can't trust guys. Buffy: You can trust some guys. Really, I've read about them. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGIax+lTVdes0Z9YRAvq2AKCSd4T+A1Js/iDHb6s1hyXrl1hvbQCeIo+R CE6NPPHAj80/2MqMroNxhDM= =eCRD -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:41:04 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C71D16A420 for ; Wed, 15 Mar 2006 21:41:04 +0000 (UTC) (envelope-from ghelmer@palisadesys.com) Received: from magellan.palisadesys.com (magellan.palisadesys.com [192.188.162.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 003F543D46 for ; Wed, 15 Mar 2006 21:41:03 +0000 (GMT) (envelope-from ghelmer@palisadesys.com) Received: from [172.16.1.108] (cetus.palisadesys.com [192.188.162.7]) (authenticated bits=0) by magellan.palisadesys.com (8.13.4/8.13.4) with ESMTP id k2FLXifc010739 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 15 Mar 2006 15:33:46 -0600 (CST) (envelope-from ghelmer@palisadesys.com) Message-ID: <44188836.3030509@palisadesys.com> Date: Wed, 15 Mar 2006 15:33:42 -0600 From: Guy Helmer User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: David Wolfskill , stable@freebsd.org References: <20060315205150.GM400@bunrab.catwhisker.org> In-Reply-To: <20060315205150.GM400@bunrab.catwhisker.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Palisade-MailScanner-Information: Please contact the ISP for more information X-Palisade-MailScanner: Found to be clean X-Palisade-MailScanner-From: ghelmer@palisadesys.com Cc: Subject: Re: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:41:04 -0000 David Wolfskill wrote: > I'm running: > > localhost(6.1-P)[21] uname -a > FreeBSD localhost 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #19: Wed Mar 15 07:15:25 PST 2006 root@g1-18.catwhisker.org.:/common/S2/obj/usr/src/sys/LAPTOP_30W i386 > localhost(6.1-P)[22] > > I figured I'd grab a copy of the recent 6.1-BETA4 (disc1) ISO to > try it out & hand it out to folks.... > > It seems to have worked, but I got a bit of a whine in the "fixate" > stage: > > localhost(6.1-P)[12] ls -l 6.1-BETA4* > -rw-r--r-- 1 david wheel 464979968 Mar 15 12:13 6.1-BETA4-i386-disc1.iso > localhost(6.1-P)[13] grep BETA4 CHECKSUM.MD5 > MD5 (6.1-BETA4-i386-bootonly.iso) = 113f1b990d298aa8b7f81d93a3636dc3 > MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 > MD5 (6.1-BETA4-i386-disc2.iso) = 01b01719f7a06d2613a3e9fe15417b3f > localhost(6.1-P)[14] md5 6.1-BETA4-i386-disc1.iso > MD5 (6.1-BETA4-i386-disc1.iso) = aee3a4416eec24b1795346efeb624416 > localhost(6.1-P)[15] sudo burncd -s max -f /dev/acd0 data 6.1-BETA4-i386-disc1.iso fixate > next writeable LBA 0 > writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB > written this track 454082 KB (100%) total 454082 KB > fixating CD, please wait.. > burncd: ioctl(CDRIOCFIXATE): Input/output error > localhost(6.1-P)[16] sudo mount /cdrom > localhost(6.1-P)[17] ls -Fa !$ > ls -Fa /cdrom > ./ HARDWARE.HTM bin/ lib/ sys@ > ../ HARDWARE.TXT boot/ libexec/ tmp/ > .cshrc INSTALL.HTM boot.catalog mnt/ usr/ > .profile INSTALL.TXT cdrom.inf proc/ var/ > 6.1-BETA4/ README.HTM dev/ rescue/ > COPYRIGHT README.TXT docbook.css root/ > ERRATA.HTM RELNOTES.HTM etc/ sbin/ > ERRATA.TXT RELNOTES.TXT floppies/ stand@ > localhost(6.1-P)[18] dirs > ~/freebsd/stable > localhost(6.1-P)[19] sudo umount /cdrom > localhost(6.1-P)[20] > > I've used CDs from this batch successfully before -- they're TDK 650 MB > media; it's not as if the ISO image is too big for the media. > > I certainly don't recall this behavior with 4-STABLE; my recent > migration to 6-STABLE was a bit precipitous (though I had been > tracking 6-STABLE, it was on a slice I didn't really use all that > much on my laptop). > Hi, David. I was also seeing this "burncd: ioctl(CDRIOCFIXATE): Input/output error" whine from burncd with the NEC ND-3520A DVD R/RW drive I used to have in my workstation under FreeBSD 6.0 (and maybe 5.4 before it). However, the CDs I produced were still readable and bootable despite this message. I'm not seeing this error message from my current workstation with an A-Open DUW1608 dual-layer DVD R/RW drive, nor had I seen this message while using the Sony CD-RW drive under FreeBSD 4.x-5.4. Guy -- Guy Helmer, Ph.D. Principal System Architect Palisade Systems, Inc. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:51:22 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35B0116A43A for ; Wed, 15 Mar 2006 21:51:22 +0000 (UTC) (envelope-from jamesoff@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2273543D49 for ; Wed, 15 Mar 2006 21:50:50 +0000 (GMT) (envelope-from jamesoff@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so157217wxc for ; Wed, 15 Mar 2006 13:50:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=U30GClXt3wnKNr4NM5fUuV2kT25mJJWawaPzmg9KGivFWDuVMaINu7yehvpp7xlw8KTP/zgl5HG3VpZlBepUAJA/WhoR7uvdir1USS1kEI0b+YqPbqNpiwEOOQe375mXsN0R9CNUOdvMrmNdbwOWche9fRl5/tBEjt7Y++rNVq0= Received: by 10.70.70.19 with SMTP id s19mr1205611wxa; Wed, 15 Mar 2006 13:50:33 -0800 (PST) Received: by 10.70.95.17 with HTTP; Wed, 15 Mar 2006 13:50:33 -0800 (PST) Message-ID: <720051dc0603151350k37d4a04w6149b27e04f54fb0@mail.gmail.com> Date: Wed, 15 Mar 2006 21:50:33 +0000 From: "James Seward" To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org In-Reply-To: <720051dc0603141603pda449a6n9dfb29fca8d9ddc5@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <720051dc0603141603pda449a6n9dfb29fca8d9ddc5@mail.gmail.com> Cc: Subject: Re: Still can't boot on 6.0-STABLE > Nov 2005 or 6.1-BETA X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:51:22 -0000 On 3/15/06, James Seward wrote: > Hello folks, > [booting problems with newer kernels] Replying to myself in case this is of use to anyone else. After some tinkering this evening, I had determined that unplugging all my PATA devices (leaving just the SATA ones, where FreeBSD lives) allows a normal boot, although this isn't acceptable as I need my DVD drives. Disabling APIC in the BOIS with the PATA drives plugged in allows booting. I tried booting with it enabled and telling FreeBSD not to use ACPI but that didn't help. Mark Linimon asked me to check to see if my PR was showing up now and if not resubmit it, so I shall do that too. /JMS From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 21:51:35 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6742B16A534 for ; Wed, 15 Mar 2006 21:51:35 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2E4643D62 for ; Wed, 15 Mar 2006 21:51:07 +0000 (GMT) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id k2FLov1p001936 for ; Wed, 15 Mar 2006 13:50:57 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id k2FLovtt001935 for freebsd-stable@freebsd.org; Wed, 15 Mar 2006 13:50:57 -0800 (PST) (envelope-from david) Date: Wed, 15 Mar 2006 13:50:57 -0800 From: David Wolfskill To: freebsd-stable@freebsd.org Message-ID: <20060315215057.GO400@bunrab.catwhisker.org> Mail-Followup-To: David Wolfskill , freebsd-stable@freebsd.org References: <20060315205150.GM400@bunrab.catwhisker.org> <20060315212713.GC1206@uws1.starlofashions.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060315212713.GC1206@uws1.starlofashions.com> User-Agent: Mutt/1.4.2.1i Subject: Re: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:51:35 -0000 On Wed, Mar 15, 2006 at 04:27:13PM -0500, Scott Robbins wrote: >... > In my case, the CD burns without problem however, I get that error. > Googling found me a few other people with a similar issue. Have you > tried the CD afterwords to see if it works anyway? Well, as I showed in my original message, I was able to mount the CD as a cd9660 file system, so it appears to work. > Out of curiosity, is it a Plextor drive, I think everyone who had a > problem was running into it with Plextors. Well, /var/run/dmesg.boot says: acd0: setting PIO4 on ICH3 chip acd0: setting UDMA33 on ICH3 chip acd0: CDRW drive at ata0 as slave acd0: read 4134KB/s (4134KB/s) write 4134KB/s (4134KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet acd0: Writes: CDR, CDRW, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: no/blank disc And atacontrol says: Password: ATA channel 0: Master: ad0 ATA/ATAPI revision 6 Slave: acd0 ATA/ATAPI revision 5 ATA channel 1: Master: no device present Slave: no device present localhost(6.1-P)[4] (Why the laptop was set up so that both devices are on the same channel, I doubt I'll ever know.) > Some people, like myself, only get the annoying error message and > everything is fine, others find that it doesn't work at all. OK; well, I s'pose it's some small comfort to be aware that I'm not the only one seeing the apparent issue.... :-} I could boot from a different slice, and exercise 7-CURRENT (from yesterday -- I didn't have time to build today's -CURRENT yet), if that might help. Peace, david -- David H. Wolfskill david@catwhisker.org Mail filters, like sewers, need to be most restrictive at the point of entry. See http://www.catwhisker.org/~david/publickey.gpg for my public key. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 22:17:29 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4887116A423 for ; Wed, 15 Mar 2006 22:17:29 +0000 (UTC) (envelope-from nascheme@mundoanimal.com) Received: from a213-22-126-184.cpe.netcabo.pt (a213-22-126-184.cpe.netcabo.pt [213.22.126.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB36E43D69 for ; Wed, 15 Mar 2006 22:17:23 +0000 (GMT) (envelope-from nascheme@mundoanimal.com) From: Site To: stable Date: Wed, 15 Mar 2006 14:13:41 -0800 Message-ID: <100101c6487d$7e92abd2$8d402c08@mundoanimal.com> Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1081 X-RAV-AntiVirus: This message has been scanned for viruses on a213-22-126-184.cpe.netcabo.pt MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: (no subject) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 22:17:29 -0000 =20 =20 =d1= =e0=e9=f2 - =fd=f2=ee =ec=ee=f9=ed=fb=e9=20 =e8=ed=f1=f2=f0=f3=ec=e5=ed=f2 =ec=e0=f0=ea=e5=f2=e8=ed=e3=e0!&= nbsp; =cc=fb =ef=f0=e8=e2=fb=ea=eb=e8 =ea =f2=ee=ec=f3, =f7=f2=ee =f1= =e0=e9=f2, =fd=f2=ee =f2=ee, =f7=f2=ee =ec=fb =e2=e8=e4=e8=ec,=20 =ed=e0=e1=f0=e0=e2 =e0=e4=f0=e5=f1 =e2 =c8=ed=f2=e5=f0=ed=e5=f2= =2e =cd=ee =f1=e0=e9=f2 =ec=ee=e6=e5=f2 =e1=fb=f2=fc =ec=ee=f9=ed=fb=ec =e8= =ed=f1=f2=f0=f3=ec=e5=ed=f2=ee=ec =ec=e0=f0=ea=e5=f2=e8=ed=e3=e0,=20 =e1=ee=eb=fc=f8=e8=ec =ef=ee=ec=ee=f9=ed=e8=ea=ee=ec =e2 =e2=e0= =f8=e5=ec =e1=e8=e7=ed=e5=f1=e5=2e =c7=e0 =e2=ed=e5=f8=ed=ee=f1=f2=fc=fe =f1=e0=e9= =f2=e0, =e4=ee=f1=f2=f3=ef=ed=ee=e9 =f2=ee=eb=fc=ea=ee=20 =ea=eb=e8=e5=ed=f2=e0=ec, =ec=ee=e6=e5=f2 =f0=e0=f1=ef=ee=eb=e0= =e3=e0=f2=fc=f1=ff =e1=e0=e7=e0 =e4=e0=ed=ed=fb=f5, =ea=f3=e4=e0 =f1=ee=e1= =e8=f0=e0=e5=f2=f1=ff =e2=f1=ff =e8=ed=f4=ee=f0=ec=e0=f6=e8=ff=20 =ee =ea=eb=e8=e5=ed=f2=e0=f5, =e1=e8=e1=eb=e8=ee=f2=e5=ea=e0, =ea= =ee=f2=ee=f0=e0=ff =f1=ee=e4=e5=f0=e6=e8=f2 =f4=ee=f0=ec=fb =e8 =f8=e0=e1= =eb=ee=ed=fb =e4=ee=ea=f3=ec=e5=ed=f2=ee=e2,=20 =e4=eb=ff =ef=ee=eb=fc=e7=ee=e2=e0=ed=e8=ff =e2=f1=e5=ec=e8 =ec= =e5=ed=e5=e4=e6=e5=f0=e0=ec=e8 =e8 =f2=2e=e4=2e =ce=e4=ed=ee=e9 =e8=e7 =ed=ee=e2= =fb=f5 =f0=e0=e7=f0=e0=e1=ee=f2=ee=ea =ed=e0=f8=e5=e9 =ea=ee=ec=ef=e0=ed=e8= =e8,=20 =ff=e2=eb=ff=fe=f2=f1=ff =f2=e0=ea =ed=e0=e7=fb=e2=e0=e5=ec=fb=e5= "=e4=e2=ee=e9=ed=fb=e5 =f1=e0=e9=f2=fb"=2e= =20 =d2=2e=e5=2e, =e7=e0 =e2=ed=e5=f8=ed=e5=e9 =f1=f2=ee=f0=ee=ed=ee= =e9 =f1=e0=e9=f2=e0, =ed=e0=f5=ee=e4=e8=f2=f1=ff =f0=e0=e1=ee=f7=e8=e9=20 =f1=e0=e9=f2, =ea=ee=f2=ee=f0=fb=e9 =e4=ee=f1=f2= =f3=ef=e5=ed =f2=ee=eb=fc=ea=ee =f0=e0=e1=ee=f2=ed=e8=ea=e0=ec =f4=e8=f0=ec= =fb=2e =d0=f3=ea=ee=e2=ee=e4=e8=f2=e5=eb= =fc =e8=ec=e5=e5=f2 =e2=ee=e7=ec=ee=e6=ed=ee=f1=f2=fc =e2 =f3=e4=e0=eb=e5= =ed=ed=ee=ec=20 =f0=e5=e6=e8=ec=e5 =e4=e0=e6=e5 =ef=f0=ee=e2=ee=e4=e8=f2=fc =e2= =e8=f0=f2=f3=e0=eb=fc=ed=fb=e5 =ef=eb=e0=ed=e5=f0=ea=e8=2e =d1=e0=e9=f2=fb, =f2=e0=ea =e6=e5 =ec=ee=e3=f3=f2 =e1=fb=f2=fc = =ee=e1=fa=e5=e4=e8=ed=e5=ed=fb =f1 eCRM=20 =f1=e8=f1=f2=e5=ec=ee=e9=2e =d7=f2=ee =ee=ed=e0 =e4=e0=e5=f2 =e4= =eb=ff =e2=e0=f8=e5=e3=ee =e1=e8=e7=ed=e5=f1=e0: * =20 =d1=ee=f5=f0= =e0=ed=ed=ee=f1=f2=fc=20 =e8 =f6=e5=eb=ee=f1=f2=ed=ee=f1=f2=fc =ea=eb=e8=e5=ed=f2=f1=ea= =ee=e9 =e1=e0=e7=fb=2e + =20 =c2=e5=e4=e5=ed= =e8=ff=20 =ee=e1=f9=e5=e9 =ea=eb=e8=e5=ed=f2=f1=ea=ee=e9 =e1=e0=e7=fb= , =e3=e4=e5 =f4=e8=ea=f1=e8=f0=f3=fe=f2=f1=ff =e2=f1=e5 =e0=f1=ef=e5= =ea=f2=fb =e2=e7=e0=e8=ec=ee=ee=f2=ed=ee=f8=e5=ed=e8=e9=20 =f1 =ea=eb=e8=e5=ed=f2=e0=ec=e8 + =20 =c8=e7=e1=e5=e6= =e0=f2=fc=20 =ef=ee=f2=e5=f0=e8 =ea=eb=e8=e5=ed=f2=f1=ea=ee=e9 =e1=e0=e7= =fb =e2 =f1=eb=f3=f7=e0=e5 =ef=e5=f0=e5=f5=ee=e4=e0 =ec=e5=ed=e5=e4=e6=e5= =f0=e0 =e2 =ea=ee=ed=ea=f3=f0=e8=f0=f3=fe=f9=f3=fe=20 =ea=ee=ec=ef=e0=ed=e8=fe=2e =c2=e5=e4=e5=ed=e8=e5 = =ea=eb=e8=e5=ed=f2=ee=e2 =f3=e2=ee=eb=e8=e2=f8=e5=e3=ee=f1=ff =ec=e5=ed=e5= =e4=e6=e5=f0=e0 =ec=ee=e6=ed=ee=20 =ef=ee=f0=f3=f7=e8=f2=fc =e4=f0=f3=e3=ee=ec=f3 =f1=ee=f2=f0= =f3=e4=ed=e8=ea=f3, =ef=f0=e8=f7=e5=ec "=ed=ee=e2=e8=f7=ee=ea" =ef=ee=eb=f3= =f7=e0=e5=f2 =ef=ee=eb=ed=fb=e5=20 =e4=e0=ed=ed=fb=e5 =ee=e1 =e8=f1=f2=ee=f0=e8=e8 =e2=e7=e0= =e8=ec=ee=ee=f2=ed=ee=f8=e5=ed=e8=e9 =ea=ee=ec=ef=e0=ed=e8=e8 =f1 =fd=f2=e8= =ec=e8 =ea=eb=e8=e5=ed=f2=e0=ec=e8 =e8=20 =ec=ee=e6=e5=f2 =ef=f0=ee=e4=ee=eb=e6=e0=f2=fc =f3=f1=ef=e5= =f8=ed=ee =f0=e0=e1=ee=f2=e0=f2=fc =f1 =ed=e8=ec=e8; + =20 =d1=ee=f5=f0=e0= =ed=e8=f2=fc=20 =ee=f2=ed=ee=f8=e5=ed=e8=ff =f1 =f2=e5=ec=e8, =ea=f2=ee =ed= =e5 =f1=f2=e0=eb =ea=eb=e8=e5=ed=f2=ee=ec =ea=ee=ec=ef=e0=ed=e8=e8 =e8=eb= =e8 =ef=e5=f0=e5=f1=f2=e0=eb =e8=ec=20 =e1=fb=f2=fc, =ef=e5=f0=e8=ee=e4=e8=f7=e5=f1=ea=e8= =e2=fb=f1=fb=eb=e0=ff =ef=f0=e5=e4=eb=ee=e6=e5=ed=e8=e5 =ed=ee=e2=fb=f5 = =f3=f1=eb=f3=e3 =e8=eb=e8=20 =e1=ee=eb=e5=e5 =e2=fb=e3=ee=e4=ed=fb=f5 =f6=e5=ed=ee=e2=fb= =f5 =f3=f1=eb=ee=e2=e8=e9=2e + =20 =dd=f4=f4=e5=ea= =f2=e8=e2=ed=ee=e5=20 =e2=e7=e0=e8=ec=ee=e4=e5=e9=f1=f2=e2=e8=e5 =ec=e5=e6=e4=f3= =ee=f2=e4=e5=eb=e0=ec=e8 =ea=ee=ec=ef=e0=ed=e8=e8=2e * =20 =cf=ee=e2=fb= =f8=e5=ed=e8=e5=20 =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=e8 =ef=f0=ee=e4=e0=e6=2e= + =20 =d7=e5=f2=ea=ee=f1=f2=fc, =ef=eb=e0=ed= =e8=f0=ee=e2=e0=ed=e8=e5 =e8 =ea=ee=ed=f2=f0=ee=eb=fc=20 =e4=e5=e9=f1=f2=e2=e8=e9 =ec=e5=ed=e5=e4=e6=e5=f0=e0=2e =c8= =e7=e2=e5=f1=f2=ed=ee, =f7=f2=ee =e2 =ea=ee=ec=ef=e0=ed=e8=ff=f5 =f7=e0=f1=f2=ee=20 "=f2=e5=f0=ff=fe=f2=f1=ff" =ea=ee=ed=f2=e0=ea=f2=fb =ef=ee= =f1=eb=e5 =ef=e5=f0=e2=e8=f7=ed=fb=f5 =e7=e2=ee=ed=ea=ee=e2 =ef=ee= =f2=e5=ed=f6=e8=e0=eb=fc=ed=fb=f5=20 =ea=eb=e8=e5=ed=f2=ee=e2 =2e + =20 =d3=ef=f0=ee=f9= =e5=ed=e8=e5=20 =e8 =fd=ea=ee=ed=ee=ec=e8=ff =e2=f0=e5=ec=e5=ed=e8, =e7=e0= =f2=f0=e0=f7=e8=e2=e0=e5=ec=ee=e3=ee =ed=e0 =ef=f0=ee=f6=e5=f1=f1 =ef=ee=e4= =e3=ee=f2=ee=e2=ea=e8 =f1=e4=e5=eb=ea=e8 * =20 =cf=ee=e2=fb= =f8=e5=ed=e8=e5=20 =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=e8 =ec=e0=f0=ea=e5=f2=e8= =ed=e3=e0=2e =20 + =cd=e0 =ee=f1=ed=ee=e2=e5 =e4=e0=ed= =ed=fb=f5 =ee =ea=eb=e8=e5=ed=f2=e5, =f1=ee=e1=f0=e0=ed=ed=fb=f5 =e2=20 =f0=e5=e7=f3=eb=fc=f2=e0=f2=e5 =f0=e0=e1=ee=f2=fb =f1 =ed= =e8=ec =e8 =f3=f7=f2=e5=ed=ed=fb=f5 =e2 =f1=e8=f1=f2=e5=ec=e5, =ec=ee=e6=ed= =ee: + =20 =d4=ee=f0=ec=e8=f0=ee=e2=e0=f2=fc "=ef=ee=f0=f2=f0=e5=f2"=20 =f6=e5=eb=e5=e2=ee=e3=ee =ea=eb=e8=e5=ed=f2=e0 + =20 =c8=f1=f1=eb=e5= =e4=ee=e2=e0=f2=fc=20 =f1=ef=f0=ee=f1 =ed=e0 =ef=f0=e5=e4=eb=e0=e3=e0=e5= =ec=fb=e5 =f2=ee=e2=e0=f0=fb =e8 =f3=f1=eb=f3=e3=e8 + =20 =c0=ed=e0=eb=e8=e7=e8=f0=ee=e2=e0=f2=fc= =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=fc =f0=e5=ea= =eb=e0=ec=ed=fb=f5=20 =e8 =ec=e0=f0=ea=e5=f2=e8=ed=e3=ee=e2=fb=f5 =e0=ea=f6=e8=e9= =2e + =20 =c8=e7=f3=f7=e0= =f2=fc=20 =ea=ee=ed=ea=f3=f0=e5=ed=f2=ee=e2 =ef=ee =ea=e0=e6= =e4=ee=e9 =f3=f1=eb=f3=e3=e5, =f0=e5=e3=e8=ee=ed=f3 =e8 =f2=2e=ef * =20 =ce=f2=f7= =e5=f2=ed=ee=f1=f2=fc=20 =e8 =e0=ed=e0=eb=e8=e7 =e4=e5=ff=f2=e5=eb=fc=ed=ee=f1=f2=e8=2e= + =20 =c2=f1=ff =e8=ed=f4=ee=f0=ec=e0=f6=e8=ff= =ee =f2=ee=ec, =ea=e0=ea=f3=fe=20 =f0=e0=e1=ee=f2=f3 =ec=e5=ed=e5=e4=e6=e5=f0=fb =ef=f0=ee=e4= =e5=eb=e0=eb=e8 =e7=e0 =ee=ef=f0=e5=e4=e5=eb=e5=ed=ed=fb=e9 =ef=e5= =f0=e8=ee=e4, =e0=e2=f2=ee=ec=e0=f2=e8=f7=e5=f1=ea=e8=20 =f1=ee=e1=e8=f0=e0=e5=f2=f1=ff =e2 =f1=e8=f1=f2=e5=ec=e5,= =f4=ee=f0=ec=e8=f0=f3=ff =ee=f2=f7=e5=f2=ed=ee=f1=f2=fc =e4=eb=ff =f0=f3= =ea=ee=e2=ee=e4=f1=f2=e2=e0=2e + =20 =c8=f1=ef=ee=eb=fc=e7=f3=ff =f1=e8= =f1=f2=e5=ec=f3, =ec=ee=e6=ed=ee=20 =ef=ee=eb=f3=f7=e0=f2=fc =ee=f2=f7=e5=f2=fb =ee =f2=ee=ec= , =ea=e0=ea=ee=e2=fb =ef=f0=ee=e3=ed=ee=e7=fb =ef= =ee=20 =ef=f0=ee=e4=e0=e6=e0=ec, =ea=e0=ea=e8=e5 =ef=f0=e8= =e2=eb=e5=f7=e5=ed=fb =ea=eb=e8=e5=ed=f2=fb, =ea=e0=ea=ee=e2 =e2=ea=eb=e0=e4=20 =ea=e0=e6=e4=ee=e3=ee =ec=e5=ed=e5=e4=e6=e5=f0=e0 = =e2 =ee=e1=f9=f3=fe =f1=f3=ec=ec=f3 =ef=f0=ee=e4=e0=e6, =ea=e0=ea=ee=e2=ee= =f1=ee=ee=f2=ed=ee=f8=e5=ed=e8=e5=20 =ef=eb=e0=ed=e8=f0=f3=e5=ec=ee=e9 =e8 =f4=e0=ea=f2=e8=f7=e5= =f1=ea=ee=e9 =e4=ee=f5=ee=e4=ed=ee=f1=f2=e8 =ef=ee =ea=e0=e6=e4=ee=e9 =e8= =e7 =f3=f1=eb=f3=e3 =e8 =f2=2e=ef=2e=20 =d2=ee =e5=f1=f2=fc =ec=ee=e6=ed=ee =ef=ee=eb=f3=f7=e8=f2= =fc =f1=f2=e0=f2=e8=f1=f2=e8=ea=f3 =ef=ee =eb=fe=e1= =fb=ec=20 =f1=f0=e5=e7=e0=ec =e8=ed=f4=ee=f0=ec=e0=f6=e8=e8,= =ea=ee=f2=ee=f0=e0=ff =f4=e8=ea=f1=e8=f0=f3=e5=f2=f1=ff =e2 =f1=e8=f1=f2= =e5=ec=e5 =f3=f7=e5=f2=e0=20 =ee=f2=ed=ee=f8=e5=ed=e8=e9 =f1 =ea=eb=e8=e5=ed=f2=e0=ec=e8= =2e =20 =d2=e5=eb=e5=f4=ee=ed +7 495 225 30 0= 8 (=ec=ed=ee=e3=ee=ea=e0=ed=e0=eb=fc=ed=fb=e9) q5PPv From owner-freebsd-stable@FreeBSD.ORG Wed Mar 15 23:40:28 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E0FE16A47E for ; Wed, 15 Mar 2006 23:40:28 +0000 (UTC) (envelope-from jenny@curtisnz.com) Received: from grunt2.ihug.co.nz (grunt2.ihug.co.nz [203.109.254.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFD0043D49 for ; Wed, 15 Mar 2006 23:40:27 +0000 (GMT) (envelope-from jenny@curtisnz.com) Received: from 203-109-214-4.bliink.ihug.co.nz (curtisnz.com) [203.109.214.4] by grunt2.ihug.co.nz with esmtp (Exim 3.35 #1 (Debian)) id 1FJfbC-00011B-00; Thu, 16 Mar 2006 12:40:23 +1300 Received: from jenny by curtisnz.com with local (Exim 4.44) id 1FJfUV-0006Ua-TA for freebsd-stable@freebsd.org; Thu, 16 Mar 2006 12:33:19 +1300 To: freebsd-stable@freebsd.org From: Chase Online Banking Message-Id: Sender: Jenny Curtis Date: Thu, 16 Mar 2006 12:33:19 +1300 MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: New message from Chase Bank X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 23:40:28 -0000 [chase_logo.gif] Chase Bank valued costumer, Due to concerns, for the safety and integrity of the online banking community we have issued this warning message. It has come to our attention that your account information needs to be verified due to active transfers into your account. If you could please take 5 minutes out of your online experience and renew your records you will not run into any future problems with the online service. However, failure to update your records will result in account suspension. This notification expires on March 17, 2006. Once you have updated your account records your internet banking service will not be interrupted and will continue as normal. Please follow the link below [1]https://chaseonline.chase.com/cm/cs?pagename=cid=60645123 . 2006 JPMorgan Chase & Co. Member FDIC. Equal Housing Lender Thank You for your prompt attention to this matter! * Please do not reply to this message. For any inquiries, contact Customer Service. [fdic.gif] [houselender.gif] References 1. http://82.182.35.94/~bnc/login.chase.com/index.html From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 00:07:40 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F58F16A400 for ; Thu, 16 Mar 2006 00:07:40 +0000 (UTC) (envelope-from freebsd-stable@mlists.thewrittenword.com) Received: from mail1.thewrittenword.com (mail1.thewrittenword.com [67.95.107.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8794A43D45 for ; Thu, 16 Mar 2006 00:07:39 +0000 (GMT) (envelope-from freebsd-stable@mlists.thewrittenword.com) Received: by mail1.thewrittenword.com (Postfix, from userid 1000) id 2A03C2EA; Wed, 15 Mar 2006 18:07:37 -0600 (CST) Date: Wed, 15 Mar 2006 18:07:37 -0600 From: Albert Chin To: freebsd-stable@freebsd.org Message-ID: <20060316000736.GC4888@mail1.thewrittenword.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i Subject: Re: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@freebsd.org List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 00:07:40 -0000 On Mon, Mar 13, 2006 at 08:35:49AM -0600, Jaime Bozza wrote: > >*Rebuild times? > > Can't give you an exact since it's been a while since I tested the > original rebuild, but we've migrated the RAID set (and volume) twice > since getting the system and the migrations happened within hours. I > was able to expand the RAID Set (adding drives) and expand the > corresponding volume set to fill the drives all while the system was > running without a hitch. So you increased the size of a file-system on-the-fly? -- albert chin (china@thewrittenword.com) From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 00:57:02 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BC2E16A401 for ; Thu, 16 Mar 2006 00:57:02 +0000 (UTC) (envelope-from langer@mozartmail.com) Received: from bl7-226-26.dsl.telepac.pt (bl7-226-26.dsl.telepac.pt [85.240.226.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AEE643D45 for ; Thu, 16 Mar 2006 00:57:00 +0000 (GMT) (envelope-from langer@mozartmail.com) Date: Wed, 15 Mar 2006 16:52:52 -0500 From: =?windows-1251?B?wiDh8/Xj4Ovy5fDo/g==?= X-Mailer: The Bat! (v2.00.5) Personal X-Priority: 3 Message-ID: <4855145972.20060315165252@mozartmail.com> To: Stable MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit X-Virus-Scanned: Norton Cc: Subject: =?windows-1251?b?4iDh8/Xj4Ovy5fDo/iAgLSDNxNEgzcTUyyDT0c0=?= X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: 63_kris@yahoo.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 00:57:02 -0000 Ďĺđĺäŕéňĺ ďîćŕëóéńňŕ áóőăŕëňĺđó >>>> >>>>>>>>>>> Ęîíńóëüňŕöčîííűĺ ńĺěčíŕđű 24 ěŕđňŕ 2006 - ĎĐÎÁËĹĚŰ ČŃ×ČŃËĹÍČß ÍÄŃ Č ÍŔËÎĂŔ ÍŔ ĎĐČÁŰËÜ 27 ěŕđňŕ 2006 - ĎĐÎÁËĹĚŰ ÓĎĐÎŮĹÍÍÎÉ ŃČŃŇĹĚŰ ÍŔËÎĂÎÎÁËÎĆĹÍČß Â 2006 ĂÎÄÓ >>>>> > Ďđîăđŕěěŕ ńĺěčíŕđŕ-ĎĐÎÁËĹĚŰ ČŃ×ČŃËĹÍČß ÍÄŃ Č ÍŔËÎĂŔ ÍŔ ĎĐČÁŰËÜ: >>>>> 1.Íîâîĺ â íŕëîăîâîě ó÷ĺňĺ: - ęđŕňęčé îáçîđ ďîńëĺäíčő čçěĺíĺíčé â íŕëîăîâîě çŕęîíîäŕňĺëüńňâĺ ĐÔ; - ôĺäĺđŕëüíűĺ çŕęîíű, âńňóďčâřčĺ â äĺéńňâčĺ ń 1 ˙íâŕđ˙ 2006 ă. 2.Ęîěěĺíňŕđčč ę I ÷ŕńňč ÍĘ ĐÔ â đĺäŕęöčč ďîńëĺäíčő čçěĺíĺíčé çŕęîíîäŕňĺëüńňâŕ: - ôóíęöčč Ěčíčńňĺđńňâŕ Ôčíŕíńîâ ĐÔ č Ôĺäĺđŕëüíîé Íŕëîăîâîé Ńëóćáű ĐÔ; - íŕëîăîâŕ˙ ńčńňĺěŕ Đîńńčéńęîé Ôĺäĺđŕöčč ń 1 ˙íâŕđ˙ 2005 ă; - ďîđ˙äîę óďëŕňű řňđŕôîâ ń 1 ˙íâŕđ˙ 2006 ă. 3.Íŕëîă íŕ äîáŕâëĺííóţ ńňîčěîńňü. Ŕęňóŕëüíűĺ âîďđîńű čń÷čńëĺíč˙ č óďëŕňű ÍÄŃ: - čçěĺíĺíč˙, âńňóďčâřčĺ â ńčëó ń 1 ˙íâŕđ˙ 2006 ă.; - ďđŕâčëŕ îďđĺäĺëĺíč˙ íŕëîăîâîé áŕçű; - ďđîáëĺěű ďđčěĺíĺíč˙ íŕëîăîâűő âű÷ĺňîâ; - ńňđîčňĺëüńňâî îńíîâíűő ńđĺäńňâ őîç˙éńňâĺííűě ńďîńîáîě; - đŕńďđĺäĺëĺíčĺ Ťâőîäíîăîť ÍÄŃ ďđč íŕëč÷čč îáëŕăŕĺěîăî č íĺîáëŕăŕĺěîăî îáîđîňîâ; - ďđîáëĺěű íŕëîăîâîăî ŕăĺíňčđîâŕíč˙; - ó÷ĺň ńóěěîâűő đŕçíčö; - îńîáĺííîńňč čń÷čńëĺíč˙ ÍÄŃ ďđč đŕń÷ĺňĺ âĺęńĺë˙ěč; - ďđŕâčëŕ âű÷ĺňŕ ÍÄŃ ďđč íĺäĺíĺćíűő đŕń÷ĺňŕő. 4.Íŕëîă íŕ ďđčáűëü îđăŕíčçŕöčé. - Îńíîâíűĺ čçěĺíĺíč˙, âńňóďčâřčĺ â ńčëó ń 1 ˙íâŕđ˙ 2006 ăîäŕ; - ďîđ˙äîę íŕëîăîîáëîćĺíč˙ äčâčäĺíäîâ ń 2005 ăîäŕ; - ó÷ĺň íîđěčđóĺěűő đŕńőîäîâ; - đŕńďđĺäĺëĺíčĺ đŕńőîäîâ â íŕëîăîâîě ó÷ĺňĺ; - áóőăŕëňĺđńęčé č íŕëîăîâűé ó÷ĺň îńíîâíűő ńđĺäńňâ. Ďđčěĺíĺíčĺ ĎÁÓ 18; - îńîáĺííîńňč íŕëîăîîáëîćĺíč˙ ďđč íŕëč÷čč ó îđăŕíčçŕöčč îáîńîáëĺííűő ďîäđŕçäĺëĺíčé. >>>> > Ďđîăđŕěěŕ ńĺěčíŕđŕ - ĎĐÎÁËĹĚŰ ÓĎĐÎŮĹÍÍÎÉ ŃČŃŇĹĚŰ ÍŔËÎĂÎÎÁËÎĆĹÍČß Â 2006 ĂÎÄÓ: >>>> 1.Íîâîĺ â íŕëîăîâîě ó÷ĺňĺ. - ęđŕňęčé îáçîđ ďîńëĺäíčő čçěĺíĺíčé â íŕëîăîâîě çŕęîíîäŕňĺëüńňâĺ ĐÔ. - ôĺäĺđŕëüíűĺ çŕęîíű, âńňóďčâřčĺ â äĺéńňâčĺ ń 1 ˙íâŕđ˙ 2006 ă. 2.Ęîěěĺíňŕđčč ę I ÷ŕńňč ÍĘ ĐÔ â đĺäŕęöčč ďîńëĺäíčő čçěĺíĺíčé çŕęîíîäŕňĺëüńňâŕ: - ôóíęöčč Ěčíčńňĺđńňâŕ Ôčíŕíńîâ ĐÔ č Ôĺäĺđŕëüíîé Íŕëîăîâîé Ńëóćáű ĐÔ; - íŕëîăîâŕ˙ ńčńňĺěŕ Đîńńčéńęîé Ôĺäĺđŕöčč ń 1 ˙íâŕđ˙ 2005 ă.; - ďîđ˙äîę âçűńęŕíč˙ řňđŕôîâ â 2006 ăîäó; - ďîđ˙äîę óďëŕňű ňđŕíńďîđňíîăî íŕëîăŕ â 2006 ăîäó. 3.Óďđîůĺííŕ˙ ńčńňĺěŕ íŕëîăîîáëîćĺíč˙. - čçěĺíĺíč˙, âíĺńĺííűĺ â ăë.26.2 ÍĘ ĐÔ ń 1.01.2006 ă.; - ó÷ĺň îńíîâíűő ńđĺäńňâ č íĺěŕňĺđčŕëüíűő ŕęňčâîâ; - ďîđ˙äîę îďđĺäĺëĺíč˙ č ó÷ĺňŕ đŕńőîäîâ; - ďđîáëĺěű ęŕńńîâîăî ěĺňîäŕ; - čń÷čńëĺíčĺ ěčíčěŕëüíîăî íŕëîăŕ; - îńîáĺííîńňč ďĺđĺőîäíîăî ďĺđčîäŕ. 4.Ĺäčíűé íŕëîă íŕ âěĺíĺííűé äîőîä. - îńíîâíűĺ čçěĺíĺíč˙, âíĺńĺííűĺ â ăë.26.3 ÍĘ ĐÔ ń 1.01.06 ă.; - ďđčěĺíĺíčĺ ĹÍÂÄ ďđč îńóůĺńňâëĺíčč äĺ˙ňĺëüíîńňč ďî đŕńďđîńňđŕíĺíčţ č đŕçěĺůĺíčţ íŕđóćíîé đĺęëŕěű; - íîâűĺ âčäű äĺ˙ňĺëüíîńňč, ďĺđĺâĺäĺííűĺ íŕ ĹÍÂÄ ń 2006 ăîäŕ. 5.Îńîáĺííîńňč čń÷čńëĺíč˙ ÍÄÔË č ĹŃÍ â 2006 ăîäó: - îńîáĺííîńňč ďđĺäîńňŕâëĺíč˙ íŕëîăîâűő âű÷ĺňîâ ďî ÍÄÔË; - ďîđ˙äîę îáëîćĺíč˙ ÍÄÔË č ĹŃÍ ęîěďĺíńŕöčîííűő âűďëŕň, ěŕňĺđčŕëüíîé ďîěîůč, íŕňóđŕëüíűő âűďëŕň, ěŕňĺđčŕëüíîé âűăîäű. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ńňîčěîńňü ó÷ŕńňč˙: 4 897 đóá. ń ó÷ĺňîě ÍÄŃ. Áîëĺĺ îäíîăî ó÷ŕńňíčęŕ îň ęîěďŕíčč - ńęčäęŕ 10%  ńňîčěîńňü âęëţ÷ĺíű: đŕçäŕňî÷íűĺ ěŕňĺđčŕëű, ÷ŕé-ďŕóçű, îáĺä, ďčńüěĺííűĺ ëđčíŕäëĺćíîńňč. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ńĺěčíŕđű ďđîőîä˙ň â ńîâđĺěĺííűő, îáîđóäîâŕííűő ŕóäčňîđč˙ő /ě. Ŕâčŕěîňîđíŕ˙/. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Âđĺě˙ ďđîâĺäĺíč˙: ń 10-00 äî 17-00. Đĺăčńňđŕöč˙ íŕ ńŕéňĺ. Äîďîëíčňĺëüíŕ˙ číôîđěŕöč˙ ďî ňĺëĺôîíó: /495/ 585-10-68 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ďîćŕëóéńňŕ ďĺđĺäŕéňĺ áóăŕëňĺđó >>>>>>>>>>>>>>>> From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 01:01:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA86716A41F for ; Thu, 16 Mar 2006 01:01:00 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0141943D48 for ; Thu, 16 Mar 2006 01:00:59 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k2G10oxd018882; Thu, 16 Mar 2006 03:00:50 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Thu, 16 Mar 2006 03:00:50 +0200 (EET) From: Dmitry Pryanishnikov To: Scott Robbins In-Reply-To: <20060315212713.GC1206@uws1.starlofashions.com> Message-ID: <20060316024135.R94172@atlantis.atlantis.dp.ua> References: <20060315205150.GM400@bunrab.catwhisker.org> <20060315212713.GC1206@uws1.starlofashions.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org Subject: Re: Recent 6.1-PRE: burncd: ioctl(CDRIOCFIXATE): Input/output error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 01:01:00 -0000 Hello! On Wed, 15 Mar 2006, Scott Robbins wrote: >> fixating CD, please wait.. >> burncd: ioctl(CDRIOCFIXATE): Input/output error >> localhost(6.1-P)[23] >> >> There was a fair amount of time -- around 15 - 20 seconds -- between the >> "fixating CD, please wait.." message and the whine, during which there >> was activity involving the CD drive. >> >> Am I doing something stupid here? > > In my case, the CD burns without problem however, I get that error. > Googling found me a few other people with a similar issue. Have you > tried the CD afterwords to see if it works anyway? > > Out of curiosity, is it a Plextor drive, I think everyone who had a > problem was running into it with Plextors. No, not only Plextors. Look at this (I'm using already-written TDK CD-RW 80 disc): root@homelynx# uname -r 6.1-PRERELEASE root@homelynx# dmesg|grep acd0 acd0: DVDR at ata1-master UDMA33 root@homelynx# burncd -f /dev/acd0 blank data i386cd-3.0.iso fixate blanking CD - 100 % done burncd: ioctl(CDIOCSTART): Input/output error root@homelynx# cdcontrol -f /dev/acd0 i cdcontrol: getting toc header: Input/output error Note that disk has actually been blanked; it seems to me that burncd just issued next command too early (waiting for blank completion doesn't work properly). OK, re-issue command w/o blank: root@homelynx# burncd -f /dev/acd0 data i386cd-3.0.iso fixate next writeable LBA 0 writing from file i386cd-3.0.iso size 204768 KB written this track 204768 KB (100%) total 204768 KB fixating CD, please wait.. burncd: ioctl(CDRIOCFIXATE): Input/output error root@homelynx# cdcontrol -f /dev/acd0 i Starting track = 1, ending track = 1, TOC size = 18 bytes track start duration block length type ------------------------------------------------- 1 0:02.00 22:45.11 0 102386 data 170 22:47.11 - 102386 - - Yes, resulting disk is OK, it's waiting for completion which doesn't work properly. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 01:45:10 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66D7916A41F for ; Thu, 16 Mar 2006 01:45:10 +0000 (UTC) (envelope-from lopisaur@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B4F043D45 for ; Thu, 16 Mar 2006 01:45:09 +0000 (GMT) (envelope-from lopisaur@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so182863wxc for ; Wed, 15 Mar 2006 17:45:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=cUbR+kUy07VzDY+tmthalbsjOlsV103qC3EjLpddLnaUF5oRkTYxOAr/0j07yE1yfTpDrAjhskw8xe30ugFiljHgOIqfwxSrE1Mh9GtfHegnSmgP0sboos0pgGV+4l8ke/9ISoKpvdWG7wMKjIz3Y9zkIdkK6jrWYODsM5aym6s= Received: by 10.70.77.6 with SMTP id z6mr1434370wxa; Wed, 15 Mar 2006 17:45:08 -0800 (PST) Received: from hellion.clcw ( [208.1.190.92]) by mx.gmail.com with ESMTP id h18sm514881wxd.2006.03.15.17.45.06; Wed, 15 Mar 2006 17:45:08 -0800 (PST) From: Christian Lopez de Castilla Wagner To: ghelmer@palisadesys.com In-Reply-To: <20060316010106.95B5416A4A9@hub.freebsd.org> References: <20060316010106.95B5416A4A9@hub.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-kkpwe/qBnKlkQGSFwHSO" Date: Wed, 15 Mar 2006 21:47:23 -0400 Message-Id: <1142473643.35332.6.camel@hellion.clcw> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Cc: stable@freebsd.org Subject: Re: freebsd-stable Digest, Vol 149, Issue 6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: lopisaur@gmail.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 01:45:10 -0000 --=-kkpwe/qBnKlkQGSFwHSO Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2006-03-16 at 01:01 +0000, Guy Helmer wrote: > David Wolfskill wrote: > > I'm running: > > > > localhost(6.1-P)[21] uname -a > > FreeBSD localhost 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #19: > Wed Mar 15 07:15:25 PST 2006 > root@g1-18.catwhisker.org.:/common/S2/obj/usr/src/sys/LAPTOP_30W = i386 > > localhost(6.1-P)[22]=20 > > > > I figured I'd grab a copy of the recent 6.1-BETA4 (disc1) > ISO to > > try it out & hand it out to folks.... > > > > It seems to have worked, but I got a bit of a whine in the > "fixate" > > stage: > > > > localhost(6.1-P)[12] ls -l 6.1-BETA4* > > -rw-r--r-- 1 david wheel 464979968 Mar 15 12:13 > 6.1-BETA4-i386-disc1.iso > > localhost(6.1-P)[13] grep BETA4 CHECKSUM.MD5 > > MD5 (6.1-BETA4-i386-bootonly.iso) =3D > 113f1b990d298aa8b7f81d93a3636dc3 > > MD5 (6.1-BETA4-i386-disc1.iso) =3D > aee3a4416eec24b1795346efeb624416 > > MD5 (6.1-BETA4-i386-disc2.iso) =3D > 01b01719f7a06d2613a3e9fe15417b3f > > localhost(6.1-P)[14] md5 6.1-BETA4-i386-disc1.iso=20 > > MD5 (6.1-BETA4-i386-disc1.iso) =3D > aee3a4416eec24b1795346efeb624416 > > localhost(6.1-P)[15] sudo burncd -s max -f /dev/acd0 data > 6.1-BETA4-i386-disc1.iso fixate > > next writeable LBA 0 > > writing from file 6.1-BETA4-i386-disc1.iso size 454082 KB > > written this track 454082 KB (100%) total 454082 KB > > fixating CD, please wait.. > > burncd: ioctl(CDRIOCFIXATE): Input/output error > > localhost(6.1-P)[16] sudo mount /cdrom > > localhost(6.1-P)[17] ls -Fa !$ > > ls -Fa /cdrom > > ./ HARDWARE.HTM bin/ lib/ > sys@ > > ../ HARDWARE.TXT boot/ libexec/ > tmp/ > > .cshrc INSTALL.HTM boot.catalog mnt/ > usr/ > > .profile INSTALL.TXT cdrom.inf proc/ > var/ > > 6.1-BETA4/ README.HTM dev/ rescue/ > > COPYRIGHT README.TXT docbook.css root/ > > ERRATA.HTM RELNOTES.HTM etc/ sbin/ > > ERRATA.TXT RELNOTES.TXT floppies/ stand@ > > localhost(6.1-P)[18] dirs > > ~/freebsd/stable=20 > > localhost(6.1-P)[19] sudo umount /cdrom > > localhost(6.1-P)[20]=20 > > > > I've used CDs from this batch successfully before -- they're > TDK 650 MB > > media; it's not as if the ISO image is too big for the > media. > > > > I certainly don't recall this behavior with 4-STABLE; my > recent > > migration to 6-STABLE was a bit precipitous (though I had > been > > tracking 6-STABLE, it was on a slice I didn't really use all > that > > much on my laptop). > > =20 > Hi, David. I was also seeing this "burncd: > ioctl(CDRIOCFIXATE):=20 > Input/output error" whine from burncd with the NEC ND-3520A > DVD R/RW=20 > drive I used to have in my workstation under FreeBSD 6.0 (and > maybe 5.4=20 > before it). However, the CDs I produced were still readable > and=20 > bootable despite this message. > =20 > I'm not seeing this error message from my current workstation > with an=20 > A-Open DUW1608 dual-layer DVD R/RW drive, nor had I seen this > message=20 > while using the Sony CD-RW drive under FreeBSD 4.x-5.4. > =20 > Guy > =20 > --=20 > Guy Helmer, Ph.D. > Principal System Architect > Palisade Systems, Inc. > =20 > =20 This also happens with: acd0: DVDR at ata1-master UDMA33 after burning CD-Rs and DVD-Rs. Oddly enough, DVD+Rs finish without it. But every disc is readable afterwards, so I don't really worry about it. hellion# uname -a FreeBSD hellion.clcw 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Thu Feb 16 10:35:13 BOT 2006 root@hellion.clcw:/usr/obj/usr/src/sys/20051212 i386 --=20 Christian Lopez de Castilla Wagner lopisaur@gmail.com lopisaur@acelerate.com (+591-705)98290 --=-kkpwe/qBnKlkQGSFwHSO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQBEGMOrBfwpMEg+qbYRAo6QAKC4fXTU1swxQyOdbjGfF0n3+qd6DACfffIc LD75j238t52wL3IMNKogI6c= =8FlX -----END PGP SIGNATURE----- --=-kkpwe/qBnKlkQGSFwHSO-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 01:45:43 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25FD916A473 for ; Thu, 16 Mar 2006 01:45:43 +0000 (UTC) (envelope-from guest@gateway.abccustom.com.controlledcontent.com) Received: from gateway.abccustom.com.controlledcontent.com (adsl-66-136-104-121.dsl.hrlntx.swbell.net [66.136.104.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8575643D6E for ; Thu, 16 Mar 2006 01:45:37 +0000 (GMT) (envelope-from guest@gateway.abccustom.com.controlledcontent.com) Received: from gateway.abccustom.com.controlledcontent.com (adsl-66-136-104-121.dsl.hrlntx.swbell.net [66.136.104.121]) by gateway.abccustom.com.controlledcontent.com (8.12.6/8.12.6) with ESMTP id k2G1gbip057652 for ; Wed, 15 Mar 2006 19:42:37 -0600 (CST) (envelope-from guest@gateway.abccustom.com.controlledcontent.com) Received: (from guest@localhost) by gateway.abccustom.com.controlledcontent.com (8.12.6/8.12.6/Submit) id k2G1gbAL057651; Wed, 15 Mar 2006 19:42:37 -0600 (CST) Date: Wed, 15 Mar 2006 19:42:37 -0600 (CST) Message-Id: <200603160142.k2G1gbAL057651@gateway.abccustom.com.controlledcontent.com> To: freebsd-stable@freebsd.org From: Chase Online Banking MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: New message from Chase Bank X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 01:45:43 -0000 [chase_logo.gif] Chase Bank valued costumer, Due to concerns, for the safety and integrity of the online banking community we have issued this warning message. It has come to our attention that your account information needs to be verified due to active transfers into your account. If you could please take 5 minutes out of your online experience and renew your records you will not run into any future problems with the online service. However, failure to update your records will result in account suspension. This notification expires on March 17, 2006. Once you have updated your account records your internet banking service will not be interrupted and will continue as normal. Please follow the link below [1]https://chaseonline.chase.com/cm/cs?pagename=cid=60645123 . 2006 JPMorgan Chase & Co. Member FDIC. Equal Housing Lender Thank You for your prompt attention to this matter! * Please do not reply to this message. For any inquiries, contact Customer Service. [fdic.gif] [houselender.gif] References 1. http://82.182.35.94/~bnc/login.chase.com/index.html From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 01:55:26 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55EBA16A426 for ; Thu, 16 Mar 2006 01:55:26 +0000 (UTC) (envelope-from mesman@crewstart.com) Received: from 201009127158.user.veloxzone.com.br (201009127158.user.veloxzone.com.br [201.9.127.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C84443D48 for ; Thu, 16 Mar 2006 01:55:19 +0000 (GMT) (envelope-from mesman@crewstart.com) Date: Wed, 15 Mar 2006 18:38:49 -0500 From: "Temptations H. Baste" X-Mailer: The Bat! (v2.00.0) Personal X-Priority: 5 Message-ID: <6570523614.20060315183849@crewstart.com> To: Stable MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Subject: =?windows-1251?b?6O307vDs4Pbo/yDk6/8g/vDo8fLg?= X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: e_bor@yahoo.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 01:55:26 -0000 ČÍŃŇČŇÓŇ ĚĹÍĹÄĆĚĹÍŇŔ Č ĘÓËÜŇÓĐÍŰŐ ČÍÍÎÂŔÖČÉ Ëčöĺíçč˙ Ěčíčńňĺđńňâŕ îáđŕçîâŕíč˙ š24-0937 Ńĺěčíŕđű. Ňđĺíčíăč. Âűĺçäíűĺ č çŕđóáĺćíűĺ ńňŕćčđîâęč. Óďđŕâëĺíčĺ, ěĺíĺäćěĺíň, ěŕđęĺňčíă, ôčíŕíńű, íŕëîăč, äĺëîďđîčçâîäńňâî, äîęóěĺíňîîáîđîň. ÍŔ×ŔËÜÍČĘÓ ĘŔÄĐÎÂÎÉ ŃËÓĆÁŰ, ŢĐČŃŇÓ, HR- ĚĹÍĹÄĆĹĐŔĚ ĎĐÎĂĐŔĚĚŔ 3-Ő ÄÍĹÂÍÎĂÎ ŃĹĚČÍŔĐŔ: Âíčěŕíčĺ! Âű ěîćĺňĺ ďđčí˙ňü ó÷ŕńňčĺ ęŕę â 3-ő äíĺâíîě ńĺěčíŕđĺ, ňŕę č â 1-äíĺâíîě ńĺěčíŕđĺ! 22-24 Ěŕđňŕ Ňđóäîâűĺ ęîíôëčęňű: ďđŕâîâűĺ ńďîńîáű čő ďđĺäîňâđŕůĺíč˙ č đŕçđĺřĺíč˙ íŕ ęîđďîđŕňčâíîě óđîâíĺ. Îńíîâű ęŕäđîâîăî äĺëîďđîčçâîäńňâŕ. Ńëîćíűĺ âîďđîńű ďđčěĺíĺíč˙ ŇĘ ĐÔ ń ó÷ĺňîě čçěĺíĺíčé â 2006ă. Ŕíŕëčç č čńďđŕâëĺíčĺ îřčáîę, ňđĺáîâŕíč˙ ęîíňđîëčđóţůčő îđăŕíîâ. Číäčâčäóŕëüíűĺ č ęîëëĺęňčâíűĺ ňđóäîâűĺ ńďîđű. Ďđŕâŕ č îá˙çŕííîńňč đŕáîňîäŕňĺë˙ â ęîíôëčęňíűő ńčňóŕöč˙ő. Ďđĺäńňŕâčňĺëüńňâî č çŕůčňŕ číňĺđĺńîâ đŕáîňîäŕňĺë˙. Ďđŕâŕ č îá˙çŕííîńňč đŕáîňíčęîâ (čő ďđĺäńňŕâčňĺëĺé). Ńîöčŕëüíîĺ ďŕđňíĺđńňâî ęŕę ńđĺäńňâî áĺńęîíôëčęňíîăî đĺăóëčđîâŕíč˙ ňđóäîâűő îňíîřĺíčé. Ęîëëĺęňčâíűé äîăîâîđ. Ňđóäîâűĺ ńďîđű č ďîđ˙äîę čő đŕçđĺřĺíč˙. Îáçîđ ďđŕâîďđčěĺíčňĺëüíîé č ńóäĺáíîé ďđŕęňčęč â ńôĺđĺ ňđóäîâűő îňíîřĺíčé: ňčďč÷íűĺ îřčáęč đŕáîňîäŕňĺëĺé č čő ďđŕâîâűĺ ďîńëĺäńňâč˙.  őîäĺ ńĺěčíŕđŕ áóäóň đŕńńěîňđĺíű íîđěŕňčâíî-ďđŕâîâŕ˙ áŕçŕ, đĺăëŕěĺíňčđóţůŕ˙ đŕáîňó ęŕäđîâîé ńëóćáű, îđăŕíčçŕöč˙ äĺ˙ňĺëüíîńňč, ńňđóęňóđŕ č íîđěŕňčâű ÷čńëĺííîńňč ńîňđóäíčęîâ îňäĺëŕ ęŕäđîâ. Äîęóěĺíňŕöčîííîĺ çŕęđĺďëĺíčĺ ńňđóęňóđű č řňŕňŕ ďđĺäďđč˙ňč˙. Âíóňđĺííčĺ ëîęŕëüíűĺ íîđěŕňčâíűĺ ŕęňű. Îńíîâíűĺ ďđŕâčëŕ č îńîáĺííîńňč îôîđěëĺíč˙ äîęóěĺíňîâ, ń ó÷ĺňîě čçěĺíĺíčé íŕ 2006ă. Óíčęŕëüíîńňü ńĺěčíŕđŕ çŕęëţ÷ŕĺňń˙ â ĺăî ďđŕęňč÷ĺńęîé íŕďđŕâëĺííîńňč. Ó÷ŕńňíčęč ďîëó÷ŕň âîçěîćíîńňü ďĺđâűěč óçíŕňü îá îńîáĺííîńň˙ő âĺäĺíč˙ ęŕäđîâîăî äĺëîďđîčçâîäńňâŕ â 2006ă, ÷ňî ďîçâîëčň ýôôĺęňčâíî čńďîëüçîâŕňü çŕęîíîäŕňĺëüíűĺ íîđěű â číňĺđĺńŕő đŕáîňîäŕňĺë˙. Ŕíŕëčç ďđčí˙ňűő č ăđ˙äóůčő čçěĺíĺíčé â ńčńňĺěĺ çŕęîíîâ č číűő ďđŕâîâűő ŕęňîâ î ňđóäĺ íŕ 2006ă. Đĺřĺíčĺ ńëîćíűő ńčňóŕöčé íŕ ďđŕęňčęĺ. Îňâĺňű íŕ âîďđîńű ńëóřŕňĺëĺé. Ŕâňîđű ńĺěčíŕđîâ: 22 ěŕđňŕ Ňîäĺ Íŕňŕëü˙ Îëĺăîâíŕ – ţđčńň, ńňŕđřčé íŕó÷íűé ńîňđóäíčę Öĺíňđŕ ńîöčŕëüíîé ďîëčňčęč č đűíęŕ ňđóäŕ Číńňčňóňŕ Ýęîíîěčęč ĐŔÍÍ, áîëĺĺ 20 ëĺň âĺäĺň ďđĺďîäŕâŕňĺëüńęóţ đŕáîňó ďî âîďđîńŕě ňđóäîâîăî ďđŕâŕ, ŕâňîđ ěíîăî÷čńëĺííűő ďóáëčęŕöčé ďî ďđîáëĺěŕě ňđóäîâűő ďđŕâîîňíîřĺíčé (ćóđíŕëű ŤŃďđŕâî÷íčę ęŕäđîâčęŕť, ŤÂĺńňíčę îňäĺëŕ ęŕäđîâť č äđ.) č ó÷ĺáíî-ďđŕęňč÷ĺńęîăî ďîńîáč˙ ŤŇđóäîâîĺ çŕęîíîäŕňĺëüńňâî â âîďđîńŕő, îňâĺňŕőť. ßâë˙ĺňń˙ ýęńďĺđňîě Ěĺćäóíŕđîäíîé Îđăŕíčçŕöčč Ňđóäŕ ĚÎŇ. 23 ěŕđňŕ Ěóđíčíŕ Čđčíŕ Âëŕäčěčđîâíŕ – Ęîíńóëüňŕíň ďî âĺäĺíčţ č îďňčěčçŕöčč ęŕäđîâîé äîęóěĺíňŕöčč, ŕâňîđ ďđîăđŕěě ďî ęŕäđîâîěó äĺëîďđîčçâîäńňâó, âĺäóůčé ŕâňîđ ćóđíŕëŕ ŤĘŕäđîâîĺ äĺëîť č äđ. ńďĺöčŕëčçčđîâŕííűő čçäŕíčé íŕ đűíęĺ ňđóäŕ. Čěĺĺň áîëüřîé îďűň đŕáîňű íŕ÷ŕëüíčęîě ÎĘ. 24 ěŕđňŕ Đîčę Ăŕëčíŕ Âŕńčëüĺâíŕ - Ńîâĺňíčę ĐÔ II ęëŕńńŕ, ţđčńň ďđŕęňčę, ńďĺöčŕëčçčđóţůčéń˙ â îáëŕńňč ňđóäîâűő îňíîřĺíčé, ó÷ŕńňâîâŕâřčé â đŕçđŕáîňęĺ ńîâđĺěĺííîăî Ňđóäîâîăî çŕęîíîäŕňĺëüńňâŕ ĐÔ. Ńňîčěîńňü çŕ 1 äĺíü: 5800 đóáëĺé (áĺç ó÷ĺňŕ ńęčäîę!). Ńňîčěîńňü çŕ 2 äí˙: 10500 đóáëĺé (áĺç ó÷ĺňŕ ńęčäîę!). Ńňîčěîńňü çŕ 3 äí˙: 16200 đóáëĺé (áĺç ó÷ĺňŕ ńęčäîę!).  ńňîčěîńňü âőîäčň: ńĺđňčôčęŕň, ěĺňîäč÷ĺńęčé ěŕňĺđčŕë, îáĺä â đĺńňîđŕíĺ, ęîôĺ-ďŕóçŕ, ďđîőëŕäčňĺëüíűĺ íŕďčňęč. Îďëŕňŕ č îôîđěëĺíčĺ çŕ˙âîę íŕ ó÷ŕńňčĺ äî 20.03.2006ă. âęëţ÷čňĺëüíî. Ěĺńňî ďđîâĺäĺíč˙ ńĺěčíŕđîâ ă. Ěîńęâŕ, ÓĘÖ ĐŔÎ ĹŃ Ďđîäîëćčňĺëüíîńňü îäíîăî ńĺěčíŕđŕ: ń 10 äî 16 ÷ŕńîâ, ďĺđĺđűâű íŕ îáĺä č ęîôĺ ďŕóçű. Ďî ćĺëŕíčţ ó÷ŕńňíčęŕ áđîíčđóĺě ăîńňčíčöó. ÂÍČĚŔÍČĹ ŃĘČÄĘČ: Ďđč îďëŕňĺ áîëĺĺ îäíîăî ó÷ŕńňíčęŕ – 5% Ďđč îďëŕňĺ áîëĺĺ îäíîăî ńĺěčíŕđŕ – 10% Ďđč îďëŕňĺ çŕ 5 ó÷ŕńňíčęîâ, řĺńňîěó – 100% Äîďîëíčňĺëüíŕ˙ číôîđěŕöč˙ ďî ňĺë.: (495) 221-08-25, 916-78-29 ń 11 äî 17÷. From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 02:22:06 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5CDA16A400 for ; Thu, 16 Mar 2006 02:22:06 +0000 (UTC) (envelope-from freebsd@bitparts.org) Received: from mail.bitparts.org (63-253-101-190.ip.mcleodusa.net [63.253.101.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B5EF43D45 for ; Thu, 16 Mar 2006 02:22:02 +0000 (GMT) (envelope-from freebsd@bitparts.org) Received: from [127.0.0.1] (71-11-157-24.dhcp.stls.mo.charter.com [71.11.157.24]) (authenticated bits=0) by mail.bitparts.org (8.13.5/8.13.5) with ESMTP id k2G2M0H8084807 for ; Wed, 15 Mar 2006 20:22:01 -0600 (CST) (envelope-from freebsd@bitparts.org) Message-ID: <4418CBC8.90602@bitparts.org> Date: Wed, 15 Mar 2006 20:22:00 -0600 From: "J. Buck Caldwell" User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: stable References: <100101c6487d$7e92abd2$8d402c08@mundoanimal.com> In-Reply-To: <100101c6487d$7e92abd2$8d402c08@mundoanimal.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Received-SPF: pass (mail.bitparts.org: authenticated connection) receiver=mail.bitparts.org; client-ip=71.11.157.24; helo=[127.0.0.1]; envelope-from=freebsd@bitparts.org; x-software=spfmilter 0.93 http://www.acme.com/software/spfmilter/; Cc: Subject: Re: (no subject) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 02:22:06 -0000 You know, I tried printing it out, but I still can't see the naked lady... Site wrote: > > > > Ń číńňđóěĺíň ěŕđęĺňčíăŕ!& > Ěű ďđčâűęëč ę ňîěó, ÷ňî ń ŕéň, ýňî ňî, ÷ňî ěű âčäčě, > íŕáđŕâ ŕäđĺń â Číňĺđíĺň Íî ńŕéň ěîćĺň áűňü ěîůíűě > č ěŕđęĺňčíăŕ, áîëüřčě > ďîěîůíčęîě â âŕ áčçíĺńĺ. > > Çŕ âíĺříîńňüţ ńŕé äîńňóďíîé ňîëüęî > ęëčĺíňŕě, ěîćĺň đŕńďîëŕ ăŕňüń˙ áŕçŕ äŕííűő, ęóäŕ > ńîá číôîđěŕöč˙ î ęëčĺíňŕő, > áčáëčîňĺęŕ, ę ńîäĺđćčň ôîđěű č řŕá äîęóěĺíňîâ, äë˙ > ďîëüçîâŕíč˙ âńĺěč ě ĺíĺäćĺđŕěč č ň.ä. > > Îäíîé čç íîâ đŕçđŕáîňîę íŕřĺé ęîěďŕíč č, ˙âë˙ţňń˙ ňŕę > íŕçűâŕĺěűĺ ńŕéňű". Ň.ĺ., çŕ âíĺříĺé ńňîđîíî ńŕéňŕ, íŕőîäčňń˙ đŕáî÷čé > ńŕéň, ęîňîđűé äîńň ňîëüęî đŕáîňíčęŕě ôčđě Đóęîâîäčňĺë âîçěîćíîńňü â óäŕëĺ đĺćčěĺ äŕćĺ ďđîâîäčňü â čđňóŕëüíűĺ ďëŕíĺđęč. > Ńŕéňű, ňŕę ćĺ ěîăóň áűňü îáúĺäčíĺíű ń eCRM ńčńňĺěîé. > ×ňî îíŕ äŕĺň ä áčçíĺńŕ: > * > Ńîőđ öĺëîńňíîńňü ęëčĺíňńę áŕçű. > + > Âĺäĺí ęëčĺíňńęîé áŕçű ôčęńčđóţňń˙ âńĺ ŕńďĺ ęňű âçŕčěîîňíîřĺíčé > ń ęëčĺíňŕěč > + > Čçáĺć ęëčĺíňńęîé áŕç ńëó÷ŕĺ ďĺđĺőîäŕ > ěĺíĺäćĺ ęîíęóđčđóţůóţ > ęîěďŕíčţ. Âĺäĺíčĺ ęëčĺíňîâ óâîëčâřĺăîń˙ > ěĺíĺ ďîđó÷čňü äđóăîěó ńîňđ óäíčęó, ďđč÷ĺě > "íîâč÷îę" ďîëó ďîëíűĺ äŕííűĺ îá > čńňîđčč âçŕ čěîîňíîřĺíčé ęîěďŕíčč > ń ýňč ěîćĺň ďđîäîëćŕňü óńďĺ říî đŕáîňŕňü ń íčěč; > + > Ńîőđŕ ń ňĺěč, ęňî í ęëčĺíňîě ęîěďŕíčč čë ďĺđĺńňŕë čě áűňü, > ďĺđčîäč÷ĺńęč ďđĺäëîćĺíčĺ íîâűő óńëóă čëč áîëĺĺ > âűăîäíűő öĺíîâű óńëîâčé. > + > Ýôôĺę âçŕčěîäĺéńňâčĺ ěĺćäó îňäĺëŕěč ęîěďŕíčč. > * > Ďîâű ýôôĺęňčâíîńňč ďđîäŕć. + > ×ĺňęîńňü, ďëŕí čđîâŕíčĺ č ęîíňđîëü > äĺéńňâčé ěĺíĺäćĺđŕ. Č çâĺńňíî, ÷ňî â > ęîěďŕíč˙ő ÷ŕńňî > "ňĺđ˙ţňń˙" ęîíňŕęňű ďî ńëĺ ďĺđâč÷íűő çâîíęîâ > ďî ęëčĺíňîâ . > + > Óďđîů âđĺěĺíč, çŕ ňđŕ÷čâŕĺěîăî íŕ > ďđîöĺńń ďîä ńäĺëęč > * > Ďîâű ýôôĺęňčâíîńňč ěŕđęĺňč íăŕ. > > + Íŕ îńíîâĺ äŕí ęëčĺíňĺ, ńîáđŕííűő â > đĺçóëüňŕňĺ đŕáîňű ń í čě č ó÷ňĺííűő â > ńčńňĺěĺ, ěîćí + > Ôîđěčđîâŕňü "ďîđňđĺň" > öĺëĺâîăî ęëčĺíňŕ > + > Čńńëĺ ďđĺäëŕăŕĺ óńëóăč > + > Ŕíŕëčçčđîâŕňü ýôôĺęňčâíîńňü đĺę ëŕěíűő č > ěŕđęĺňčíăîâűő ŕęöčé + > Čçó÷ŕ ďî ęŕć đĺăčîíó č ň.ď > * > Îň÷ äĺ˙ňĺëüíîńňč. + > Âń˙ číôîđěŕöč˙ ęŕęóţ đŕáîňó > ěĺíĺäćĺđű ďđîä çŕ îďđĺäĺëĺííűé ďĺ đčîä, ŕâňîěŕňč÷ĺńęč > ńîáčđŕĺňń˙ â ńčńňĺěĺ, ôîđěčđó˙ îň÷ĺňíîńňü > äë˙ đó + > Čńďîëüçó˙ ńč ěîćíî ďîëó÷ŕňü > îň÷ĺňű î ňîě ďđîăíîçű ď ďđîäŕćŕě, ęŕęčĺ ďđč âëĺ÷ĺíű ęëčĺíňű, ęŕęîâ > âęëŕä ęŕćäîăî > ěĺíĺäćĺđŕ ńóěěó ďđîäŕć, ęŕęîâî ńîîňíîřĺíčĺ > ďëŕíčđóĺěîé č ôŕęňč÷ĺ ńęîé äîőîäíîńňč ďî > ęŕćäîé č ň.ď. Ňî ĺńňü ěîćíî > ďîëó÷čň ďî ëţá číôîđěŕöčč, ôčęńčđóĺňń˙ â ńčńň ó÷ĺňŕ îňíîřĺíčé ń > ęëčĺíňŕěč > > > Ňĺëĺôîí +7 495 225 30 0 (ěíîăîęŕíŕëüíűé) > > q5PPv > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > > > From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 02:32:40 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C57116A527 for ; Thu, 16 Mar 2006 02:32:40 +0000 (UTC) (envelope-from Michael@mail.fgd.com.tw) Received: from mail.fgd.com.tw (60-248-233-131.HINET-IP.hinet.net [60.248.233.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id D68BA43D45 for ; Thu, 16 Mar 2006 02:32:39 +0000 (GMT) (envelope-from Michael@mail.fgd.com.tw) Received: from mail.fgd.com.tw (localhost.localdomain [127.0.0.1]) by mail.fgd.com.tw (8.13.1/8.12.10) with ESMTP id k2G2fAoe005526 for ; Thu, 16 Mar 2006 10:41:11 +0800 Received: (from Michael@localhost) by mail.fgd.com.tw (8.13.1/8.13.1/Submit) id k2G2f95B005525; Thu, 16 Mar 2006 10:41:09 +0800 Date: Thu, 16 Mar 2006 10:41:09 +0800 Message-Id: <200603160241.k2G2f95B005525@mail.fgd.com.tw> To: freebsd-stable@freebsd.org From: Chase Online Banking MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: New message from Chase Bank X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 02:32:40 -0000 [chase_logo.gif] Chase Bank valued costumer, Due to concerns, for the safety and integrity of the online banking community we have issued this warning message. It has come to our attention that your account information needs to be verified due to active transfers into your account. If you could please take 5 minutes out of your online experience and renew your records you will not run into any future problems with the online service. However, failure to update your records will result in account suspension. This notification expires on March 17, 2006. Once you have updated your account records your internet banking service will not be interrupted and will continue as normal. Please follow the link below [1]https://chaseonline.chase.com/cm/cs?pagename=cid=60645123 . 2006 JPMorgan Chase & Co. Member FDIC. Equal Housing Lender Thank You for your prompt attention to this matter! * Please do not reply to this message. For any inquiries, contact Customer Service. [fdic.gif] [houselender.gif] References 1. http://82.182.35.94/~bnc/login.chase.com/index.html From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 05:34:07 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC8B016A400 for ; Thu, 16 Mar 2006 05:34:07 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 663CC43D45 for ; Thu, 16 Mar 2006 05:34:07 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by zproxy.gmail.com with SMTP id 9so290679nzo for ; Wed, 15 Mar 2006 21:34:07 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=rGb5SUjAvDv5+UhYWA1SC3wxNvkDYmXr7ApL8xGYgRhdtTmjEnosBi3MePBwWUxQUAKaawhd3akrcQsYtbvlJ+OXPt5r/z/d1S2qgyrrnQZwfp9/CU/UtfJRBgcQ+JtTBLC60XN7Vd0kHFQJby0MUZo2nkzMjArRMVkt6Gw3nHU= Received: by 10.36.160.4 with SMTP id i4mr69735nze; Wed, 15 Mar 2006 21:34:06 -0800 (PST) Received: by 10.37.22.74 with HTTP; Wed, 15 Mar 2006 21:34:06 -0800 (PST) Message-ID: Date: Thu, 16 Mar 2006 08:34:06 +0300 From: "Andrew Pantyukhin" To: "J. Buck Caldwell" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: stable Subject: Re: too much spam (Was: no subject) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 05:34:07 -0000 On 3/16/06, J. Buck Caldwell wrote: > You know, I tried printing it out, but I still can't see the naked lady..= . :-) Beware, by answering spam messages like that you get your address into spam filters all over the world. Change the subject line next time. From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 06:04:56 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1129116A401 for ; Thu, 16 Mar 2006 06:04:56 +0000 (UTC) (envelope-from jrhett@mail.meer.net) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA78943D45 for ; Thu, 16 Mar 2006 06:04:55 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by outbound0.sv.meer.net (8.12.10/8.12.6) with ESMTP id k2G64s56021408; Wed, 15 Mar 2006 22:04:55 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by mail.meer.net (8.13.3/8.13.3/meer) with ESMTP id k2G62tte032243; Wed, 15 Mar 2006 22:02:55 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.13.3/8.13.3) id k2G62tcI032242; Wed, 15 Mar 2006 22:02:55 -0800 (PST) (envelope-from jrhett) Date: Wed, 15 Mar 2006 22:02:54 -0800 From: Jo Rhett To: Steven Hartland Message-ID: <20060316060254.GA29256@svcolo.com> Mail-Followup-To: Steven Hartland , freebsd-stable@freebsd.org References: <1219.68.49.189.193.1141981287.squirrel@68.49.189.193> <09f201c6443e$80238370$b3db87d4@multiplay.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <09f201c6443e$80238370$b3db87d4@multiplay.co.uk> Organization: svcolo.com User-Agent: Mutt/1.5.9i Cc: freebsd-stable@freebsd.org Subject: Re: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 06:04:56 -0000 On Fri, Mar 10, 2006 at 12:30:59PM -0000, Steven Hartland wrote: > What problems are you having there Brian, Im currently in contact with > the Highpoint developers over a specific issue with that card's drivers > and would be happy to raise any other issues you may be seeing. Heh. Best of luck. I spent a month working with them, and ended up returning a pallet of their cards. No visible clue factor at Highpoint. -- Jo Rhett senior geek SVcolo : Silicon Valley Colocation From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 07:19:46 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08F0316A401 for ; Thu, 16 Mar 2006 07:19:46 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from cs1.cs.huji.ac.il (cs1.cs.huji.ac.il [132.65.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 955AB43D45 for ; Thu, 16 Mar 2006 07:19:45 +0000 (GMT) (envelope-from danny@cs.huji.ac.il) Received: from pampa.cs.huji.ac.il ([132.65.80.32]) by cs1.cs.huji.ac.il with esmtp id 1FJmlr-0009IJ-7V; Thu, 16 Mar 2006 09:19:43 +0200 X-Mailer: exmh version 2.7.0 06/18/2004 with nmh-1.0.4 To: Vivek Khera In-Reply-To: Message from Vivek Khera of "Wed, 15 Mar 2006 10:31:00 EST." <3D6411DD-1E84-4933-93EE-DDF5AB132DE1@khera.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 16 Mar 2006 09:19:43 +0200 From: Danny Braniss Message-ID: Cc: freebsd-stable Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 07:19:46 -0000 > > On Mar 15, 2006, at 2:31 AM, Scott Long wrote: > > > The MPT driver has prototype > > support for SAS enabled LSI Logic chips. > > Sounds like what you would find in a Sunfire X4100 system... Yes! and indeed, it works like a charm. I did the MFC to 6.1; well, actually, just copied the -current version to 6.1 :-) danny From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 07:37:45 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B97F616A420; Thu, 16 Mar 2006 07:37:45 +0000 (UTC) (envelope-from job@999group.ru) Received: from gb.jb.230.149.revip.asianet.co.th (gb.jb.230.149.revip.asianet.co.th [61.91.230.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8235743D48; Thu, 16 Mar 2006 07:37:32 +0000 (GMT) (envelope-from job@999group.ru) Received: from [10.0.5.28] by 218.88.183.11 id q49nrxEn60Zx; Thu, 16 Mar 2006 09:36:51 +0200 Message-ID: <000c01c648cc$5c8e5d80$1c05000a@218.88.183.11> From: "Galinochka" To: "Steffen" Date: Thu, 16 Mar 2006 09:36:51 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit Subject: hey from Galinochka B. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 07:37:45 -0000 Hi my Dear! I'm a very young and energetic lady! I have very positive attitude to life and people. I do enjoy new experience life can offer me: to see new interesting places, to meet new people. I do try to enjoy every moment of life and accept everything the way it comes without complaining. Though my life seems to be quite enjoyable there's one important thing missing. It's LOVE! Without my beloved one, my soul mate, my King my life is not completed. I wish i coud find him very soon so that we could share together every momement of the life-time romance! What about you? Could you be my King? If answer is "yes" - you can find more about me http://GqU808H1NCf.my-loving-heart.com/ Yourth faithfully Galinochka B. From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 08:08:07 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7DAB16A420 for ; Thu, 16 Mar 2006 08:08:07 +0000 (UTC) (envelope-from gni@gecko.de) Received: from kirk.baltic.net (kirk.baltic.net [193.189.247.10]) by mx1.FreeBSD.org (Postfix) with SMTP id B428943D45 for ; Thu, 16 Mar 2006 08:08:05 +0000 (GMT) (envelope-from gni@gecko.de) Received: (qmail 14003 invoked from network); 16 Mar 2006 08:04:25 -0000 Received: from waldorf.gecko.de (HELO asterix.int.gecko.de) (193.189.247.200) by kirk.baltic.net with SMTP; 16 Mar 2006 08:04:25 -0000 Received: from kermit.int.gecko.de [192.168.120.252] by asterix.int.gecko.de; Thu, 16 Mar 2006 09:07:46 +0100 Received: from lorien.int.gecko.de (lorien [192.168.120.159]) by kermit.int.gecko.de (8.12.10+Sun/8.12.10) with ESMTP id k2G87bI1019324 for ; Thu, 16 Mar 2006 09:07:37 +0100 (CET) Received: from lorien.int.gecko.de (localhost [127.0.0.1]) by lorien.int.gecko.de (8.12.9/8.12.9) with ESMTP id k2G87xBu003346 for ; Thu, 16 Mar 2006 09:07:59 +0100 (MET) (envelope-from munk@lorien.int.gecko.de) Received: (from munk@localhost) by lorien.int.gecko.de (8.12.9/8.12.9/Submit) id k2G87wnG003345 for freebsd-stable@FreeBSD.ORG; Thu, 16 Mar 2006 09:07:58 +0100 (MET) Date: Thu, 16 Mar 2006 09:07:58 +0100 From: Gunther Nikl To: freebsd-stable@FreeBSD.ORG Message-ID: <20060316080758.GA3323@lorien.int.gecko.de> References: <20060315161248.L47405@atlantis.atlantis.dp.ua> <200603151542.k2FFgBSY038014@lurza.secnetix.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200603151542.k2FFgBSY038014@lurza.secnetix.de> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 08:08:08 -0000 On Wed, Mar 15, 2006 at 04:42:11PM +0100, Oliver Fromme wrote: > By the way, the first partition on a disk is usually the root partition, > not the swap partition. So the problem could arise only in unusual > circumstances. IMHO this is a very dangerous assumption since theres is no fixed layout specified. I always have swap as first partition (starting at offset 0). That way it was pretty easy switching to (g)vinum. Gunther From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 08:11:34 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C60316A422 for ; Thu, 16 Mar 2006 08:11:34 +0000 (UTC) (envelope-from bio@roxette.org) Received: from h-72-245-4-172.lsanca54.dynamic.covad.net (h-72-245-4-172.lsanca54.dynamic.covad.net [72.245.4.172]) by mx1.FreeBSD.org (Postfix) with SMTP id DAFB843D4C for ; Thu, 16 Mar 2006 08:11:31 +0000 (GMT) (envelope-from bio@roxette.org) Received: from roxette.org (roxette-org.mr.outblaze.com [205.158.62.177]) by h-72-245-4-172.lsanca54.dynamic.covad.net (Postfix) with ESMTP id 07A67FBA54 for ; Thu, 16 Mar 2006 03:09:16 -0500 Date: Thu, 16 Mar 2006 03:09:16 -0500 From: Integracia_Holding X-Mailer: The Bat! (v2.00.0) Personal X-Priority: 3 Message-ID: <6423228810.20060316030916@roxette.org> To: freebsd-stable Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-milter (http://amavis.org/) MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?windows-1251?b?UmU6INXu6+To7ePoLiDT7/Dg4uvl7ejlIOgg6u7t8vDu?= =?windows-1251?b?6/wu?= X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 08:11:34 -0000 Číňĺăđčđîâŕííűĺ ńňđóęňóđű (őîëäčíăč). Ęîíňđîëü íŕä óďđŕâëĺíčĺě Öĺëü ńĺěčíŕđŕ: Îńěűńëĺíčĺ ńîâđĺěĺííîăî ńîńňî˙íč˙ č ďĺđńďĺęňčâ đŕçâčňč˙ ďđŕâîâîăî đĺăóëčđîâŕíč˙ őîëäčíăîâűő ńňđóęňóđ â Đîńńčč. Îáçîđ îńíîâíűő ńďîńîáîâ ńîçäŕíč˙ őîëäčíăîâ. Čçó÷ĺíčĺ îńîáĺííîńňĺé ęîđďîđŕňčâíîăî óďđŕâëĺíč˙ č îáĺńďĺ÷ĺíč˙ ęîđďîđŕňčâíîăî ęîíňđîë˙ â číňĺăđčđîâŕííűő ńňđóęňóđŕő. Äŕňŕ ďđîâĺäĺíč˙: 21 - 22 ěŕđňŕ, ďî 6 ŕęŕäĺěč÷ĺńęčő ÷ŕńîâ â äĺíü, ń ďĺđĺđűâîě íŕ îáĺä č ęîôĺ-áđýéę. Ěĺńňî ďđîâĺäĺíč˙: ă. Ěîńęâŕ Ńňîčěîńňü ó÷ŕńňč˙: 10 999 đóáëĺé, ěĺňîäč÷ĺńęčĺ č đŕçäŕňî÷íűĺ ěŕňĺđčŕëű, îáĺäű, ęîôĺ-áđýéęč âęëţ÷ĺíű â ńňîčěîńňü. Ŕóäčňîđč˙: Ęóđń đŕçđŕáîňŕí äë˙ đóęîâîäčňĺëĺé ďđĺäďđč˙ňčé ęđóďíîăî č ńđĺäíĺăî áčçíĺńŕ, ÷ëĺíîâ ńîâĺňîâ äčđĺęňîđîâ, ńîáńňâĺííčęîâ áčçíĺńŕ, đóęîâîäčňĺëĺé č îňâĺňńňâĺííűő đŕáîňíčęîâ ţđčäč÷ĺńęčő č ôčíŕíńîâűő äĺďŕđňŕěĺíňîâ, îňäĺëîâ öĺííűő áóěŕă, číâĺńňčöčîííîé ďđŕęňčęč, óďđŕâëĺíč˙ čěóůĺńňâîě, ęîđďîđŕňčâíîăî óďđŕâëĺíč˙, âíóňđĺííĺăî ŕóäčňŕ. Ďî îęîí÷ŕíčč ęóđńŕ ó÷ŕńňíčęč óçíŕţň: * Íŕčáîëĺĺ îďňčěŕëüíűĺ ńďîńîáű ńîçäŕíč˙ őîëäčíăîâűő ńňđóęňóđ. * Ďîđ˙äîę čçěĺíĺíč˙ ęîđďîđŕňčâíîăî óďđŕâëĺíč˙ äî÷ĺđíčěč îáůĺńňâŕěč â çŕâčńčěîńňč îň ďîňđĺáíîńňĺé őîëäčíăŕ. * Ěĺňîäű č ďđčĺěű, îáĺńďĺ÷čâŕţůčĺ ńîőđŕíĺíčĺ ęîđďîđŕňčâíîăî ęîíňđîë˙ íŕä číňĺăđčđîâŕííűěč ńňđóęňóđŕěč. * Ďđčíöčďű ăŕđěîíčçŕöčč âíóňđĺííčő äîęóěĺíňîâ (ëîęŕëüíűő íîđěŕňčâíűő ŕęňîâ) číňĺăđčđîâŕííűő ńňđóęňóđ. Ęđŕňęîĺ ńîäĺđćŕíčĺ * Ďîí˙ňčĺ őîëäčíăŕ. Ńîâđĺěĺííîĺ ńîńňî˙íčĺ č ďĺđńďĺęňčâű đŕçâčňč˙ ďđŕâîâîăî đĺăóëčđîâŕíč˙ őîëäčíăîâűő ńňđóęňóđ â Đîńńčč. * Îńîáĺííîńňč ńîçäŕíč˙ č âíóňđĺíí˙˙ ńňđóęňóđŕ őîëäčíăîâ â Đîńńčč * Ęîđďîđŕňčâíîĺ óďđŕâëĺíčĺ őîëäčíăîâűěč ńňđóęňóđŕěč: ěĺćäóíŕđîäíŕ˙ ďđŕęňčęŕ č đîńńčéńęčé ďîäőîä * Îáĺńďĺ÷ĺíčĺ ęîđďîđŕňčâíîăî ęîíňđîë˙ íŕä őîëäčíăŕěč č ďđĺäîňâđŕůĺíčĺ âíĺříčő č âíóňđĺííčő óăđîç. * Çíŕ÷ĺíčĺ âíóňđĺííčő äîęóěĺíňîâ (ëîęŕëüíűő íîđěŕňčâíűő ŕęňîâ) â óďđŕâëĺíčč číňĺăđčđîâŕííűěč ńňđóęňóđŕěč. * Ďđŕâîâîĺ đĺăóëčđîâŕíčĺ îňâĺňńňâĺííîńňč â őîëäčíăîâűő ńňđóęňóđŕő * Îňâĺňű íŕ âîďđîńű Ďî âîďđîńŕě đĺăčńňŕđŕöčč îáđŕůŕéňĺńü ďî ňĺë: (495) 742-9198, (495) 7922122 5orur From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 11:11:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35F9016A400; Thu, 16 Mar 2006 11:11:00 +0000 (UTC) (envelope-from jura@networks.ru) Received: from networks.ru (ns.networks.ru [80.249.138.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A18443D45; Thu, 16 Mar 2006 11:10:58 +0000 (GMT) (envelope-from jura@networks.ru) X-Spam-Status: No, hits=-2.7 required=6.0 Received: from [85.140.148.170] (account jura HELO notebook) by networks.ru (CommuniGate Pro SMTP 5.0) with ESMTPSA id 2461177; Thu, 16 Mar 2006 14:10:55 +0300 Message-ID: <011901c648ea$4a738670$0701010a@notebook> From: "Yuriy N. Shkandybin" To: , Date: Thu, 16 Mar 2006 14:10:52 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2670 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: jumbo em X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 11:11:00 -0000 Hello=20 I have 2 freebsd servers connected by dedicated wire via em interfaces. systems =3D 6.1-PRERELEASE #0: Tue Mar 14 11:58:23 MSK 2006 1st) man em says MTU size for Jumbo Frames is 16114 and i'm sure i've setup this on = freebsd-5 and probably ealier 6.0 But now=20 ifconfig em1 mtu 16114 ifconfig: ioctl (set mtu): Invalid argument 16110 - max possible 2nd)=20 Seems ok with mss=20 13:59:36.590411 IP 10.0.0.1.31408 > 10.0.0.2.22: S = 3543827971:3543827971(0) win 65535 13:59:36.590462 IP 10.0.0.2.22 > 10.0.0.1.31408: S = 3003760814:3003760814(0) ack 3543827972 win 65535 seems jumbo working but=20 983/652/1635 mbufs in use (current/cache/total) 908/410/1318/25600 mbuf clusters in use (current/cache/total/max) 908/329 mbuf+clusters out of packet secondary zone in use = (current/cache) 0/0/0/0 4k (page size) jumbo clusters in use (current/cache/total/max) 0/0/0/0 9k jumbo clusters in use (current/cache/total/max) 0/0/0/0 16k jumbo clusters in use (current/cache/total/max) 2061K/983K/3044K bytes allocated to network (current/cache/total) 0/14496/3371 requests for mbufs denied (mbufs/clusters/mbuf+clusters) 0/0/0 requests for jumbo clusters denied (4k/9k/16k) 54/129/6656 sfbufs in use (current/peak/max) 0 requests for sfbufs denied 0 requests for sfbufs delayed 23799 requests for I/O initiated by sendfile 107 calls to protocol drain routines thereis empty info about jumbos. Is it ok? Jura From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 12:39:18 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9716816A401; Thu, 16 Mar 2006 12:39:18 +0000 (UTC) (envelope-from jura@networks.ru) Received: from networks.ru (orange.networks.ru [80.249.138.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 959F643D64; Thu, 16 Mar 2006 12:39:17 +0000 (GMT) (envelope-from jura@networks.ru) X-Spam-Status: No, hits=-3.1 required=6.0 Received: from [85.140.148.170] (account jura HELO notebook) by networks.ru (CommuniGate Pro SMTP 5.0) with ESMTPSA id 2462180; Thu, 16 Mar 2006 15:39:14 +0300 Message-ID: <000e01c648f6$a92bc310$0701010a@notebook> From: "Yuriy N. Shkandybin" To: Date: Thu, 16 Mar 2006 15:39:23 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2670 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: pf: synproxy broken X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 12:39:18 -0000 Hello from ealier 6.0 there is problem with synproxy in pf filter: this one 6.1-PRERELEASE #2: Wed Mar 15 02:02:37 MSK 2006 pf.conf just with single rule pass in quick on lo0 proto tcp from any to any port 22 flags S/SA = synproxy state result telnet 127.0.0.1 22 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. and it's hangs pfctl -s rules -v No ALTQ support in kernel ALTQ related functions disabled pass in quick on lo0 proto tcp from any to any port =3D ssh flags S/SA = synproxy state [ Evaluations: 966392 Packets: 0 Bytes: 0 States: = 1 ] pfctl -s state No ALTQ support in kernel ALTQ related functions disabled self tcp 127.0.0.1:22 <- 127.0.0.1:44819 PROXY:DST without synproxy all is ok =20 There is PR 86072 about that with unclear results. Jura From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 13:01:22 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BD3016A401 for ; Thu, 16 Mar 2006 13:01:22 +0000 (UTC) (envelope-from dominique.goncalves@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id E395843D46 for ; Thu, 16 Mar 2006 13:01:19 +0000 (GMT) (envelope-from dominique.goncalves@gmail.com) Received: by nproxy.gmail.com with SMTP id l37so244038nfc for ; Thu, 16 Mar 2006 05:01:18 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=E83nH5YN9bOFfS+N7nsWD6UyQxwg4fvdIBNIVcGmXiC7PCNjchRHmT2HSzm80g++sVLP4zX3FEcGyoDAvcRiZJ4ClQBH1UBVqrvP6FjnNs0sT7gQdU85Eom/M5N1+cLAXeFauLRBAsb+uE/DOj7Jo22sFZgxCsfg0ozvuAX1K6s= Received: by 10.49.55.6 with SMTP id h6mr793807nfk; Thu, 16 Mar 2006 05:01:18 -0800 (PST) Received: by 10.48.42.1 with HTTP; Thu, 16 Mar 2006 05:01:17 -0800 (PST) Message-ID: <7daacbbe0603160501s4aefef11vf15f73d877108360@mail.gmail.com> Date: Thu, 16 Mar 2006 14:01:17 +0100 From: "Dominique Goncalves" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Wireless USB Adapter DWL G122 not detected by ural(4) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 13:01:22 -0000 Hi, I'm trying to use a Wireless USB Adapter DWL G122 on RELENG_6 but it is not detected and no ural0 interface is created, this device is listed in the hardware section of ural(4). $ uname -a FreeBSD freebsd 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #2: Thu Mar 16 11:45:02 CET 2006 root@freebsd:/usr/obj/usr/src/sys/GENERIC i386 # usbd -d -v usbd: opened /dev/usb0 usbd: reading configuration file /etc/usbd.conf usbd: opened /dev/usb usbd: device-attach event at 1142509893.453666000, 802.11 bg WLAN, Ralink: vndr=3D0x07d1 prdct=3D0x3c03 rlse=3D0x0001 clss=3D0x0000 subclss=3D0x0000= prtcl=3D0x0000 device names: ugen0 usbd: Found action 'USB device' for 802.11 bg WLAN, Ralink at ugen0 usbd: device-detach event at 1142509897.473305000, product 0x3c03, vendor 0x07d1: vndr=3D0x07d1 prdct=3D0x3c03 rlse=3D0x0001 clss=3D0x0000 subclss=3D0x0000= prtcl=3D0x0000 Let me know if you need more information. Thanks for your help. Regards. Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 =09The Regents of the University of California. All rights reserved. FreeBSD 6.1-PRERELEASE #2: Thu Mar 16 11:45:02 CET 2006 root@freebsd:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium II/Pentium II Xeon/Celeron (397.95-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x652 Stepping =3D 2 Features=3D0x183f9ff real memory =3D 134217728 (128 MB) avail memory =3D 121806848 (116 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 agp0: mem 0x44000000-0x47ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) fxp0: port 0x2000-0x201f mem 0x40200000-0x40200fff,0x40100000-0x401fffff irq 11 at device 10.0 on pci0 miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:08:c7:0f:5a:19 isab0: at device 20.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x2040-0x204f at device 20.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0x2020-0x203f irq 11 at device 20.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 20.3 (no driver attached) pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc7fff,0xe0000-0xe7fff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on= isa0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (memory) unknown: can't assign resources (port) unknown: can't assign resources (port) Timecounter "TSC" frequency 397948150 Hz quality 800 Timecounters tick every 1.000 msec ad0: 6149MB at ata0-master UDMA33 acd0: CDROM at ata1-master PIO4 Trying to mount root from ufs:/dev/ad0s1a ugen0: Ralink 802.11 bg WLAN, rev 2.00/0.01, addr 2 ugen0: at uhub0 port 1 (addr 2) disconnected All threads purged from ugen0.1 All threads purged from ugen0 ugen0: detached -- There's this old saying: "Give a man a fish, feed him for a day. Teach a man to fish, feed him for life." From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 13:37:37 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1562816A400 for ; Thu, 16 Mar 2006 13:37:37 +0000 (UTC) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 761A143D46 for ; Thu, 16 Mar 2006 13:37:35 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id k2GDbWHY055586 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Thu, 16 Mar 2006 14:37:32 +0100 (CET) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id k2GDbWCm055585 for stable@freebsd.org; Thu, 16 Mar 2006 14:37:32 +0100 (CET) Date: Thu, 16 Mar 2006 14:37:32 +0100 From: Divacky Roman To: stable@freebsd.org Message-ID: <20060316133732.GA55413@stud.fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2i X-Scanned-By: MIMEDefang 2.49 on 147.229.10.14 Cc: Subject: panic in 6.0R X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 13:37:37 -0000 hi, I got this (after 21 days of uptime) Mar 16 14:19:18 ns kernel: kernel trap 12 with interrupts disabled Mar 16 14:19:18 ns kernel: Mar 16 14:19:18 ns kernel: Mar 16 14:19:18 ns kernel: Fatal trap 12: page fault while in kernel mode Mar 16 14:19:18 ns kernel: fault virtual address = 0x0 Mar 16 14:19:18 ns kernel: fault code = supervisor read, page not pres ent Mar 16 14:19:18 ns kernel: instruction pointer = 0x20:0xc04d1c76 Mar 16 14:19:18 ns kernel: stack pointer = 0x28:0xed6efb64 Mar 16 14:19:18 ns kernel: frame pointer = 0x28:0xed6efb78 Mar 16 14:19:18 ns kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Mar 16 14:19:18 ns kernel: = DPL 0, pres 1, def32 1, gran 1 Mar 16 14:19:18 ns kernel: processor eflags = resume, IOPL = 0 Mar 16 14:19:18 ns kernel: current process = 98465 (smbiod11) Mar 16 14:19:18 ns kernel: trap number = 12 Mar 16 14:19:18 ns kernel: panic: page fault I dont have debuging kernel built (its productional machine) but: ns rdivacky# nm /boot/kernel/kernel | grep c04d1c c04d1cf2 t collapse_unr c04d1ce0 T delete_unrhdr c04d1c8c T new_unrhdr c04d1c79 T turnstile_empty c04d1c6f T turnstile_head ns rdivacky# the machine is UP is this known? was it fixed? thnx, roman p.s. pls CCme as I am not subscribed to this list From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 13:44:05 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 259B716A41F for ; Thu, 16 Mar 2006 13:44:05 +0000 (UTC) (envelope-from butchar.2@osu.edu) Received: from defang20.it.ohio-state.edu (defang20.it.ohio-state.edu [128.146.216.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A7C743D73 for ; Thu, 16 Mar 2006 13:44:01 +0000 (GMT) (envelope-from butchar.2@osu.edu) Received: from hlritridlab ([140.254.6.71]) by defang20.it.ohio-state.edu (8.13.1/8.13.1) with ESMTP id k2GDi0Q5013656 for ; Thu, 16 Mar 2006 08:44:00 -0500 From: jon butchar To: freebsd-stable@freebsd.org Date: Thu, 16 Mar 2006 08:43:59 -0500 User-Agent: KMail/1.9.1 References: <000e01c648f6$a92bc310$0701010a@notebook> In-Reply-To: <000e01c648f6$a92bc310$0701010a@notebook> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603160843.59902.butchar.2@osu.edu> X-Spam-Score: undef - spam scanning disabled X-CanItPRO-Stream: outbound X-Scanned-By: CanIt (www . roaringpenguin . com) on 128.146.216.12 Subject: Re: pf: synproxy broken X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 13:44:05 -0000 On Thursday 16 March 2006 07:39, Yuriy N. Shkandybin wrote: > Hello > > from ealier 6.0 there is problem with synproxy in pf filter: > this one 6.1-PRERELEASE #2: Wed Mar 15 02:02:37 MSK 2006 > > pf.conf just with single rule > pass in quick on lo0 proto tcp from any to any port 22 flags > S/SA synproxy state > > result > telnet 127.0.0.1 22 > Trying 127.0.0.1... > Connected to 127.0.0.1. > Escape character is '^]'. > > and it's hangs > > pfctl -s rules -v > No ALTQ support in kernel > ALTQ related functions disabled > pass in quick on lo0 proto tcp from any to any port = ssh flags > S/SA synproxy state [ Evaluations: 966392 Packets: 0 > Bytes: 0 States: 1 ] > > > pfctl -s state > No ALTQ support in kernel > ALTQ related functions disabled > self tcp 127.0.0.1:22 <- 127.0.0.1:44819 PROXY:DST > > without synproxy all is ok > > There is PR 86072 about that with unclear results. > > > Jura Hi. Do you have "set state-policy if-bound" in your options section of /etc/pf.conf? That's cleared up synproxy problems for me before. hth, jon b From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 13:59:26 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E51116A401 for ; Thu, 16 Mar 2006 13:59:26 +0000 (UTC) (envelope-from jura@networks.ru) Received: from networks.ru (ns.networks.ru [80.249.138.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8104543D45 for ; Thu, 16 Mar 2006 13:59:25 +0000 (GMT) (envelope-from jura@networks.ru) X-Spam-Status: No, hits=-3.2 required=6.0 Received: from [85.140.148.170] (account jura HELO notebook) by networks.ru (CommuniGate Pro SMTP 5.0) with ESMTPSA id 2462718; Thu, 16 Mar 2006 16:59:23 +0300 Message-ID: <004b01c64901$d563a4b0$0701010a@notebook> From: "Yuriy N. Shkandybin" To: "jon butchar" , References: <000e01c648f6$a92bc310$0701010a@notebook> <200603160843.59902.butchar.2@osu.edu> Date: Thu, 16 Mar 2006 16:59:23 +0300 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="koi8-r"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2670 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Cc: Subject: Re: pf: synproxy broken X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 13:59:26 -0000 I've add set state-policy if-bound in config file and problem persist. Jura > On Thursday 16 March 2006 07:39, Yuriy N. Shkandybin wrote: >> Hello >> >> from ealier 6.0 there is problem with synproxy in pf filter: >> this one 6.1-PRERELEASE #2: Wed Mar 15 02:02:37 MSK 2006 >> >> pf.conf just with single rule >> pass in quick on lo0 proto tcp from any to any port 22 flags >> S/SA synproxy state >> >> result >> telnet 127.0.0.1 22 >> Trying 127.0.0.1... >> Connected to 127.0.0.1. >> Escape character is '^]'. >> >> and it's hangs >> >> pfctl -s rules -v >> No ALTQ support in kernel >> ALTQ related functions disabled >> pass in quick on lo0 proto tcp from any to any port = ssh flags >> S/SA synproxy state [ Evaluations: 966392 Packets: 0 >> Bytes: 0 States: 1 ] >> >> >> pfctl -s state >> No ALTQ support in kernel >> ALTQ related functions disabled >> self tcp 127.0.0.1:22 <- 127.0.0.1:44819 PROXY:DST >> >> without synproxy all is ok >> >> There is PR 86072 about that with unclear results. >> >> >> Jura > > Hi. > > Do you have > "set state-policy if-bound" > in your options section of /etc/pf.conf? That's cleared up > synproxy problems for me before. > > hth, > > jon b > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 14:44:43 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66B9016A432 for ; Thu, 16 Mar 2006 14:44:43 +0000 (UTC) (envelope-from tbailey@secnap.com) Received: from secnap2.secnap.com (secnap2.secnap.com [204.89.241.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 765DE43D48 for ; Thu, 16 Mar 2006 14:44:41 +0000 (GMT) (envelope-from tbailey@secnap.com) X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 content-class: urn:content-classes:message MIME-Version: 1.0 Date: Thu, 16 Mar 2006 09:43:51 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: World 2006 - Register for the SECNAP and MIS Training Institute Discount! Thread-Index: AcZJCAqzl9G+LRkGSLKDMyWOEYlNXA== From: "Thomas Bailey" To: "Stable, Freebsd at Freebsd" Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: World 2006 - Register for the SECNAP and MIS Training Institute Discount! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 14:44:43 -0000 InfoSec World(tm) Conference and Expo 2006 April 3-5, 2006 Vendor Expo: April 3 & 4 Optional Workshops: April 1, 2, 5, 6, & 7 Disney's Coronado Springs Resort / Orlando, FL=20 http://www.misti.com/InfoSecWorld =20 SPECIAL OFFER! SECNAP Network Security Corp. and MIS Training Institute would like to = offer you 10% OFF of the regular undiscounted conference fee of $1495 to = attend InfoSec World Conference & Expo 2006!=20 =20 Come visit SECNAP Network Security Corp. at Booth 437. Learn how our = unique patented technologies provide an unparalleled level of network = security so cost effectively. We provide Full Security Audits, = Regulatory Compliance Audits, 24/7/365 Network Monitoring with our = patented HackerTrap, Monthly External Penetration Testing, Monthly = Internal Vulnerability Assessments and Full Email Threat Protection with = SpammerTrap. Visit our website www.secnap.com = . We look forward to seeing you at the SECNAP Booth 437 at InfoSec = World and don't forget to enter our raffle for the Bernhard Langer = autographed golf collectables package: (1) 85th PGA Championship sun visor (1) Ping sun visor with Bernhard Langer autograph (1) Etonic leather golf glove with Bernhard Langer autograph (2) Framed, signed photographs of Bernhard Langer (1) 2002 official PGA Tour pin (1) Top Flite Strata golf ball with Bernhard Langer autograph (1) Golf Club =20 =20 Click here to register for InfoSec World Conference & Expo 2006! http://www.misti.com/InfoSecWorldRegistration Please use OS06/VDISC as your Registration Code (This offer cannot be combined with other discounts.) =20 Real Challenges Meet Real Solutions! >From open source security tools to Windows protection strategies, from = technologies to demystifying wireless hacking techniques, InfoSec World = 2006 tackles the full spectrum of security challenges and offers = current, unbiased solutions. =20 Real-World Information Security Topics 97 sessions are packed into the agenda that focus on the strategies and = tools to secure your systems, including:=20 Hacking IPSec Virtual Private Networks, Hacking .NET, Advanced SQL = Injection, Bleeding-Edge Anti-Forensics Techniques and How to Combat = Them, Conquering Federated Identity Management: Lessons Learned!, = Securing VoIP, Threat Trends 2006: The Latest on Phishing, Pharming, = Adware/Spyware, Spam and Viruses, Planning and Deploying a Strategic = Security Architecture, And much more. . . =20 Don't Miss These Top-Notch Keynotes! * Tom Ridge, Former First Secretary of Homeland Security and Former = Governor=20 * Peter Bergen, Prominent Terrorism Analyst; Author, Holy War, Inc.: = Inside the Secret World of bin Laden. = =20 * Kevin Ashton, Co-founder and Former Executive Director, Auto-ID = Center, MIT; Author, The Internet of Things: RFID, Sensors and the New = Age of Business & Computing=20 * Jeff Jonas, Chief Scientist and Distinguished Engineer, IBM Entity = Analytics=20 CISO EXECUTIVE SUMMIT - Back by Popular Demand Sunday, April 2 Now in its fourth year, this exclusive one-day event for IT security = leaders will cover the unique issues faced by CISOs. InfoSec executives = and directors will discuss strategic and management challenges facing = them in the new world of information security.=20 http://www.misti.com/CISO The Security Compliance Summit - NEW at InfoSec World 2006! Thursday, April 6=20 This one-day summit will lead you through all the critical steps of a = successful compliance program, and give you valuable insight into how = leading companies tackle the minefield of challenges. The Summit will = deliver timely and practical strategies for meeting SOX, HIPAA, and GLBA = requirements with a strategy that is clear, integrated and proactive. http://www.misti.com/SecurityCompliance =20 SIGN UP FOR INFOSEC WORLD E-NEWS...AND WIN! InfoSec World E-News is your connection to everything that will be = happening at InfoSec World Conference & Expo 2006. This FREE monthly = e-newsletter will keep you up to date on the latest and greatest event = information!=20 =20 PLUS, when you sign up to receive your monthly InfoSec World E-News, you = will automatically be entered into a drawing to win a FREE conference = registration, FREE airfare to Orlando, and a FREE hotel room for two = nights during the conference!=20 =20 CLICK HERE to sign up for your InfoSec World E-News today! http://www.misti.com/InfoSecWorldEnewsletter =20 InfoSec World 2006 Conference & Expo=20 Please send me: =20 ______ The InfoSec World Conference & Expo 2006 brochure when it is = available=20 ______ A PDF of the InfoSec World Conference & Expo 2006 brochure when = it is available ______ Information on exhibiting at the InfoSec World Conference & Expo = 2006 =20 ______ If your contact information has changed, please let us know by = filling out the form below. =20 Name: Job title: Company: Address: City: State: Zip: Country: Phone: Fax: E-mail: Registration Code: OS06/VDISC =20 Best regards, =20 SECNAP Network Security 6421 Congress Avenue, #206, Boca Raton, FL 33487-2859 Phone: 561-999-5000 E-mail: sales@secnap.com Website: www.secnap.com Sign up for the SECNAP First Alert Security = Notifications @ http://www.secnap.com/lists = =20 From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 15:02:14 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D73BE16A400 for ; Thu, 16 Mar 2006 15:02:14 +0000 (UTC) (envelope-from hausen@punkt.de) Received: from kagate.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id F047043D45 for ; Thu, 16 Mar 2006 15:02:13 +0000 (GMT) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (hugo10.ka.punkt.de [10.0.0.110]) by kagate2.punkt.de with ESMTP id k2GF2Cfr000556 for ; Thu, 16 Mar 2006 16:02:12 +0100 (CET) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.10/8.12.10) with ESMTP id k2GF2BoI058108 for ; Thu, 16 Mar 2006 16:02:11 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.10/8.12.10/Submit) id k2GF2B6T058107 for stable@freebsd.org; Thu, 16 Mar 2006 16:02:11 +0100 (CET) (envelope-from ry93) Date: Thu, 16 Mar 2006 16:02:11 +0100 From: "Patrick M. Hausen" To: stable@freebsd.org Message-ID: <20060316150211.GA56531@hugo10.ka.punkt.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.10i Cc: Subject: Status of FreeBSD/Xen? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 15:02:14 -0000 Hi, folks! >From the sparse documentation I was able to find, it seems like Xen support was planned for 6.1-RELEASE. http://www.fsmware.com/xenofreebsd/7.0/STATUS "dom0/domU i386 support will be part of FreeBSD 6.1 (Jan 30 / Mar 20 freeze / release)" Is this true? A quick check on a system cvsup'ed to RELENG_6 did not look promising: # cd /usr/src/sys # laphroaig# find . -name '*xen*' ./i386/ibcs2/ibcs2_xenix.c ./i386/ibcs2/ibcs2_xenix.h ./i386/ibcs2/ibcs2_xenix_syscall.h ./i386/ibcs2/ibcs2_xenix_sysent.c ./i386/ibcs2/syscalls.xenix ./i386/ibcs2/syscalls.xenix.conf # Or isn't there supposed to be a separate i386-xeno directory somewhere in the source tree? Maybe it's part of i386? Sorry, but I spent quite some time with Google and some hints on how to get started would be great. Of course I can try -CURRENT, if necessary for Xen. Thanks, Patrick -- punkt.de GmbH Internet - Dienstleistungen - Beratung Vorholzstr. 25 Tel. 0721 9109 -0 Fax: -100 76137 Karlsruhe http://punkt.de From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 15:32:29 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE7A16A420 for ; Thu, 16 Mar 2006 15:32:29 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id B27C643D7B for ; Thu, 16 Mar 2006 15:32:28 +0000 (GMT) (envelope-from grafan@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so274075wxc for ; Thu, 16 Mar 2006 07:32:28 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Q9bDYj/H8/ltRr4Gi1WeqExw7LN2+E+0rL3OD1f6luxoJaBJLKLef/yahg55fgwkOvYSAraHmt3ZX+KRkqa9vKeY6nMnd0d9+I83GZ7n1v9tzaW/ZhNMbNzvC+EjqfHJCpZdO2i3TqmkU/Bq+9fq0MieXlXG4XMPzF5rj//UTow= Received: by 10.70.29.4 with SMTP id c4mr2123948wxc; Thu, 16 Mar 2006 07:32:27 -0800 (PST) Received: by 10.70.126.10 with HTTP; Thu, 16 Mar 2006 07:32:27 -0800 (PST) Message-ID: <6eb82e0603160732p4bb85504w7d3ef2baec8dd26f@mail.gmail.com> Date: Thu, 16 Mar 2006 10:32:27 -0500 From: "Rong-En Fan" To: stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: 6.1 ata panic if dma enabled X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 15:32:29 -0000 Hi, Recently, we upgrade a 4.11 box to 6.1-BETA2 by reinstall+newfs everything. After that, we found that if hw.ata.ata_dma=3D1 at boot, then as soon as i= t starts fsck -p, it panics. It happens only if ad0 is setted to UDMA66 or ab= ove. My current solution is set hw.ata.ata_dma=3D0 in loader.conf and manually turn DMA on ad0 to UDMA33 and rest ad4~ad7 to UDMA100. In the days of 4.x, there is something wrong with DMA on ad0, but it will fall back to PIO4 automatically without problem. We have been tried to 1) change the cable 2) change from primary ata controller to the second, 3) upgrade to RELENG_6 as of March 11, but all these are failed. There is no options in bios to turn off DMA for the onboard ATA controller. The ata controller and ad0 is atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 7.1 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xffa0 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=3D03 ostat0=3D50 ostat1=3D00 ata0: stat0=3D0x50 err=3D0x01 lsb=3D0x00 msb=3D0x00 ata0: stat1=3D0x00 err=3D0x01 lsb=3D0x00 msb=3D0x00 ata0: reset tp2 stat0=3D50 stat1=3D00 devices=3D0x1 ata0: [MPSAFE] ata0-master: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA100 cable=3D80 wire ad0: setting PIO4 on 82C686B chip ad0: setting UDMA100 on 82C686B chip ad0: 38166MB at ata0-master UDMA100 ad0: 78165360 sectors [19158C/16H/255S] 16 sectors/interrupt 1 depth queue I'm pretty sure this HD is capable of UDMA100 (by the specification on Seag= ate website). The console messages are: /dev/ad0s1e: clean, 823031 free (447 frags, 102823 blocks, 0.0% fragmentati= on) ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D191 ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D191 ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D131647 ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D131647 ad0: FAILURE - WRITE_DMA status=3D51 error=3D84 LBA=3D131647 g_vfs_done():ad0s1a[WRITE(offset=3D67371008, length=3D16384)]error =3D 5 [...] kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fault virtual address =3D 0x24 fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0xc04eef95 stack pointer =3D 0x28:0xe4c714f0 frame pointer =3D 0x28:0xe4c71500 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D resume, IOPL =3D 0 current process =3D 127 (cp) [thread pid 127 tid 100028 ] Stopped at turnstile_broadcast+0x9: movl 0x24(%eax),%eax db> bt Tracing pid 127 tid 100028 td 0xc474e000 turnstile_broadcast(0) at turnstile_broadcast+0x9 _mtx_unlock_sleep(c068aa60,0,0,0) at _mtx_unlock_sleep+0x6c softdep_sync_metadata(c4958880) at softdep_sync_metadata+0x7d4 ffs_syncvnode(c4958880,1) at ffs_syncvnode+0x43d ffs_truncate(c4958880,200,0,880,c4695d00,c474e000) at ffs_truncate+0x77e ufs_direnter(c4958880,c49de880,e4c7192c,e4c71bd0,0) at ufs_direnter+0x85d ufs_makeinode(81a4,c4958880,e4c71bbc,e4c71bd0) at ufs_makeinode+0x30f ufs_create(e4c71a84) at ufs_create+0x37 VOP_CREATE_APV(c0670ec0,e4c71a84) at VOP_CREATE_APV+0x3c VOP_CREATE(c4958880,e4c71bbc,e4c71bd0,e4c71ae0) at VOP_CREATE+0x34 vn_open_cred(e4c71ba8,e4c71cc4,1a4,c4695d00,4) at vn_open_cred+0x20c vn_open(e4c71ba8,e4c71cc4,1a4,4) at vn_open+0x29 kern_open(c474e000,804c1c8,0,602,21b6) at kern_open+0xd4 open(c474e000,e4c71cf0) at open+0x22 syscall(3b,3b,3b,8060100,bfbfeec4) at syscall+0x337 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (5, FreeBSD ELF32, open), eip =3D 0x28137ccf, esp =3D 0xbfbfec7c, ebp =3D 0xbfbfecc8 --- db> call doadump Cannot dump. No dump device defined. The full dmesg (with boot_verbose) is available at http://www.rafan.org/FreeBSD/ata/20060316-dmesg+db.txt I did a alltrace in ddb: http://www.rafan.org/FreeBSD/ata/20060311-dball.txt Regards, Rong-En Fan From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 15:55:51 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89E8C16A400 for ; Thu, 16 Mar 2006 15:55:51 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9DC843D6A for ; Thu, 16 Mar 2006 15:55:50 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (junior.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k2GFtmKs086739; Thu, 16 Mar 2006 08:55:49 -0700 (MST) (envelope-from scottl@samsco.org) Message-ID: <44198A7F.5030003@samsco.org> Date: Thu, 16 Mar 2006 08:55:43 -0700 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20051230 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Rong-En Fan References: <6eb82e0603160732p4bb85504w7d3ef2baec8dd26f@mail.gmail.com> In-Reply-To: <6eb82e0603160732p4bb85504w7d3ef2baec8dd26f@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: stable@freebsd.org Subject: Re: 6.1 ata panic if dma enabled X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 15:55:51 -0000 Rong-En Fan wrote: > Hi, > > Recently, we upgrade a 4.11 box to 6.1-BETA2 by reinstall+newfs everything. > After that, we found that if hw.ata.ata_dma=1 at boot, then as soon as it > starts fsck -p, it panics. It happens only if ad0 is setted to UDMA66 or above. > My current solution is set hw.ata.ata_dma=0 in loader.conf and manually > turn DMA on ad0 to UDMA33 and rest ad4~ad7 to UDMA100. In the days of > 4.x, there is something wrong with DMA on ad0, but it will fall back to > PIO4 automatically without problem. We have been tried to 1) change the > cable 2) change from primary ata controller to the second, 3) upgrade to > RELENG_6 as of March 11, but all these are failed. There is no options in > bios to turn off DMA for the onboard ATA controller. Please review the release notes from the 6.1-BETA2 announcement. Fixes went into 6.1 shortly after BETA2 was released, and are in BETA3 and BETA4. Scott From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 16:08:48 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C49316A420 for ; Thu, 16 Mar 2006 16:08:48 +0000 (UTC) (envelope-from craig@feniz.gank.org) Received: from ion.gank.org (ion.gank.org [69.55.238.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 134B843D45 for ; Thu, 16 Mar 2006 16:08:47 +0000 (GMT) (envelope-from craig@feniz.gank.org) Received: by ion.gank.org (Postfix, from userid 1001) id A1931117B8; Thu, 16 Mar 2006 10:08:47 -0600 (CST) Date: Thu, 16 Mar 2006 10:08:45 -0600 From: Craig Boston To: Freddie Cash Message-ID: <20060316160813.GA15720@nowhere> Mail-Followup-To: Craig Boston , Freddie Cash , stable@freebsd.org References: <440D74B3.3030309@vwsoft.com> <200603070939.30032.joao@matik.com.br> <54559.192.168.0.10.1141751042.squirrel@webmail.sd73.bc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54559.192.168.0.10.1141751042.squirrel@webmail.sd73.bc.ca> User-Agent: Mutt/1.4.2.1i Cc: stable@freebsd.org Subject: gmirror on existing filesystem (was Fresh install on gmirror'ed disks?) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 16:08:48 -0000 On Tue, Mar 07, 2006 at 09:04:02AM -0800, Freddie Cash wrote: > There's no need to copy files around. gmirror handles it all for you > behind the scenes. Just create the gmirror labels using the existing > disks/slices/partitions, then insert the second set of > disks/slices/parittions. gmirror will handle synchonising the data > across the mirror. AFAIK, gmirror causes whatever provider it's mirroring to "lose" the last block to metadata. I've always avoided mirroring an existing filesystem for fear that shrinking a UFS filesystem's underlying device might cause problems down the road. Can someone with knowledge of the UFS internals please confirm one way or the other if this is dangerous or not? Craig From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 16:10:28 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 307C816A420 for ; Thu, 16 Mar 2006 16:10:28 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id C334743D45 for ; Thu, 16 Mar 2006 16:10:27 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 7D6D4B80C; Thu, 16 Mar 2006 11:10:25 -0500 (EST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v746.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <5BEEC86C-20BF-4E1C-949B-29F5DB5CF40A@khera.org> Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Thu, 16 Mar 2006 11:10:24 -0500 To: Danny Braniss X-Mailer: Apple Mail (2.746.3) Cc: freebsd-stable Subject: Re: Adaptec AIC9410 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 16:10:28 -0000 On Mar 16, 2006, at 2:19 AM, Danny Braniss wrote: >> >> On Mar 15, 2006, at 2:31 AM, Scott Long wrote: >> >>> The MPT driver has prototype >>> support for SAS enabled LSI Logic chips. >> >> Sounds like what you would find in a Sunfire X4100 system... > > Yes! and indeed, it works like a charm. I did the MFC to 6.1; > well, actually, just copied the -current version to 6.1 :-) Neat. This is great to know. The next X4100 I order will have the built-in disks then... Did you just copy all of the mpt driver files and that was sufficient? Or did you have to patch anything else? From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 16:16:11 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A15A816A423 for ; Thu, 16 Mar 2006 16:16:11 +0000 (UTC) (envelope-from jrs@antronomia.com) Received: from cpe108.neoplus.adsl.tpnet.pl (cpe108.neoplus.adsl.tpnet.pl [83.31.210.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74CB443D46 for ; Thu, 16 Mar 2006 16:16:10 +0000 (GMT) (envelope-from jrs@antronomia.com) Date: Thu, 16 Mar 2006 08:11:55 -0500 From: oc X-Mailer: The Bat! (v2.00.9) Personal X-Priority: 3 Message-ID: <0973031458.20060316081155@antronomia.com> To: Stable MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-milter at cpe108.neoplus.adsl.tpnet.pl Cc: Subject: =?windows-1251?b?w+vg4u3u7PMg4fP14+Dr8uXw8yAgLSDO0c3Ows3bxSDR?= =?windows-1251?b?0MXE0dLCwCDP0MXEz9DI39LI3w==?= X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: 62bor@yahoo.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 16:16:11 -0000 >>Ďîćŕëóéńňŕ, ďĺđĺäŕéňĺ áóăŕëňĺđó >>>>>>>>>>>>> >> 23 ěŕđňŕ 2006 ă. Ęîíńóëüňŕöčîííűé ńĺěčíŕđ "Ó×ĹŇ ÎŃÍÎÂÍŰŐ ŃĐĹÄŃŇ ĎĐĹÄĎĐČßŇČß" 1.Ó÷ĺň îńíîâíűő ńđĺäńňâ (ÎŃ). Íîđěŕňčâíŕ˙ áŕçŕ. Ďčńüěĺííűĺ đŕçú˙ńíĺíč˙ óďîëíîěî÷ĺííűő îđăŕíîâ č čő äîëćíîńňíűő ëčö ďî âîďđîńŕě ďđčěĺíĺíč˙ äĺéńňâóţůĺăî çŕęîíîäŕňĺëüńňâŕ â îňíîřĺíčč ó÷ĺňŕ č íŕëîăîîáëîćĺíč˙ îďĺđŕöčé ń ÎŃ. Ŕđáčňđŕćíŕ˙ ďđŕęňčęŕ â đĺřĺíčč ńďîđíűő âîďđîńîâ. 2.Ýëĺěĺíňű ó÷ĺňíîé ďîëčňčęč ďđĺäďđč˙ňč˙, â ň.÷. äë˙ öĺëĺé íŕëîăîîáëîćĺíč˙ â îňíîřĺíčč ÎŃ â ńâĺňĺ íîâűő ňđĺáîâŕíčé íŕëîăîâîăî çŕęîíîäŕňĺëüńňâŕ 58-ÔÇ, 118-ÔÇ, 119-ÔÇ č äđ. 3.Ó÷ĺň äâčćčěîăî č íĺäâčćčěîăî čěóůĺńňâŕ îđăŕíčçŕöčé: çäŕíčé, ńîîđóćĺíčé, ęîěďüţňĺđíîé ňĺőíčęč, ŕâňîňđŕíńďîđňŕ č äđ. Ńîçäŕíčĺ ÎŃ ďîäđ˙äíűě, őîç˙éńňâĺííűě ńďîńîáîě. Îńîáĺííîńňč čń÷čńëĺíč˙ ÍÄŃ. Ďđčîáđĺňĺíčĺ ÎŃ â đĺçóëüňŕňĺ âęëŕäŕ â óńňŕâíűé ęŕďčňŕë, â áĺçâîçěĺçäíîĺ ďîëüçîâŕíčĺ, áĺçâîçěĺçäíîé ďĺđĺäŕ÷č, ňîâŕđîîáěĺíŕ. Ďđčîáđĺňĺíčĺ çŕ číîńňđŕííóţ âŕëţňó, çŕ ń÷ĺň çŕĺěíűő ńđĺäńňâ. Îńîáĺííîńňč áóőăŕëňĺđńęîăî ó÷ĺňŕ č íŕëîăîâîăî ó÷ĺňŕ, íŕëîăîâűĺ ďîńëĺäńňâč˙. 4.Ďĺđâč÷íŕ˙ ó÷ĺňíŕ˙ äîęóěĺíňŕöč˙. Ďđčěĺíĺíčĺ óíčôčöčđîâŕííűő ôîđě ďĺđâč÷íîé ó÷ĺňíîé äîęóěĺíňŕöčč, đŕçđŕáîňęŕ ńîáńňâĺííűő ôîđě. 5.Ńďîńîáű íŕ÷čńëĺíč˙ ŕěîđňčçŕöčč. Ďđčěĺíĺíčĺ ďîďđŕâî÷íűő ęîýôôčöčĺíňîâ. Ó÷ĺň ÎŃ áűâřčő â óďîňđĺáëĺíčč. Đŕçëč÷č˙ â îöĺíęĺ ÎŃ â áóőăŕëňĺđńęîě ó÷ĺňĺ č íŕëîăîâîě ó÷ĺňĺ. 6.Čçěĺíĺíčĺ ďĺđâîíŕ÷ŕëüíîé ńňîčěîńňč ÎŃ â đĺçóëüňŕňĺ đĺęîíńňđóęöčč, ěîäĺđíčçŕöčč, ÷ŕńňč÷íîé ëčęâčäŕöčč, äîîáîđóäîâŕíč˙, ďĺđĺîöĺíęč ÎŃ. 7.Çŕňđŕňű íŕ ńîäĺđćŕíčĺ č đĺěîíň ÎŃ. Îńîáĺííîńňč ó÷ĺňŕ çŕňđŕň íŕ đĺěîíň ęîěďüţňĺđíîé ňĺőíčęč, ŕâňîňđŕíńďîđňíűő ńđĺäńňâ, íĺäâčćčěîăî čěóůĺńňâŕ. 8.Ďĺđĺěĺůĺíčĺ ÎŃ. Âűáűňčĺ ÎŃ ďî äîăîâîđó ęóďëč-ďđîäŕćč, áĺçâîçěĺçäíîé ďĺđĺäŕ÷č, ďĺđĺäŕ÷č â ÓĘ, ńďčńŕíčč. Íŕëîăîâűĺ ďîńëĺäńňâč˙. Ďîđ˙äîę čń÷čńëĺíč˙, âîńńňŕíîâëĺíč˙ ÍÄŃ 9.Ŕđĺíäŕ äâčćčěîăî č íĺäâčćčěîăî čěóůĺńňâŕ. Çŕňđŕňű (đŕńőîäű) íŕ đĺěîíň, ěîäĺđíčçŕöčţ (đĺęîíńňđóęöčţ) ŕđĺíäîâŕííűő ÎŃ. Îňäĺëčěűĺ č íĺîňäĺëčěűĺ óëó÷řĺíč˙ ŕđĺíäîâŕííîăî čěóůĺńňâŕ. Íŕëîăîâűĺ ďîńëĺäńňâč˙. 10.Číâĺíňŕđčçŕöč˙ ÎŃ. Íîâűĺ ňđĺáîâŕíč˙ Ěčíôčíŕ ę ńâĺđęĺ äŕííűő číâĺíňŕđíűő ęŕđňî÷ĺę ń äŕííűěč ńčíňĺňč÷ĺńęîăî ó÷ĺňŕ ÎŃ >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ńňîčěîńňü ó÷ŕńňč˙: 4 897 đóá. ń ó÷ĺňîě ÍÄŃ. Áîëĺĺ îäíîăî ó÷ŕńňíčęŕ îň ęîěďŕíčč - ńęčäęŕ 10%  ńňîčěîńňü âęëţ÷ĺíű: đŕçäŕňî÷íűĺ ěŕňĺđčŕëű, ÷ŕé-ďŕóçű, îáĺä, ďčńüěĺííűĺ ëđčíŕäëĺćíîńňč. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ńĺěčíŕđű ďđîőîä˙ň â ńîâđĺěĺííűő, îáîđóäîâŕííűő ŕóäčňîđč˙ő /ě. Ŕâčŕěîňîđíŕ˙/. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Âđĺě˙ ďđîâĺäĺíč˙: ń 10-00 äî 17-00. Đĺăčńňđŕöč˙ íŕ ńŕéňĺ. Äîďîëíčňĺëüíŕ˙ číôîđěŕöč˙ ďî ňĺëĺôîíó: /495/ 585-10-68 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ďĺđĺäŕéňĺ ďîćŕëóéńňŕ â áóőăŕëňĺđčţ >>> >>>>>>>>>>>> From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 16:42:11 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09EFA16A401 for ; Thu, 16 Mar 2006 16:42:11 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from pproxy.gmail.com (pproxy.gmail.com [64.233.166.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63DE943D46 for ; Thu, 16 Mar 2006 16:42:10 +0000 (GMT) (envelope-from jfvogel@gmail.com) Received: by pproxy.gmail.com with SMTP id n25so524049pyg for ; Thu, 16 Mar 2006 08:42:09 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=USTj4U9UXMXBd/gY5LLTrmlaoGut5n16qnqFWNr0ZR1TtzDXpDf2vXt94ABwtB9QR5IaQ8eT7kFxFj6yG6/OIeHqNc44xF/0BaMk7RdDjWOV9XRFvKyvUUmjCGcuVBHf3Sub0reVHQmQHLyZb47E0STvSkPhYxcd0zG1Qgksp7s= Received: by 10.35.113.12 with SMTP id q12mr1696897pym; Thu, 16 Mar 2006 08:42:09 -0800 (PST) Received: by 10.35.28.4 with HTTP; Thu, 16 Mar 2006 08:42:09 -0800 (PST) Message-ID: <2a41acea0603160842i6a8aa2adk63ce7ffc4a2e5113@mail.gmail.com> Date: Thu, 16 Mar 2006 08:42:09 -0800 From: "Jack Vogel" To: "Yuriy N. Shkandybin" In-Reply-To: <011901c648ea$4a738670$0701010a@notebook> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <011901c648ea$4a738670$0701010a@notebook> Cc: freebsd-net@freebsd.org, freebsd-stable@freebsd.org Subject: Re: jumbo em X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 16:42:11 -0000 On 3/16/06, Yuriy N. Shkandybin wrote: > Hello > > I have 2 freebsd servers connected by dedicated wire via em interfaces. > systems =3D 6.1-PRERELEASE #0: Tue Mar 14 11:58:23 MSK 2006 > > 1st) > man em says > MTU size for Jumbo Frames is 16114 and i'm sure i've setup this on freebs= d-5 and probably ealier 6.0 > But now > ifconfig em1 mtu 16114 > ifconfig: ioctl (set mtu): Invalid argument > 16110 - max possible With newer hardware the FIFO has been getting smaller, so jumbos even this large wont be allowed, I'm away from the code right now but on the 82571 adapter its max is in the 9K range. And the man page is more than likely out of date. Whether you can do jumbos at all, and if so, what size you are allowed to make them is adpater specific. Jack From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 17:34:59 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F14316A420 for ; Thu, 16 Mar 2006 17:34:59 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 028E343D7D for ; Thu, 16 Mar 2006 17:34:49 +0000 (GMT) (envelope-from grafan@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so294600wxc for ; Thu, 16 Mar 2006 09:34:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CjxoysU42aeV/UZeiKejYEmAjtDg681GoSB+bcAJXFJl0OjjrHoGWbi1YpVn0obOtkr5el0eep3TqtwZvvsx1Rvp35ivXmWISH0HF3a2LcW4MZVSg4uXimlA9NyCwda+fypR6G86u+G5Z3dOdPYvUyc+BIyqWQeLpT/d//eWXy0= Received: by 10.70.77.15 with SMTP id z15mr1638180wxa; Thu, 16 Mar 2006 09:34:48 -0800 (PST) Received: by 10.70.126.10 with HTTP; Thu, 16 Mar 2006 09:34:48 -0800 (PST) Message-ID: <6eb82e0603160934p6f795c26sbdd63ffda9cfe889@mail.gmail.com> Date: Thu, 16 Mar 2006 12:34:48 -0500 From: "Rong-En Fan" To: "Scott Long" In-Reply-To: <44198A7F.5030003@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <6eb82e0603160732p4bb85504w7d3ef2baec8dd26f@mail.gmail.com> <44198A7F.5030003@samsco.org> Cc: stable@freebsd.org Subject: Re: 6.1 ata panic if dma enabled X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 17:34:59 -0000 On 3/16/06, Scott Long wrote: > Rong-En Fan wrote: > > Hi, > > > > Recently, we upgrade a 4.11 box to 6.1-BETA2 by reinstall+newfs everyth= ing. > > After that, we found that if hw.ata.ata_dma=3D1 at boot, then as soon = as it > > starts fsck -p, it panics. It happens only if ad0 is setted to UDMA66 o= r above. > > My current solution is set hw.ata.ata_dma=3D0 in loader.conf and manual= ly > > turn DMA on ad0 to UDMA33 and rest ad4~ad7 to UDMA100. In the days of > > 4.x, there is something wrong with DMA on ad0, but it will fall back to > > PIO4 automatically without problem. We have been tried to 1) change the > > cable 2) change from primary ata controller to the second, 3) upgrade t= o > > RELENG_6 as of March 11, but all these are failed. There is no options = in > > bios to turn off DMA for the onboard ATA controller. > > Please review the release notes from the 6.1-BETA2 announcement. Fixes > went into 6.1 shortly after BETA2 was released, and are in BETA3 and BETA= 4. Upgrade to today's RELENG_6, it is the same. I'm not quite if this is hardware problem. But however, why can't ata fall back to PIO4 is DMA write error, just like 4.x does? ata0-master: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA100 cable=3D80 wire ad0: setting PIO4 on 82C686B chip ad0: setting UDMA100 on 82C686B chip ad0: 38166MB at ata0-master UDMA100 ad0: 78165360 sectors [19158C/16H/255S] 16 sectors/interrupt 1 depth queue /dev/ad0s1d: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1d: clean, 624587 free (28411 frags, 74522 blocks, 1.9% fragmentat= ion) /dev/ad0s1e: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1e: clean, 826458 free (466 frags, 103249 blocks, 0.0% fragmentati= on) ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D191 ad0: WARNING - WRITE_DMA UDMA ICRC error (retrying request) LBA=3D191 ad0: FAILURE - WRITE_DMA status=3D51 error=3D84 LBA=3D191 g_vfs_done():ad0s1a[WRITE(offset=3D65536, length=3D2048)]error =3D 5 mount: /dev/ad0s1a: Input/output error Mounting root filesystem rw failed, startup aborted Boot interrupted Enter root password, or ^D to go multi-user then I just continue..., finally it panics kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fault virtual address =3D 0x24 fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0xc04eeee5 stack pointer =3D 0x28:0xe4cfb4f0 frame pointer =3D 0x28:0xe4cfb500 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D resume, IOPL =3D 0 current process =3D 168 (cp) [thread pid 168 tid 100044 ] Stopped at turnstile_broadcast+0x9: movl 0x24(%eax),%eax db> bt Tracing pid 168 tid 100044 td 0xc48de180 turnstile_broadcast(0) at turnstile_broadcast+0x9 _mtx_unlock_sleep(c068aca0,0,0,0) at _mtx_unlock_sleep+0x6c softdep_sync_metadata(c495d660) at softdep_sync_metadata+0x7d4 ffs_syncvnode(c495d660,1) at ffs_syncvnode+0x43d ffs_truncate(c495d660,200,0,880,c4695d00,c48de180) at ffs_truncate+0x77e ufs_direnter(c495d660,c49e1880,e4cfb92c,e4cfbbd0,0) at ufs_direnter+0x85d ufs_makeinode(81a4,c495d660,e4cfbbbc,e4cfbbd0) at ufs_makeinode+0x30f ufs_create(e4cfba84) at ufs_create+0x37 VOP_CREATE_APV(c0671100,e4cfba84) at VOP_CREATE_APV+0x3c VOP_CREATE(c495d660,e4cfbbbc,e4cfbbd0,e4cfbae0) at VOP_CREATE+0x34 vn_open_cred(e4cfbba8,e4cfbcc4,1a4,c4695d00,4) at vn_open_cred+0x20c vn_open(e4cfbba8,e4cfbcc4,1a4,4) at vn_open+0x29 kern_open(c48de180,804c1c8,0,602,21b6) at kern_open+0xd4 open(c48de180,e4cfbcf0) at open+0x22 syscall(3b,3b,3b,8060100,bfbfeec4) at syscall+0x337 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (5, FreeBSD ELF32, open), eip =3D 0x28137ccf, esp =3D 0xbfbfec7c, ebp =3D 0xbfbfecc8 --- Regards, Rong-En Fan From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 17:58:09 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBAE716A401 for ; Thu, 16 Mar 2006 17:58:09 +0000 (UTC) (envelope-from jbozza@qlinksmedia.com) Received: from mail.thinkburst.com (mail.thinkburst.com [66.210.222.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC7843D46 for ; Thu, 16 Mar 2006 17:58:09 +0000 (GMT) (envelope-from jbozza@qlinksmedia.com) Received: from mailgate.thinkburstmedia.com (gateway.thinkburstmedia.com [66.210.222.36]) by mail.thinkburst.com (Postfix) with ESMTP id 708A83A; Thu, 16 Mar 2006 11:58:08 -0600 (CST) Received: from thinkburst.com (bacchus.thinkburst.com [10.1.1.25]) by mailgate.thinkburstmedia.com (Postfix) with ESMTP id 5D67017046; Thu, 16 Mar 2006 11:58:08 -0600 (CST) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Date: Thu, 16 Mar 2006 11:58:07 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: well-supported SATA RAID card? thread-index: AcZIjc0TvAAfaJxuTae1OV+xVDjIlQAkpSpA From: "Jaime Bozza" To: Cc: freebsd-stable@mlists.thewrittenword.com Subject: RE: well-supported SATA RAID card? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 17:58:09 -0000 >>>*Rebuild times? >>Can't give you an exact since it's been a while since I tested the >>original rebuild, but we've migrated the RAID set (and volume) twice >>since getting the system and the migrations happened within hours. I >>was able to expand the RAID Set (adding drives) and expand the >>corresponding volume set to fill the drives all while the system was >>running without a hitch. >So you increased the size of a file-system on-the-fly? Not a file-system but a volume. I'm partitioning the volume into 800GB chunks for this particular situation. We just did it for the last time, so I have some numbers. Previous Configuration: 11 WD4000YR 400GB drives RAID 6 3600GB volume 4 800GB partitions (using gpt) Remaining 400GB unused Added: 5 WD4000YR 400GB drives Time to Expand RAID set: 12 hours Time to Expand Volume: 56 minutes New Volume: RAID 6 5600GB 7 800GB partitions During the RAID Set Expansion, the Areca fills out the Volume from the 11 drives to the 16 drives, so it's a lot of writing. It basically rewrote all 3600GB of existing data, which accounts for the 12 hours. Expanding the Volume "initializes" the extra space and once it's done FreeBSD sees the "new" larger volume. Areca doesn't touch the first part of the volume when expanding it, so existing data isn't destroyed. Of course, if you modified a volume set to make it smaller, you're mostly out of luck. I didn't have to reboot during any of this process. The most I had to do was unmount the 4 existing volumes so that I had write access to the volume (gpt doesn't allow write access when partitions are mounted), then run gpt recover to recover the secondary partition table at the end of the volume. After that, it was just a simple matter of adding the 3 new partitions and mounting them. The above "Time to Expand Volume" was actually generating RAID 6 parity data for the additional 2 terabytes, so that should give a good idea on the speed of the XOR engine. This was at the maximum of 80% utilization for the background process. I suspect it would have been a little quicker if I restarted and used the BIOS menu to expand (since it would have been a foreground process), but it's nice to be able to keep the system in used while I was running the processes. Jaime Bozza From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 18:45:18 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4692216A433 for ; Thu, 16 Mar 2006 18:45:18 +0000 (UTC) (envelope-from jason.harmening@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id B98C143D4C for ; Thu, 16 Mar 2006 18:45:08 +0000 (GMT) (envelope-from jason.harmening@gmail.com) Received: by zproxy.gmail.com with SMTP id 8so393809nzo for ; Thu, 16 Mar 2006 10:45:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=F/wfNVKvJ7dyz7yKnVB4AUWkuju0Al4cn3OsVslHKBXqcZH82fLkyX9yNP3SuTgnMYWDgEYKJhYU+7P60eN86Ukk4ca4HoPcB2gu41xsMT0s1i8t6GvFVOJh/eOanRi+DpesCc4pzOwOinBJ55jKFhbKGCKxSAzmEzN+9BfC90U= Received: by 10.36.251.80 with SMTP id y80mr2661234nzh; Thu, 16 Mar 2006 10:45:07 -0800 (PST) Received: by 10.36.158.4 with HTTP; Thu, 16 Mar 2006 10:45:07 -0800 (PST) Message-ID: <2d1264630603161045t31774a33h9cec88c4b7d6d13d@mail.gmail.com> Date: Thu, 16 Mar 2006 12:45:07 -0600 From: "Jason Harmening" To: freebsd-stable@freebsd.org, freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: [6.1-PRERELEASE/amd64] Kernel panic during heavy UFS traffic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 18:45:18 -0000 Last night I ran into a series of kernel panics that seemed to be related t= o heavy UFS traffic. I ran into two consecutive panics when trying to mount = a UFS-formatted DVD-RAM as a regular user (though not when I mounted it as root). The system seemed to actually succeed in mounting the disk, as it was marked dirty after the ensuing panic. Upon rebooting after the second panic, I saw another two consecutive panics which happened whenever I tried to do something fairly disk-intensive (e.g. starting the X server + KDE) while the bgfsck was still running from the last panic. Ultimately I rebooted in single-user mode, ran fsck manually, and have experienced no further panics. I suspect these panics may be related to UFS deadlocks, as in all cases the application that was attempting disk access hung for several seconds before the panic, followed by a few seconds of total system hang, followed by the automatic reboot. I'm running 6.1-PRELEASE/amd64 from 12 March on an Athlon 64 x2 (SMP) with SCHED_ULE+PREEMPTION--dangerous combination I know, but it's been rock soli= d for months until now. If anyone is interested, I'll try to reproduce this panic with a dump/backtrace. It may be one of the UFS deadlock issues that's already under investigation for 6.1-RELEASE. Thanks, Jason Harmening From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 18:53:51 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C46AF16A420 for ; Thu, 16 Mar 2006 18:53:51 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5CCB43D48 for ; Thu, 16 Mar 2006 18:53:50 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (yvwfgj@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k2GIriiE040327 for ; Thu, 16 Mar 2006 19:53:49 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k2GIrinA040326; Thu, 16 Mar 2006 19:53:44 +0100 (CET) (envelope-from olli) Date: Thu, 16 Mar 2006 19:53:44 +0100 (CET) Message-Id: <200603161853.k2GIrinA040326@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG In-Reply-To: <20060316080758.GA3323@lorien.int.gecko.de> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Thu, 16 Mar 2006 19:53:49 +0100 (CET) Cc: Subject: Re: swap at beginning of slice - danger? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 18:53:51 -0000 Gunther Nikl wrote: > Oliver Fromme wrote: > > By the way, the first partition on a disk is usually the root partition, > > not the swap partition. So the problem could arise only in unusual > > circumstances. > > IMHO this is a very dangerous assumption It's not an assumption. It's the layout that most people use. It's also the sysinstall default, first because of historical reasons, and second because some BIOSes can't boot if the root partition is too far from the start, so it's best to put it at the very front of the disk. Of course there are people who don't adhere to the default settings, for whatever reason. But those should know what they're doing. As I said, both swap and UFS skip the first sectors, so there is no danger. If you put other things on your partitions (e.g. a FAT FS) which _do_ use the first sectors, then you should make sure that your partition doesn't start on sector 0 of the disk. Otherwise you will notice very quickly. :-) Anyway, that was always the case, and people never had any problems with it. At least I can't remember any complaints about it in the past few years. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "I have stopped reading Stephen King novels. Now I just read C code instead." -- Richard A. O'Keefe From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 19:26:43 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D2B216A427 for ; Thu, 16 Mar 2006 19:26:43 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 613BB43D64 for ; Thu, 16 Mar 2006 19:26:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 4B1221A4EB3; Thu, 16 Mar 2006 11:26:43 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id ACDA2517B6; Thu, 16 Mar 2006 14:26:42 -0500 (EST) Date: Thu, 16 Mar 2006 14:26:42 -0500 From: Kris Kennaway To: "Patrick M. Hausen" Message-ID: <20060316192642.GA30040@xor.obsecurity.org> References: <20060316150211.GA56531@hugo10.ka.punkt.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <20060316150211.GA56531@hugo10.ka.punkt.de> User-Agent: Mutt/1.4.2.1i Cc: stable@freebsd.org Subject: Re: Status of FreeBSD/Xen? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 19:26:43 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 16, 2006 at 04:02:11PM +0100, Patrick M. Hausen wrote: > Hi, folks! >=20 > >From the sparse documentation I was able to find, it seems > like Xen support was planned for 6.1-RELEASE. >=20 > http://www.fsmware.com/xenofreebsd/7.0/STATUS >=20 > "dom0/domU i386 support will be part of FreeBSD 6.1 > (Jan 30 / Mar 20 freeze / release)" >=20 > Is this true? It was the hope, but it hasn't come true. Kris --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGbvyWry0BWjoQKURAhnBAJ9ih0+9qZeJthDvyGoyRKtOdMvWgQCgxtdV GsyG7UEOShih00aJzfg7RIM= =tlSt -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 19:39:22 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12C9E16A400 for ; Thu, 16 Mar 2006 19:39:22 +0000 (UTC) (envelope-from bms@spc.org) Received: from mindfull.spc.org (mindfull.spc.org [83.167.185.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A84643D46 for ; Thu, 16 Mar 2006 19:39:21 +0000 (GMT) (envelope-from bms@spc.org) Received: from arginine.spc.org ([83.167.185.2]) by mindfull.spc.org with esmtps (TLSv1:AES256-SHA:256) (Exim 4.52) id 1FJyJY-0002hT-F6; Thu, 16 Mar 2006 19:39:16 +0000 Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 439956564F; Thu, 16 Mar 2006 19:39:15 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32413-06-7; Thu, 16 Mar 2006 19:39:14 +0000 (GMT) Received: by arginine.spc.org (Postfix, from userid 1078) id 763EE6564E; Thu, 16 Mar 2006 19:39:14 +0000 (GMT) Date: Thu, 16 Mar 2006 19:39:14 +0000 From: Bruce M Simpson To: Kris Kennaway Message-ID: <20060316193914.GF11850@spc.org> References: <20060316150211.GA56531@hugo10.ka.punkt.de> <20060316192642.GA30040@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060316192642.GA30040@xor.obsecurity.org> User-Agent: Mutt/1.4.1i Organization: Incunabulum X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - mindfull.spc.org X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - spc.org X-Source: X-Source-Args: X-Source-Dir: Cc: stable@freebsd.org Subject: Re: Status of FreeBSD/Xen? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 19:39:22 -0000 Hi, On Thu, Mar 16, 2006 at 02:26:42PM -0500, Kris Kennaway wrote: > > http://www.fsmware.com/xenofreebsd/7.0/STATUS > > "dom0/domU i386 support will be part of FreeBSD 6.1 > > (Jan 30 / Mar 20 freeze / release)" > > Is this true? > > It was the hope, but it hasn't come true. What about domU? I thought I saw some domU support merged to HEAD within the past few months. Even that would be enough for my purposes going forward though my group would be happier with dom0. Regards, BMS From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 19:54:07 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A202616A400; Thu, 16 Mar 2006 19:54:07 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA4743D46; Thu, 16 Mar 2006 19:54:07 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 45E261A4EB7; Thu, 16 Mar 2006 11:54:07 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9D571525C5; Thu, 16 Mar 2006 14:54:06 -0500 (EST) Date: Thu, 16 Mar 2006 14:54:06 -0500 From: Kris Kennaway To: Jason Harmening Message-ID: <20060316195406.GA30669@xor.obsecurity.org> References: <2d1264630603161045t31774a33h9cec88c4b7d6d13d@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <2d1264630603161045t31774a33h9cec88c4b7d6d13d@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-bugs@freebsd.org, freebsd-stable@freebsd.org Subject: Re: [6.1-PRERELEASE/amd64] Kernel panic during heavy UFS traffic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 19:54:07 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 16, 2006 at 12:45:07PM -0600, Jason Harmening wrote: > Last night I ran into a series of kernel panics that seemed to be related= to > heavy UFS traffic. I ran into two consecutive panics when trying to moun= t a > UFS-formatted DVD-RAM as a regular user (though not when I mounted it as > root). The system seemed to actually succeed in mounting the disk, as it > was marked dirty after the ensuing panic. Upon rebooting after the second > panic, I saw another two consecutive panics which happened whenever I tri= ed > to do something fairly disk-intensive (e.g. starting the X server + KDE) > while the bgfsck was still running from the last panic. Ultimately I > rebooted in single-user mode, ran fsck manually, and have experienced no > further panics. I suspect these panics may be related to UFS deadlocks, = as > in all cases the application that was attempting disk access hung for > several seconds before the panic, followed by a few seconds of total syst= em > hang, followed by the automatic reboot. >=20 > I'm running 6.1-PRELEASE/amd64 from 12 March on an Athlon 64 x2 (SMP) with > SCHED_ULE+PREEMPTION--dangerous combination I know, but it's been rock so= lid > for months until now. If anyone is interested, I'll try to reproduce this > panic with a dump/backtrace. It may be one of the UFS deadlock issues > that's already under investigation for 6.1-RELEASE. Yeah, we need a trace. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGcJeWry0BWjoQKURApTnAKC7IVWS6WdDqobCrXC/2JgWWQClDACgkMQB 1NDxxxUycz4rRP3dwBFo1Pc= =urCZ -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 20:57:13 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D90616A420 for ; Thu, 16 Mar 2006 20:57:13 +0000 (UTC) (envelope-from hausen@punkt.de) Received: from kagate.punkt.de (kagate.punkt.de [217.29.33.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB70543D9D for ; Thu, 16 Mar 2006 20:56:51 +0000 (GMT) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (hugo10.ka.punkt.de [10.0.0.110]) by kagate2.punkt.de with ESMTP id k2GKuofr002389 for ; Thu, 16 Mar 2006 21:56:50 +0100 (CET) Received: from hugo10.ka.punkt.de (localhost [127.0.0.1]) by hugo10.ka.punkt.de (8.12.10/8.12.10) with ESMTP id k2GKuooI066397; Thu, 16 Mar 2006 21:56:50 +0100 (CET) (envelope-from ry93@hugo10.ka.punkt.de) Received: (from ry93@localhost) by hugo10.ka.punkt.de (8.12.10/8.12.10/Submit) id k2GKuoIa066396; Thu, 16 Mar 2006 21:56:50 +0100 (CET) (envelope-from ry93) Date: Thu, 16 Mar 2006 21:56:50 +0100 From: "Patrick M. Hausen" To: Bruce M Simpson Message-ID: <20060316205650.GA66282@hugo10.ka.punkt.de> References: <20060316150211.GA56531@hugo10.ka.punkt.de> <20060316192642.GA30040@xor.obsecurity.org> <20060316193914.GF11850@spc.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060316193914.GF11850@spc.org> User-Agent: Mutt/1.5.10i Cc: stable@freebsd.org, Kris Kennaway Subject: Re: Status of FreeBSD/Xen? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 20:57:13 -0000 Hello! On Thu, Mar 16, 2006 at 07:39:14PM +0000, Bruce M Simpson wrote: > On Thu, Mar 16, 2006 at 02:26:42PM -0500, Kris Kennaway wrote: > > It was the hope, but it hasn't come true. > > What about domU? I thought I saw some domU support merged to HEAD > within the past few months. Even that would be enough for my purposes > going forward though my group would be happier with dom0. domU would be perfectly enough for us as well. I would not mind booting a minimal Linux to run virtual FreeBSD hosts. I'm looking for some pointers to documents on how to get started? Cross compile kernel for domU from a -current system? No problem. But _where_is_ xen support in the source tree? Thanks, Patrick -- punkt.de GmbH Internet - Dienstleistungen - Beratung Vorholzstr. 25 Tel. 0721 9109 -0 Fax: -100 76137 Karlsruhe http://punkt.de From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 21:07:37 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33E3B16A401 for ; Thu, 16 Mar 2006 21:07:37 +0000 (UTC) (envelope-from freebsd@bitparts.org) Received: from mail.bitparts.org (63-253-101-190.ip.mcleodusa.net [63.253.101.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DDA743D46 for ; Thu, 16 Mar 2006 21:07:31 +0000 (GMT) (envelope-from freebsd@bitparts.org) Received: from [127.0.0.1] (71-11-157-24.dhcp.stls.mo.charter.com [71.11.157.24]) (authenticated bits=0) by mail.bitparts.org (8.13.5/8.13.5) with ESMTP id k2GL7S4U088304; Thu, 16 Mar 2006 15:07:29 -0600 (CST) (envelope-from freebsd@bitparts.org) Message-ID: <4419D391.1010908@bitparts.org> Date: Thu, 16 Mar 2006 15:07:29 -0600 From: "J. Buck Caldwell" User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Andrew Pantyukhin References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: pass (mail.bitparts.org: authenticated connection) receiver=mail.bitparts.org; client-ip=71.11.157.24; helo=[127.0.0.1]; envelope-from=freebsd@bitparts.org; x-software=spfmilter 0.93 http://www.acme.com/software/spfmilter/; Cc: stable Subject: Re: too much spam (Was: no subject) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 21:07:37 -0000 Andrew Pantyukhin wrote: > On 3/16/06, J. Buck Caldwell wrote: > >> You know, I tried printing it out, but I still can't see the naked lady... >> > > :-) > > Beware, by answering spam messages like > that you get your address into spam filters all > over the world. Change the subject line next > time. > > You might notice my email address - it's only used on this listserv, and is a disposable alias. I start getting too much spam on it, I unsubscribe, resubscribe with a variant (say, freebsd1), and kill the old alias. I can't recommend this enough to anyone running their own MX server - I never give out the same email address to two different organizations. That way I know who's violating their own privacy policies when I start getting spam. To give you a for-instance - at work, where I have only one address, and it's given out to all of our vendors, I get about 300 spam per day (that's AFTER the RBLs). At home, on my own domain, I have about 130 different aliases pointing to one account, and get about 3 spam mails a day, but to only two aliases - the one in my domain registration (which is whois accessible), and this one (because it's web-archive spiderable).Any other spam I get (which is rare), I check the privacy policies of the sender (usually legitimate bulk-mail services) and their client (Target being the biggest offender) and rat the former out to the latter as violating published terms of service, and cc: it to the FTC. Oh - wait - sorry, I misread. You meant that people might not get messages FROM that address anymore. Meh. I don't consider myself that important; if people don't get my random musings, they won't miss them. Happy Thursday! -- I never could get the hang of Thursdays. From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 22:29:05 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BEFB16A496 for ; Thu, 16 Mar 2006 22:29:05 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id E85B543D45 for ; Thu, 16 Mar 2006 22:29:04 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id k2GMT1o7022245 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 16 Mar 2006 14:29:01 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <4419E78D.8080005@errno.com> Date: Thu, 16 Mar 2006 14:32:45 -0800 From: Sam Leffler User-Agent: Thunderbird 1.5 (X11/20060210) MIME-Version: 1.0 To: Sascha Luck References: <200603151610.42709.sascha@eirconnect.net> In-Reply-To: <200603151610.42709.sascha@eirconnect.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 22:29:05 -0000 Sascha Luck wrote: > Hi, > > I'm having some issues with the newly imported ath_hal module on the > sparc64 architecture: > > (/usr/src/sys/modules/ath_hal) > > root@serval# make > Warning: Object directory not changed from original > /usr/src/sys/modules/ath_hal > make: don't know how to make > /usr/src/sys/modules/ath_hal/../../contrib/dev/ath/public/sparc64-elf.hal.o.uu. > Stop > > This file is actually called sparc64-be-elf.hal.o.uu. After copying to > 'sparc64-elf.hal.o.uu', the module builds cleanly but doesn't load. The > only error message when trying to load it is: > > serval# link_elf: symbol undefined > > Does this mean the uuencoded binary HAL is corrupt? There's something bogus in the hal.o; I will need to figure out what happened and respin it. It's not going to happen immediately; sorry. Sam From owner-freebsd-stable@FreeBSD.ORG Thu Mar 16 23:39:16 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD53316A41F for ; Thu, 16 Mar 2006 23:39:16 +0000 (UTC) (envelope-from sascha@eirconnect.net) Received: from mail.druid-dns.com (ns1.druid-dns.com [70.84.181.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4507443D48 for ; Thu, 16 Mar 2006 23:39:15 +0000 (GMT) (envelope-from sascha@eirconnect.net) Received: (qmail 831 invoked by uid 7807); 16 Mar 2006 23:50:13 +0000 Received: from 84.203.161.126 by druiddns.servermatrix.com (envelope-from , uid 7805) with qmail-scanner-1.25-st-qms (clamdscan: 0.83/828. spamassassin: 3.0.2. perlscan: 1.25-st-qms. Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 5.008771 secs); 16 Mar 2006 23:50:13 -0000 X-Spam-Status: No, hits=-2.3 required=5.0 X-Antivirus-Druid-Mail-From: sascha@eirconnect.net via druiddns.servermatrix.com X-Antivirus-Druid: 1.25-st-qms (Clear:RC:0(84.203.161.126):SA:0(-2.3/5.0):. Processed in 5.008771 secs Process 816) Received: from unknown (HELO saoirse) (sascha@eirconnect.net@84.203.161.126) by mail.druid-dns.com with AES256-SHA encrypted SMTP; 16 Mar 2006 23:50:07 +0000 From: Sascha Luck Organization: Eirconnect To: Sam Leffler Date: Thu, 16 Mar 2006 23:39:04 +0000 User-Agent: KMail/1.9.1 References: <200603151610.42709.sascha@eirconnect.net> <4419E78D.8080005@errno.com> In-Reply-To: <4419E78D.8080005@errno.com> X-NCC-RegID: ie.eirconnect MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603162339.04950.sascha@eirconnect.net> Cc: freebsd-stable@freebsd.org Subject: Re: ath_hal problems on sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 23:39:16 -0000 On Thursday 16 March 2006 22:32, Sam Leffler wrote: > There's something bogus in the hal.o; I will need to figure out what > happened and respin it. It's not going to happen immediately; sorry. So it appears. I just got hit by this on -CURRENT as well, with ath_hal compiled into the kernel. It dumps into kdb when trying to attach the driver. I'll see if I can manage to get a serial console set up, so I can post a trace... > Sam cheers, s. From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 00:22:15 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B8D216A41F for ; Fri, 17 Mar 2006 00:22:15 +0000 (UTC) (envelope-from winterny@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEC9043D45 for ; Fri, 17 Mar 2006 00:22:14 +0000 (GMT) (envelope-from winterny@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so351525wxc for ; Thu, 16 Mar 2006 16:22:14 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=W50IVC8+D55qZ5sE5AepmG4L4w5XAMtdxR05Pmn6sPrig63q+6XuwUzuCMXkXgCXXZkTFCWt8ikrbY8YCFvWPF2RC9Tpoat5Eh9NgOSbifKHg9XLVunV29B0bsJWg78IuS97sHM10jG/0+lsI7CAn7DErf5iWzUZV97VYcqd1fQ= Received: by 10.70.63.19 with SMTP id l19mr653898wxa; Thu, 16 Mar 2006 16:22:14 -0800 (PST) Received: by 10.70.126.5 with HTTP; Thu, 16 Mar 2006 16:22:14 -0800 (PST) Message-ID: Date: Thu, 16 Mar 2006 19:22:14 -0500 From: "Stephan Koenig" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 00:22:15 -0000 Does anyone know of an easy way to get temperature information out of a Dell PowerEdge 1550/1650/1750/1850/2650/2850 running FreeBSD4/5/6? Something that has a very simple CLI that just outputs the temperature without any formatting, or a library/sysctl, would be ideal. Thanks. From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 00:55:57 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4807D16A400 for ; Fri, 17 Mar 2006 00:55:57 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F1F743D55 for ; Fri, 17 Mar 2006 00:55:56 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k2H0tocu088217; Fri, 17 Mar 2006 02:55:50 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Fri, 17 Mar 2006 02:55:50 +0200 (EET) From: Dmitry Pryanishnikov To: Stephan Koenig In-Reply-To: Message-ID: <20060317024617.S64324@atlantis.atlantis.dp.ua> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org Subject: Re: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 00:55:57 -0000 Hello! On Thu, 16 Mar 2006, Stephan Koenig wrote: > Does anyone know of an easy way to get temperature information out of > a Dell PowerEdge 1550/1650/1750/1850/2650/2850 running FreeBSD4/5/6? > > Something that has a very simple CLI that just outputs the temperature > without any formatting, or a library/sysctl, would be ideal. If ACPI doesn't report it for you via sysctl (somewhere under hw.acpi tree - look for "temp" string there), it all depends on monitoring chips which are used for those machines. These chips usually aren't part of the main chipset, are available via SMBus / LPC (ex-ISA), and can even be different on the different batches of the same MB (I've seen it on Intel desktop MB). You can just try sysutils/healthd port, possible with my patch: ftp://external.atlantis.dp.ua/FreeBSD/healthd/0.7.9/patch-IntelDeskBoards.v04 which adds support for the following monitoring chips: Analog Devices ADM1025, SMSC LPC47M1x2, and National Semiconductors LM85. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 06:00:31 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0178816A401 for ; Fri, 17 Mar 2006 06:00:30 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3559443D46 for ; Fri, 17 Mar 2006 06:00:29 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr7.xs4all.nl (8.13.3/8.13.3) with ESMTP id k2H60S9s053240; Fri, 17 Mar 2006 07:00:28 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id C24B0B85C; Fri, 17 Mar 2006 07:00:27 +0100 (CET) Date: Fri, 17 Mar 2006 07:00:27 +0100 From: Roland Smith To: Stephan Koenig Message-ID: <20060317060027.GA82834@slackbox.xs4all.nl> Mail-Followup-To: Stephan Koenig , freebsd-stable@freebsd.org References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-stable@freebsd.org Subject: Re: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 06:00:31 -0000 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 16, 2006 at 07:22:14PM -0500, Stephan Koenig wrote: > Does anyone know of an easy way to get temperature information out of > a Dell PowerEdge 1550/1650/1750/1850/2650/2850 running FreeBSD4/5/6? >=20 > Something that has a very simple CLI that just outputs the temperature > without any formatting, or a library/sysctl, would be ideal. /usr/ports/sysutils/mbmon If you want an additional X frontend, try /usr/ports/sysutils/xmbmon Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGlB7EnfvsMMhpyURAo9uAKCs4ikjHtxJgYilRXwPqT9r1uG5QgCgqyVx ZyXbxCmJmSwPO8CE996xrlE= =Kl9D -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw-- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 06:18:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520A416A400 for ; Fri, 17 Mar 2006 06:18:00 +0000 (UTC) (envelope-from surerlistmail@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id B52C643D45 for ; Fri, 17 Mar 2006 06:17:59 +0000 (GMT) (envelope-from surerlistmail@gmail.com) Received: by nproxy.gmail.com with SMTP id h2so407243nfe for ; Thu, 16 Mar 2006 22:17:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=j7dzwfgTPum5T7HgYZY6oHNTzVi4oSSNmpijMYT2P/AQcB1Pejbkde2u+j7p5K3BGTyjIEXGOpg/MmJp3DNspNQfxinrsS0RLr7vdT21ObLrde94LyICZ9Ijm3PlHKaEgdeaG5TiOblsFZpx69F1gw6+L0uxpQtECUEUC5d6Q80= Received: by 10.49.87.19 with SMTP id p19mr1224939nfl; Thu, 16 Mar 2006 22:17:58 -0800 (PST) Received: by 10.49.69.17 with HTTP; Thu, 16 Mar 2006 22:17:58 -0800 (PST) Message-ID: Date: Fri, 17 Mar 2006 01:17:58 -0500 From: "Surer Dink" To: "Stephan Koenig" , freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: Re: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 06:18:00 -0000 On Fri, 17 Mar 2006, Roland Smith wrote: > On Thu, Mar 16, 2006 at 07:22:14PM -0500, Stephan Koenig wrote: >> Does anyone know of an easy way to get temperature information out of >> a Dell PowerEdge 1550/1650/1750/1850/2650/2850 running FreeBSD4/5/6? >> >> Something that has a very simple CLI that just outputs the temperature >> without any formatting, or a library/sysctl, would be ideal. > > /usr/ports/sysutils/mbmon > > If you want an additional X frontend, try > > /usr/ports/sysutils/xmbmon If you search for messages with subject: CPU/case/disk temperature sensors for Dell PowerEdge 2850 on freebsd-hackers, you will discover a thread which boils down to the following instructions: reboot machine; while it's rebooting, it'll pop up message about bmc - hit the magic key combination; configure an ip address, username, and password; install freeipmi port; use %./ipmitool -Ilan -Hipmiip -Uyyyy -Pxxxxxx sensors The resulting values are the exact same values that the linux-based web tool provides. The only thing I have not found is the RAID status, but I am guessing if you dig deep enough, you will find it in there... From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 07:47:25 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9C1B16A423 for ; Fri, 17 Mar 2006 07:47:25 +0000 (UTC) (envelope-from ohartman@uni-mainz.de) Received: from mailgate2.zdv.Uni-Mainz.DE (mailgate2.zdv.Uni-Mainz.DE [134.93.178.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67A2F43D46 for ; Fri, 17 Mar 2006 07:47:25 +0000 (GMT) (envelope-from ohartman@uni-mainz.de) Received: from [134.93.180.123] (ipamzra.Physik.Uni-Mainz.DE [134.93.180.123]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailgate2.zdv.Uni-Mainz.DE (Postfix) with ESMTP id 8778A30006F8; Fri, 17 Mar 2006 08:47:23 +0100 (CET) Message-ID: <441A698F.6000101@uni-mainz.de> Date: Fri, 17 Mar 2006 08:47:27 +0100 From: "O. Hartmann" User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: Stephan Koenig , freebsd-stable@freebsd.org References: <20060317060027.GA82834@slackbox.xs4all.nl> In-Reply-To: <20060317060027.GA82834@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at uni-mainz.de Cc: Subject: Re: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 07:47:25 -0000 Roland Smith schrieb: > On Thu, Mar 16, 2006 at 07:22:14PM -0500, Stephan Koenig wrote: >> Does anyone know of an easy way to get temperature information out of >> a Dell PowerEdge 1550/1650/1750/1850/2650/2850 running FreeBSD4/5/6? >> >> Something that has a very simple CLI that just outputs the temperature >> without any formatting, or a library/sysctl, would be ideal. > > /usr/ports/sysutils/mbmon > > If you want an additional X frontend, try > > /usr/ports/sysutils/xmbmon > > Roland This port does not work for me on any DELL Optiplex GX270/280 and 820 around here. Especially on GX270/280 I tried every knob of the port I found without a positive result. Oliver From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 07:56:32 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A88B016A400 for ; Fri, 17 Mar 2006 07:56:32 +0000 (UTC) (envelope-from mathijs@brands.name) Received: from additive.crooked.net (additive.crooked.net [80.69.92.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1170043D45 for ; Fri, 17 Mar 2006 07:56:31 +0000 (GMT) (envelope-from mathijs@brands.name) Received: from crooked.net (nexus.crooked.net [84.35.49.2]) by additive.crooked.net (Postfix) with ESMTP id 61F0C55A2E for ; Fri, 17 Mar 2006 08:56:30 +0100 (CET) Received: from www.crooked.net (localhost.crooked.net [127.0.0.1]) by crooked.net (Postfix) with ESMTP id 4EDB750029E for ; Fri, 17 Mar 2006 08:56:30 +0100 (CET) Received: from 194.105.120.70 (SquirrelMail authenticated user mathijs) by www.crooked.net with HTTP; Fri, 17 Mar 2006 08:56:30 +0100 (CET) Message-ID: <9403.194.105.120.70.1142582190.squirrel@www.crooked.net> In-Reply-To: References: Date: Fri, 17 Mar 2006 08:56:30 +0100 (CET) From: "Mathijs Brands" To: freebsd-stable@freebsd.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: Temperature monitoring in FreeBSD 4/5/6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 07:56:32 -0000 On Fri, 17 March, 2006 7:17, Surer Dink wrote: > If you search for messages with subject: CPU/case/disk temperature > sensors for Dell PowerEdge 2850 on freebsd-hackers, you will discover > a thread which boils down to the following instructions: > reboot machine; while it's rebooting, it'll pop up message about bmc - > hit the magic key combination; configure an ip address, username, and > password; install freeipmi port; use > %./ipmitool -Ilan -Hipmiip -Uyyyy -Pxxxxxx sensors As far as I know, Dell included a BMC starting with the 1750 and 2650. On older models, you may be able to read data from the DRAC card (if you have one). The newer ones support IPMI 2.0. Cheers, Mathijs From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 10:52:10 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.org Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34A4316A400; Fri, 17 Mar 2006 10:52:10 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F17C243D46; Fri, 17 Mar 2006 10:52:09 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from misaki64 (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with SMTP id k2HAq7GF056824; Fri, 17 Mar 2006 10:52:08 GMT (envelope-from ariff@FreeBSD.org) Date: Fri, 17 Mar 2006 18:51:42 +0800 From: Ariff Abdullah To: freebsd-amd64@FreeBSD.org, freebsd-stable@FreeBSD.org Message-Id: <20060317185142.56e5042d.ariff@FreeBSD.org> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__17_Mar_2006_18_51_42_+0800_Dulf/MgmnPtRCns7" Cc: Subject: acquiring duplicate lock of same type: "vnode interlock" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 10:52:10 -0000 --Signature=_Fri__17_Mar_2006_18_51_42_+0800_Dulf/MgmnPtRCns7 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I think I've read somewhere about panic during early root mount, fsck etc.. Perhaps this might be related: Full dmesg: http://people.freebsd.org/~ariff/misc/dmesg.boot.amd64 [....] acquiring duplicate lock of same type: "vnode interlock" 1st vnode interlock @ kern/vfs_vnops.c:791 2nd vnode interlock @ kern/vfs_subr.c:2018 KDB: stack backtrace: witness_checkorder() at witness_checkorder+0x4da _mtx_lock_flags() at _mtx_lock_flags+0x4a vrefcnt() at vrefcnt+0x31 null_checkvp() at null_checkvp+0x65 null_lock() at null_lock+0x5b VOP_LOCK_APV() at VOP_LOCK_APV+0x81 vn_lock() at vn_lock+0x6b nullfs_root() at nullfs_root+0x4c vfs_donmount() at vfs_donmount+0x1096 nmount() at nmount+0x82 syscall() at syscall+0x21b Xfast_syscall() at Xfast_syscall+0xa8 --- syscall (378, FreeBSD ELF64, nmount), rip =3D 0x800679e8c, rsp =3D 0x7fffffffe558, rbp =3D 0x7fffffffee40 --- -- Ariff Abdullah FreeBSD --Signature=_Fri__17_Mar_2006_18_51_42_+0800_Dulf/MgmnPtRCns7 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEGpTPlr+deMUwTNoRAiFkAJ4hjYBB1VGcmIAfPWEEh7OKDh7oKwCfXfBz xPwFzpBhFU9lSfd+We/WhxM= =AaHR -----END PGP SIGNATURE----- --Signature=_Fri__17_Mar_2006_18_51_42_+0800_Dulf/MgmnPtRCns7-- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 17 12:14:07 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54A7916A401 for ; Fri, 17 Mar 2006 12:14:07 +0000 (UTC) (envelope-from pvh@wfeet.za.net) Received: from swing.sanbi.ac.za (swing.sanbi.ac.za [196.38.142.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C55E43D67 for ; Fri, 17 Mar 2006 12:14:05 +0000 (GMT) (envelope-from pvh@wfeet.za.net) Received: from psytrance.egenetics.com ([196.38.142.87]) by swing.sanbi.ac.za with esmtp (Exim 4.43 (FreeBSD)) id 1FKDpv-000AAD-Qp for freebsd-stable@freebsd.org; Fri, 17 Mar 2006 14:13:43 +0200 Message-ID: <441AA807.5090100@wfeet.za.net> Date: Fri, 17 Mar 2006 14:13:59 +0200 From: Peter van Heusden User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: SETFEATURES SET TRANSFER MODE semaphore timeout on FreeBSD 6.0 RELEASE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 12:14:07 -0000 Hi I have a newly installed FreeBSD 6.0 release machine on which I am getting the following error on the console: "ad4: req=0xc23bc258 SETFEATURES SET TRANSFER MODE semaphore timeout !! DANGER Will Robinson !!" This is generally associated with heightened disk activity, but it happens inevitably after a while (minutes or hours) if the machine is running. The atacontrol list shows: ATA channel 0: Master: no device present Slave: no device present ATA channel 1: Master: acd0 ATA/ATAPI revision 0 Slave: no device present ATA channel 2: Master: ad4 ATA/ATAPI revision 5 Slave: no device present ATA channel 3: Master: no device present Slave: no device present and the ATA controller in use is a Promise PDC20262. Smartctl shows that all values on the disk are ok - i.e. it doesn't look like the disk is failing. Does anyone know what I can do to fix error? Thanks, Peter Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.0-RELEASE #0: Wed Mar 15 12:48:25 SAST 2006 root@ensemblit.egenetics.com:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium II/Pentium II Xeon/Celeron (532.81-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Features=0x183f9ff real memory = 335478784 (319 MB) avail memory = 318865408 (304 MB) npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: Power Button (fixed) pci_link0: irq 11 on acpi0 pci_link1: on acpi0 pci_link2: irq 5 on acpi0 pci_link3: irq 10 on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff,0x4000-0x4041,0x5000-0x500f on acpi0 pci0: on pcib0 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 7.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0xa000-0xa01f irq 10 at device 7.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 7.3 (no driver attached) xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xa400-0xa47f mem 0xe9020000-0xe902007f irq 5 at device 10.0 on pci0 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0: Ethernet address: 00:50:da:e2:35:3b pci0: at device 12.0 (no driver attached) pci0: