From owner-freebsd-stable@FreeBSD.ORG Sat Oct 8 22:44:55 2005 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 113AF16A41F for ; Sat, 8 Oct 2005 22:44:55 +0000 (GMT) (envelope-from creep@daedalus.desk.pl) Received: from daedalus.desk.pl (daedalus.desk.pl [62.233.238.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5433243D49 for ; Sat, 8 Oct 2005 22:44:54 +0000 (GMT) (envelope-from creep@daedalus.desk.pl) Received: from localhost (localhost [127.0.0.1]) by daedalus.desk.pl (Postfix) with ESMTP id 9453D36653A for ; Sun, 9 Oct 2005 00:41:24 +0200 (CEST) Received: from daedalus.desk.pl ([127.0.0.1]) by localhost (daedalus [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27049-05 for ; Sun, 9 Oct 2005 00:41:23 +0200 (CEST) Received: by daedalus.desk.pl (Postfix, from userid 1023) id 63D7636651C; Sun, 9 Oct 2005 00:41:23 +0200 (CEST) Date: Sun, 9 Oct 2005 00:41:23 +0200 From: Marcin Koziej To: "To:freebsd-stable"@freebsd.org Message-ID: <20051008224123.GA27493@daedalus.desk.pl> References: <20051004120018.GA21556@daedalus.desk.pl> <20051004141119.GA677@cl084016105115.unet.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20051004141119.GA677@cl084016105115.unet.cz> User-Agent: Mutt/1.4.1i X-Antivirus: Skaner Antywirusowy DESK.pl X-Mailman-Approved-At: Sun, 09 Oct 2005 12:12:24 +0000 Cc: Subject: Re: STABLE kernel fails to build on sys/fs/devfs/devfs_vnops.c 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: Sat, 08 Oct 2005 22:44:55 -0000 > > I tried to build today's STABLE on 6.0-BETA2 FreeBSD 6.0-BETA2 #1: Wed Aug 3 > > Kernel config differs from GENERIC just by atapicam device. > > Obviously, your userland and kernel sources are not synchronized. It is > probably the cause of failed build. > > Update complete source tree and try again. It doesn't seem to be that simple to me. I have rm -rf'ed all the sources and cvsupped with tag=RELENG_6 and I cannot build a GENERIC kernel. The problem seems to be forward declarations of: static struct vop_vector devfs_vnodeops; static struct vop_vector devfs_specops; static struct fileops devfs_ops_f; which are initialized later in the code. The compiler flag -Wredundant-decls stops on this. These declarations appeared in rev 1.114.2.4 of /src/sys/fs/devfs/devfs_vnops.c I guess it must be something with my system because that change was on 18th of September. I use a normal compiler ( 3.4.4 [FreeBSD] 20050518) on 6.0-BETA2. -- m. Brain power of a glass of water. From owner-freebsd-stable@FreeBSD.ORG Sun Oct 9 17:08:52 2005 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 31AF616A41F for ; Sun, 9 Oct 2005 17:08:52 +0000 (GMT) (envelope-from Jan.Blaha@unet.cz) Received: from rlcho1.unet.cz (rlcho1.unet.cz [213.235.176.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5024543D46 for ; Sun, 9 Oct 2005 17:08:50 +0000 (GMT) (envelope-from Jan.Blaha@unet.cz) Received: from cl084016105115.unet.cz (cl084016105115.unet.cz [84.16.105.115] (may be forged)) by rlcho1.unet.cz (8.11.6/8.11.6) with ESMTP id j99H8hU16399; Sun, 9 Oct 2005 19:08:44 +0200 Received: by cl084016105115.unet.cz (Postfix, from userid 1001) id 0090666D6; Sun, 9 Oct 2005 19:08:46 +0200 (CEST) Date: Sun, 9 Oct 2005 19:08:46 +0200 From: Jan Blaha To: Marcin Koziej Message-ID: <20051009170846.GA3733@cl084016105115.unet.cz> Mail-Followup-To: Marcin Koziej , freebsd-stable@freebsd.org References: <20051004120018.GA21556@daedalus.desk.pl> <20051004141119.GA677@cl084016105115.unet.cz> <20051008224123.GA27493@daedalus.desk.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20051008224123.GA27493@daedalus.desk.pl> User-Agent: Mutt/1.5.11 Cc: freebsd-stable@freebsd.org Subject: Re: STABLE kernel fails to build on sys/fs/devfs/devfs_vnops.c 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, 09 Oct 2005 17:08:52 -0000 On 9.10.2005 00:41, Marcin Koziej wrote: > > > I tried to build today's STABLE on 6.0-BETA2 FreeBSD 6.0-BETA2 #1: > > > Wed Aug 3 Kernel config differs from GENERIC just by atapicam > > > device. > > > > Obviously, your userland and kernel sources are not synchronized. It > > is probably the cause of failed build. > > > > Update complete source tree and try again. > > It doesn't seem to be that simple to me. > I have rm -rf'ed all the sources and cvsupped with tag=RELENG_6 and > I cannot build a GENERIC kernel. The problem seems to be forward OK, sorry I did not make myself clear. Do you follow the canonical way of upgrading the system? It is important first make buildworld and after this make buildkernel. Can you reproduce the error with last RELENG_6 sources, cleaned contents of /usr/obj and running the command "make buildworld buildkernel" in /usr/src directory? http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Regards, Jan Blaha -- Bombeck's Rule of Medicine: Never go to a doctor whose office plants have died. From owner-freebsd-stable@FreeBSD.ORG Sun Oct 9 18:25:52 2005 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 1AA4116A41F for ; Sun, 9 Oct 2005 18:25:52 +0000 (GMT) (envelope-from Emanuel.strobl@gmx.net) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B6AB43D45 for ; Sun, 9 Oct 2005 18:25:50 +0000 (GMT) (envelope-from Emanuel.strobl@gmx.net) Received: (qmail invoked by alias); 09 Oct 2005 18:25:49 -0000 Received: from flb.schmalzbauer.de (EHLO cale.flintsbach.schmalzbauer.de) [62.245.232.135] by mail.gmx.net (mp010) with SMTP; 09 Oct 2005 20:25:49 +0200 X-Authenticated: #301138 From: Emanuel Strobl To: freebsd-stable@freebsd.org Date: Sun, 9 Oct 2005 20:25:29 +0200 User-Agent: KMail/1.8.1 References: <43472116.5020308@bfoz.net> In-Reply-To: <43472116.5020308@bfoz.net> X-Birthday: Oct. 6th 1972 X-CelPhone: +49 (0) 173 9967781 X-Tel: +49 (0) 89 18947781 X-Country: Germany X-Address: Munich, 80686 X-OS: FreeBSD MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart18507667.QxGyPrcEH3"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200510092025.43728@harrymail> X-Y-GMX-Trusted: 0 Subject: Re: Disable hifn crypto 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: Sun, 09 Oct 2005 18:25:52 -0000 --nextPart18507667.QxGyPrcEH3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Am Samstag, 8. Oktober 2005 03:29 CEST schrieb Brandon Fosdick: > I have a Soekris crypto card (hifn driver) in a box that I don't have > immediate access to. Is there some way to disable the card w/o rebooting > the machine? I know I could take the driver out of the kernel or force > it not to load, but that requires a reboot that I'd like to avoid if > possible. hifn is currently compiled into the kernel so I can't do a > kldunload either. That was the first thing I thought of, but apparently > today is not my lucky day. If it's enough that ipsec won't make use of it you can see the sysctl: net.inet.ipsec.crypto_support I think -1 means no hw-crypto-support, 0 auto and 1 hw only, but I can't=20 remember where I read about it to verify that ... :( =2DHarry > > 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" --nextPart18507667.QxGyPrcEH3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBDSWCnBylq0S4AzzwRAtuUAJ4xqnzpVP3+qJvRI4O15bqe/5qsMACfahk4 pKsEz/vjHKkXW+VLeHXlOWY= =0kyK -----END PGP SIGNATURE----- --nextPart18507667.QxGyPrcEH3-- From owner-freebsd-stable@FreeBSD.ORG Sun Oct 9 20:28:50 2005 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 C3C5116A420 for ; Sun, 9 Oct 2005 20:28:50 +0000 (GMT) (envelope-from hlecuanda@gmail.com) Received: from qproxy.gmail.com (qproxy.gmail.com [72.14.204.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FEC443D48 for ; Sun, 9 Oct 2005 20:28:50 +0000 (GMT) (envelope-from hlecuanda@gmail.com) Received: by qproxy.gmail.com with SMTP id o12so168473qba for ; Sun, 09 Oct 2005 13:28:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bnjZxaRHIJIMraq9Oky5oJL438px3OQgmoVIA0Cym/oxaVJ+ZXXxtvTaHzQd2XZSezyBCJk8gMKtnBmxFH9WddWkMBzczpufvoU+8ELmCXrlplNgy3EPKFWM4L7/YzgdxWSvUHzaac2pBJmv38NwxUPyl3XvAD77miXzj6S5mP8= Received: by 10.64.209.15 with SMTP id h15mr1586551qbg; Sun, 09 Oct 2005 13:28:49 -0700 (PDT) Received: by 10.64.208.4 with HTTP; Sun, 9 Oct 2005 13:28:49 -0700 (PDT) Message-ID: Date: Sun, 9 Oct 2005 13:28:49 -0700 From: Hector Lecuanda To: rihad In-Reply-To: <43477BBC.7000904@mail.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <43477BBC.7000904@mail.ru> Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD binary upgrade / gmirror X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hector Lecuanda List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Oct 2005 20:28:50 -0000 I Could be wrong, but i believe that you dont have to disklabel your GEOM devices on sysinstall.. just make sure you load the geom_mirror module on your /boot/loader.conf file (add geom_mirror_load=3D"YES") and mount the mirrored device... Upon loading, the geom_mirror module will read the metadata on the mirrored devices and will create the appropriate device (the one you should mount)... to be sure, after doing your upgrade, without labeling your disks (dont touch them using sysinstall) just run gmirror load that will load the module and read your mirrored partitions.. all your data should be there, and gmirror status will tell you what is the device you need to add to /etc/fstab good luck! On 10/8/05, rihad wrote: > I have a FreeBSD 5.3 box and its two HDD's are setup as one GEOM mirror > unit /dev/mirror/gm0 (c.f. http://people.freebsd.org/~rse/mirror/). Now > Now I want to do a binary upgrade to FreeBSD 5.4, but the new > sysinstall's disklabel editor only recognizes the IDE disks and does not > consider the GEOM mirror (mentioned in /etc/fstab, btw). How do I go > about this? 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" > -- -Hector Lecuanda PGP Public Key / Llave Publica PGP: http://lecuanda.com/pgp_pubkey.asc http://lecuanda.com/pgp_pubkey.txt From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 02:07:31 2005 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 465AF16A41F for ; Mon, 10 Oct 2005 02:07:31 +0000 (GMT) (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 C6E4043D45 for ; Mon, 10 Oct 2005 02:07:30 +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 j9A27UYm056430 for ; Sun, 9 Oct 2005 19:07:30 -0700 (PDT) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id j9A27U4a056429 for stable@freebsd.org; Sun, 9 Oct 2005 19:07:30 -0700 (PDT) (envelope-from david) Date: Sun, 9 Oct 2005 19:07:29 -0700 From: David Wolfskill To: stable@freebsd.org Message-ID: <20051010020729.GA56351@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: 5.x: how do I get a *swap*-backed /tmp via rc.conf? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: 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: Mon, 10 Oct 2005 02:07:31 -0000 I made the somewhat unexpected discovery that in FreeeBSD 5-STABLE, if I use the "tmp*" variables in /etc/rc.conf to have an MFS /tmp created, it is apparentyly not swap-backed -- as I expected from the part of the mdmfs man page that reads: By default, mdmfs creates a swap-based (MD_SWAP) disk with soft-updates enabled and mounts it on mount-point. and a review of the way mdmfs is invoked by /etc/rc; rather, it appears to be malloc-backed. Here's what's in /etc/{defaults/,}rc.conf about it on one such machine: g1-59(5.4-S)[42] grep tmp /etc/{default*/,}rc.conf /etc/defaults/rc.conf:tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never /etc/defaults/rc.conf:tmpsize="20m" # Size of mfs /tmp if created /etc/defaults/rc.conf:tmpmfs_flags="-S" # Extra mdmfs options for the mfs /tmp /etc/defaults/rc.conf:isdn_traceflags="-f /var/tmp/isdntrace0" # Flags for isdntrace /etc/defaults/rc.conf:clear_tmp_enable="NO" # Clear /tmp at startup. /etc/rc.conf:tmpmfs="YES" /etc/rc.conf:tmpsize="512m" /etc/rc.conf:tmpmfs_flags="-i4096" g1-59(5.4-S)[43] And: g1-59(5.4-S)[43] sudo mdconfig -l -u md0 md0 malloc 524288 KBytes g1-59(5.4-S)[44] Oh, for some sense of what we're working with: g1-59(5.4-S)[44] uname -a FreeBSD g1-59.catwhisker.org. 5.4-STABLE FreeBSD 5.4-STABLE #6: Sun Oct 9 06:24:17 PDT 2005 root@g1-59.catwhisker.org.:/usr/obj/usr/src/sys/LAPTOP i386 g1-59(5.4-S)[45] So, back to my original question: how do I get a *swap*-backed /tmp? [The way I was alerted to the possibliity that my /tmp might not be swap-backed is that I was using a machine running 5-STABLE as a CVS server, in order to update /usr/ports on another machine. That's why I have the -i4096 argument in there, BTW: to double the number of inodes for when the CVS server starts consuming them with wild abandon as it builds an isomorphic hierarchy to /usr/ports in /tmp. I think it only took me 3 panics before I poked around in the mailing list archives and noted scottl's comment about using a swap-backed /tmp instead, which got me wondering what backing store my /tmp was using. I did look at /etc/rc.d/tmp, as well a /etc/rc.subr, but I'm still failing to see why I'm getting a malloc-backed /tmp. FWIW, although the /tmp in question is an MFS in 4.x, I do this (use the box as a CVS server for /usr/ports) without problem on 4.x.] (I don't need separate copies of any replies; I read -stable, so I set Reply-To as an appropriate hint.) Thanks. Peace, david -- David H. Wolfskill david@catwhisker.org Prediction is difficult, especially if it involves the future. -- Niels Bohr See http://www.catwhisker.org/~david/publickey.gpg for public key. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 04:08:23 2005 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 71A8616A41F for ; Mon, 10 Oct 2005 04:08:23 +0000 (GMT) (envelope-from jbaggs@san.rr.com) Received: from ms-smtp-03-eri0.socal.rr.com (ms-smtp-03-qfe0.socal.rr.com [66.75.162.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2892143D45 for ; Mon, 10 Oct 2005 04:08:23 +0000 (GMT) (envelope-from jbaggs@san.rr.com) Received: from [10.0.10.5] (cpe-24-165-11-242.san.res.rr.com [24.165.11.242]) by ms-smtp-03-eri0.socal.rr.com (8.12.10/8.12.7) with ESMTP id j9A48KgQ001934 for ; Sun, 9 Oct 2005 21:08:21 -0700 (PDT) Message-ID: <4349E934.9070506@san.rr.com> Date: Sun, 09 Oct 2005 21:08:20 -0700 From: Jeremy Baggs User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@freebsd.org X-Enigmail-Version: 0.92.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Subject: random ip id 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, 10 Oct 2005 04:08:23 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have a firewall with a small CF installation of FreeBSD 5.2.1 (post 20040814). It is missing the sysctl variable: net.inet.ip.random_id. I am wondering if one of the libraries or kernel objects I ripped out to minimize the install could be the culprit for this. Any clues would b e appreciated... Thanks, Jeremy -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFDSek0ErogemV/I6ERAl5nAKDg6H8t5AcMwuIRUK6wRZ7t+Tj7KACbBRhP bZLjix0mQiPt2jGBjgrBU0Q= =Sry9 -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 04:31:26 2005 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 7866D16A41F for ; Mon, 10 Oct 2005 04:31:26 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1534143D45 for ; Mon, 10 Oct 2005 04:31:25 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.3) id j9A4VOwD058727; Sun, 9 Oct 2005 23:31:24 -0500 (CDT) (envelope-from dan) Date: Sun, 9 Oct 2005 23:31:24 -0500 From: Dan Nelson To: Jeremy Baggs Message-ID: <20051010043124.GF44754@dan.emsphone.com> References: <4349E934.9070506@san.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4349E934.9070506@san.rr.com> X-OS: FreeBSD 5.4-STABLE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: stable@freebsd.org Subject: Re: random ip id 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, 10 Oct 2005 04:31:26 -0000 In the last episode (Oct 09), Jeremy Baggs said: > I have a firewall with a small CF installation of FreeBSD 5.2.1 (post > 20040814). It is missing the sysctl variable: net.inet.ip.random_id. > I am wondering if one of the libraries or kernel objects I ripped out > to minimize the install could be the culprit for this. Any clues > would b e appreciated... That sysctl was added in FreeBSD 5.3. You may be able to get the same functionality in 5.2.1 with the RANDOM_IP_ID kernel option, but you should probably upgrade to 5.4. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 04:58:26 2005 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 8190016A41F for ; Mon, 10 Oct 2005 04:58:26 +0000 (GMT) (envelope-from darren780@yahoo.com) Received: from web34710.mail.mud.yahoo.com (web34710.mail.mud.yahoo.com [209.191.68.159]) by mx1.FreeBSD.org (Postfix) with SMTP id 9F6BC43D53 for ; Mon, 10 Oct 2005 04:58:25 +0000 (GMT) (envelope-from darren780@yahoo.com) Received: (qmail 48067 invoked by uid 60001); 10 Oct 2005 04:58:25 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=19JavdBoRGcGbsQ3dTCOAg8GeuMKeeNmakWgAShHMkzlMs9E+bg1RYmp8R687K5K2OVqADY+szIiceWDeBpgQne7/tOl6P0nPQmp+3dwhKxqU2tseeAEp0PKCK0rQ3khGcPAGm7TNpoMpnUD8N9vV3K3jSUrvT/2rzjN07nHW6I= ; Message-ID: <20051010045825.48065.qmail@web34710.mail.mud.yahoo.com> Received: from [199.126.144.128] by web34710.mail.mud.yahoo.com via HTTP; Sun, 09 Oct 2005 21:58:25 PDT Date: Sun, 9 Oct 2005 21:58:25 -0700 (PDT) From: "Mr. Darren" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: harddrive won't mount/boot, superblock can't be fixed. 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, 10 Oct 2005 04:58:26 -0000 I had a bad ide cable which I have now replaced. on bootup the filesystem produced a lot of errors and I lost my first superblock. I since fsck'd and repaired the superblock at sector 32. At no time does fsck create, fix, or transfer the sector 32 superblock to the front of the drive. mount won't accept the drive in the condition it's in(says no superblock, or bad superblock.. different programs, different errors). If anyone knows how I could get my data off and format my /var drive, or possibly repair my damaged superblock at the front of the drive with anyone of the 50-some backups that exist throughout the drive. thanks Darren __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 08:39:40 2005 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 5AAEB16A41F for ; Mon, 10 Oct 2005 08:39:40 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from fri.itea.ntnu.no (fri.itea.ntnu.no [129.241.7.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id E238843D46 for ; Mon, 10 Oct 2005 08:39:39 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from localhost (localhost [127.0.0.1]) by fri.itea.ntnu.no (Postfix) with ESMTP id 94F91AAFD; Mon, 10 Oct 2005 10:39:37 +0200 (CEST) Received: from [129.241.134.240] (m240g.studby.ntnu.no [129.241.134.240]) by fri.itea.ntnu.no (Postfix) with ESMTP; Mon, 10 Oct 2005 10:39:37 +0200 (CEST) Message-ID: <434A28D6.7080703@stud.ntnu.no> Date: Mon, 10 Oct 2005 10:39:50 +0200 From: =?ISO-8859-1?Q?Owe_J=F8rgensen?= User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Mr. Darren" References: <20051010045825.48065.qmail@web34710.mail.mud.yahoo.com> In-Reply-To: <20051010045825.48065.qmail@web34710.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Cc: freebsd-stable@freebsd.org Subject: Re: harddrive won't mount/boot, superblock can't be fixed. 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, 10 Oct 2005 08:39:40 -0000 Mr. Darren wrote: > I had a bad ide cable which I have now replaced. on > bootup the filesystem produced a lot of errors and I > lost my first superblock. I since fsck'd and repaired > the superblock at sector 32. At no time does fsck > create, fix, or transfer the sector 32 superblock to > the front of the drive. mount won't accept the drive > in the condition it's in(says no superblock, or bad > superblock.. different programs, different errors). > If anyone knows how I could get my data off and format > my /var drive, or possibly repair my damaged > superblock at the front of the drive with anyone of > the 50-some backups that exist throughout the drive. > > thanks > > Darren > > > > > __________________________________ > Yahoo! Mail - PC Magazine Editors' Choice 2005 > http://mail.yahoo.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" try newfs -n to list the proper superblock backups for the partition. to fix, use fsck_ufs -b From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 09:03:59 2005 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 BE93A16A41F for ; Mon, 10 Oct 2005 09:03:59 +0000 (GMT) (envelope-from mkb@incubus.de) Received: from luzifer.incubus.de (incubus.de [80.237.207.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id B835543D66 for ; Mon, 10 Oct 2005 09:03:57 +0000 (GMT) (envelope-from mkb@incubus.de) Received: from drjekyll.mkbuelow.net (p54AAC076.dip0.t-ipconnect.de [84.170.192.118]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by luzifer.incubus.de (Postfix) with ESMTP id EF90B37E64; Mon, 10 Oct 2005 11:03:55 +0200 (CEST) Received: from drjekyll.mkbuelow.net (mkb@localhost [127.0.0.1]) by drjekyll.mkbuelow.net (8.13.4/8.13.3) with ESMTP id j9A940dv001634; Mon, 10 Oct 2005 11:04:00 +0200 (CEST) (envelope-from mkb@drjekyll.mkbuelow.net) Received: (from mkb@localhost) by drjekyll.mkbuelow.net (8.13.4/8.13.3/Submit) id j9A93xQM001633; Mon, 10 Oct 2005 11:03:59 +0200 (CEST) (envelope-from mkb) Date: Mon, 10 Oct 2005 11:03:59 +0200 From: Matthias Buelow To: Owe =?iso-8859-1?Q?J=F8rgensen?= Message-ID: <20051010090359.GA721@drjekyll.mkbuelow.net> References: <20051010045825.48065.qmail@web34710.mail.mud.yahoo.com> <434A28D6.7080703@stud.ntnu.no> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <434A28D6.7080703@stud.ntnu.no> User-Agent: Mutt/1.4.2.1i Cc: "Mr. Darren" , freebsd-stable@freebsd.org Subject: Re: harddrive won't mount/boot, superblock can't be fixed. 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, 10 Oct 2005 09:03:59 -0000 Owe Jørgensen wrote: >try >newfs -n >to list the proper superblock backups for the partition. *ahem*... don't you mean -N? mkb. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 10:28:25 2005 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 C836616A420 for ; Mon, 10 Oct 2005 10:28:25 +0000 (GMT) (envelope-from p.ackery@nhm.ac.uk) Received: from jess.nhm.ac.uk (mailserver.nhm.ac.uk [157.140.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E60743D48 for ; Mon, 10 Oct 2005 10:28:24 +0000 (GMT) (envelope-from p.ackery@nhm.ac.uk) Received: from janet.nhm.ac.uk ([157.140.15.113] helo=frank.nhm.ac.uk) by jess.nhm.ac.uk with esmtp (Exim 4.22) id 1EOutK-0004f7-FC for freebsd-stable@freebsd.org; Mon, 10 Oct 2005 11:28:22 +0100 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Mon, 10 Oct 2005 11:28:22 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Delivery reports about your e-mail Thread-Index: AcXNg4dI0XtMSqpaTHqJs9fiEah1ugAAbK/Q From: "Phil Ackery" To: X-NHMScan-Signature: b57f80a9d5511837c6372241bc462b6e Subject: RE: Delivery reports about your e-mail 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, 10 Oct 2005 10:28:25 -0000 Unable to open attached files, and anyway I plead total ignorance of = these things. Can you take over my computer and sort it???????? -----Original Message----- From: freebsd-stable@freebsd.org [mailto:freebsd-stable@freebsd.org] Sent: 10 October 2005 11:16 To: pra@nhm.ac.uk Subject: Delivery reports about your e-mail Dear user of nhm.ac.uk, We have detected that your email account has been used to send a large = amount of spam messages during this week. Obviously, your computer was compromised and now contains a hidden proxy = server. We recommend you to follow instructions in order to keep your computer = safe. Best regards, nhm.ac.uk technical support team. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 10:38:17 2005 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 9EBE016A41F for ; Mon, 10 Oct 2005 10:38:17 +0000 (GMT) (envelope-from davidr@skyforge.net) Received: from kahlan.skyforge.net (kahlan.skyforge.net [66.98.186.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 2D02743D49 for ; Mon, 10 Oct 2005 10:38:16 +0000 (GMT) (envelope-from davidr@skyforge.net) Received: (qmail 54042 invoked by uid 1009); 10 Oct 2005 10:38:16 -0000 Received: from 217.204.199.163 by kahlan.skyforge.net (envelope-from , uid 1007) with qmail-scanner-1.25-st-qms (clamdscan: 0.83/1082. spamassassin: 3.0.2. perlscan: 1.25-st-qms. Clear:RC:0(217.204.199.163):SA:0(-2.0/3.0):. Processed in 2.995695 secs); 10 Oct 2005 10:38:16 -0000 X-Spam-Status: No, hits=-2.0 required=3.0 X-Antivirus-SKYFORGE-Mail-From: davidr@skyforge.net via kahlan.skyforge.net X-Antivirus-SKYFORGE: 1.25-st-qms (Clear:RC:0(217.204.199.163):SA:0(-2.0/3.0):. Processed in 2.995695 secs Process 54034) Received: from zedd.skyforge.co.uk (HELO ?192.168.70.11?) (davidr@skyforge.net@217.204.199.163) by kahlan.skyforge.net with SMTP; 10 Oct 2005 10:38:12 -0000 In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v734) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: David Richards Date: Mon, 10 Oct 2005 11:38:00 +0100 To: Phil Ackery X-Mailer: Apple Mail (2.734) Cc: freebsd-stable@freebsd.org Subject: Re: Delivery reports about your e-mail 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, 10 Oct 2005 10:38:17 -0000 On 10 Oct 2005, at 11:28, Phil Ackery wrote: > Unable to open attached files, and anyway I plead total ignorance > of these things. Can you take over my computer and sort it???????? > > -----Original Message----- > From: freebsd-stable@freebsd.org [mailto:freebsd-stable@freebsd.org] > Sent: 10 October 2005 11:16 > To: pra@nhm.ac.uk > Subject: Delivery reports about your e-mail > > > Dear user of nhm.ac.uk, > > We have detected that your email account has been used to send a > large amount of spam messages during this week. > Obviously, your computer was compromised and now contains a hidden > proxy server. > > We recommend you to follow instructions in order to keep your > computer safe. > > Best regards, > nhm.ac.uk technical support team. > > _______________________________________________ > 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" > > why would freebsd.org be monitoring your mail usage ? I would check ur pc incase you do have a hidden proxy and if you are clean. You can ignore this email. It is probably a virus. I know my users get these emails all the time. David -- David Richards http://www.skyforge.net From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 11:20:10 2005 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 2752F16A41F for ; Mon, 10 Oct 2005 11:20:10 +0000 (GMT) (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 7693543D46 for ; Mon, 10 Oct 2005 11:20:09 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (wnetwv@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.1/8.13.1) with ESMTP id j9ABK6gK047305 for ; Mon, 10 Oct 2005 13:20:06 +0200 (CEST) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.1/8.13.1/Submit) id j9ABK6F6047304; Mon, 10 Oct 2005 13:20:06 +0200 (CEST) (envelope-from olli) Date: Mon, 10 Oct 2005 13:20:06 +0200 (CEST) Message-Id: <200510101120.j9ABK6F6047304@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG In-Reply-To: <20051010045825.48065.qmail@web34710.mail.mud.yahoo.com> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.5.4-20000523 ("1959") (UNIX) (FreeBSD/4.11-RELEASE (i386)) Cc: Subject: Re: harddrive won't mount/boot, superblock can't be fixed. 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: Mon, 10 Oct 2005 11:20:10 -0000 Mr. Darren wrote: > I had a bad ide cable which I have now replaced. on > bootup the filesystem produced a lot of errors and I > lost my first superblock. I since fsck'd and repaired > the superblock at sector 32. At no time does fsck > create, fix, or transfer the sector 32 superblock to > the front of the drive. mount won't accept the drive > in the condition it's in(says no superblock, or bad > superblock.. different programs, different errors). > If anyone knows how I could get my data off and format > my /var drive, or possibly repair my damaged > superblock at the front of the drive with anyone of > the 50-some backups that exist throughout the drive. How about copying the fixed superblock with dd(1)? Something like this: dd if=/dev/ad0s1d of=/tmp/sb skip=32 count=16 dd if=/tmp/sb of=/dev/ad0s1d seek=16 count=16 fsck /dev/ad0s1d Those commands are just off the top of my head -- I haven't tested it, no guarantees, you're doing it at your own risk and you should have a backup. 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. "Being really good at C++ is like being really good at using rocks to sharpen sticks." -- Thant Tessman From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 11:44:02 2005 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 336F016A420 for ; Mon, 10 Oct 2005 11:44:02 +0000 (GMT) (envelope-from martin.gumucio@gmail.com) Received: from qproxy.gmail.com (qproxy.gmail.com [72.14.204.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 650AE43D46 for ; Mon, 10 Oct 2005 11:44:01 +0000 (GMT) (envelope-from martin.gumucio@gmail.com) Received: by qproxy.gmail.com with SMTP id a39so1088847qbd for ; Mon, 10 Oct 2005 04:44:00 -0700 (PDT) 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=UA9AEonSKDEepVXox1oWKqYDrZYob7hswA7ErztVFdNexQqi+bIYp7pWnwJOHttBraeH1mkelXNM8DmDCyW/T/XcXbqRyPDcOGcc6trV92rgpHaxdGJ8jueV5YgeQOTU3lixQ6KDRYSF52vyUviqDGDni9X4FlwAhrzxjVSekjU= Received: by 10.65.97.8 with SMTP id z8mr2520340qbl; Mon, 10 Oct 2005 04:44:00 -0700 (PDT) Received: by 10.65.113.19 with HTTP; Mon, 10 Oct 2005 04:44:00 -0700 (PDT) Message-ID: <6ed373710510100444q1a8b1eb8ueaf9e1acd55fc8dd@mail.gmail.com> Date: Mon, 10 Oct 2005 13:44:00 +0200 From: Martin Gumucio To: freebsd-www@freebsd.org, freebsd-stable@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <43455D3E.5040007@mbnet.fi> <20051006204336.GA36557@neptune.atopia.net> <20051006213326.GA33286@xor.obsecurity.org> <20051006213740.GA37835@neptune.atopia.net> <20051006214904.GB33546@xor.obsecurity.org> <20051008110225.52611@caamora.com.au> Cc: Subject: Re: new FreeBSD-webpage 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, 10 Oct 2005 11:44:02 -0000 My congrats to the webdesigners and the Freebsd community, for the great looking new webpage! I find it infomative, easily navigated and it even looks good in lynx. What more can you ask for? Good job! // Martin Gumucio From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 11:45:33 2005 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 7D38A16A41F; Mon, 10 Oct 2005 11:45:33 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AD5C43D5D; Mon, 10 Oct 2005 11:45:25 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx34.rz.uni-wuerzburg.de (wrzx34.rz.uni-wuerzburg.de [132.187.3.34]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id D137C13F0E3; Mon, 10 Oct 2005 13:45:24 +0200 (CEST) Received: from virusscan (localhost [127.0.0.1]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id B21B1B4AF6; Mon, 10 Oct 2005 13:45:24 +0200 (CEST) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id 8D9E6B4AC3; Mon, 10 Oct 2005 13:45:24 +0200 (CEST) Received: from frodo.galgenberg.net (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 74A0D13F0E5; Mon, 10 Oct 2005 13:45:24 +0200 (CEST) Received: from coyote.q.local (gb-21-237.galgenberg.net [172.16.21.237]) by frodo.galgenberg.net (8.13.1/8.13.1) with ESMTP id j9ABjNmY047909; Mon, 10 Oct 2005 13:45:23 +0200 (CEST) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (vpn [10.0.0.2]) by coyote.q.local (8.13.3/8.13.1) with ESMTP id j9ABjMnI030450; Mon, 10 Oct 2005 13:45:22 +0200 (CEST) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.4/8.13.4) with ESMTP id j9ABjIr6002872; Mon, 10 Oct 2005 13:45:18 +0200 (CEST) (envelope-from q@galgenberg.net) Received: (from q@localhost) by roadrunner.q.local (8.13.4/8.13.4/Submit) id j9ABjHlr002871; Mon, 10 Oct 2005 13:45:17 +0200 (CEST) (envelope-from q@galgenberg.net) Date: Mon, 10 Oct 2005 13:45:17 +0200 From: Ulrich Spoerlein To: freebsd-stable@freebsd.org Message-ID: <20051010114517.GC995@galgenberg.net> Mail-Followup-To: freebsd-stable@freebsd.org, www@freebsd.org References: <20051006111750.GT72352@cirb503493.alcatel.com.au> <200510061447.j96Elkjm015555@fire.jhs.private> <20051006150053.GA67408@kierun.org> <20051006151854.GH39538@pc5-179.lri.fr> <43456E97.2020604@chillt.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/Uq4LBwYP4y1W6pO" Content-Disposition: inline In-Reply-To: <43456E97.2020604@chillt.de> X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) Cc: www@freebsd.org Subject: Re: new FreeBSD-webpage 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, 10 Oct 2005 11:45:33 -0000 --/Uq4LBwYP4y1W6pO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, 06.10.2005 at 20:36:07 +0200, Bartosz Fabianowski wrote: > >monitor are wider than taller, why restrain horizontal space ? >=20 > A fixed width design is very fashionable these days and you see it creepi= ng up everywhere.=20 > It's what's considered "professional" these days, so I can't really blame= anybody trying to=20 > appear professional for choosing it. But I still think that this is a bad= trend. On my wide=20 > screen laptop, 50% of the screen are wasted blank space. Fixed width is stupid. Period. I'd appreciate it if this could be changed to a relative width of the central column OR a fixed width of the borders. Also, the width for the fonts either assumes pixel width or uses fixed point width. Since I'm pretty sure no one will understand what I'm talking about, have a look at this [1]. Note how the Support and languages wrap around. This is because my DPI of: screen #0: print screen: no dimensions: 1680x1050 pixels (331x210 millimeters) resolution: 129x127 dots per inch [1] http://www.galgenberg.net/~q/freebsd.org.png I'll take a look at the CSS stuff, but I'm no expert ... Ulrich Spoerlein --=20 PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? --/Uq4LBwYP4y1W6pO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDSlRNmArGtfDbn0QRAnKdAJ99ADx6wiLtrgocyqjReh/dVCcl0gCcD4Mf rfhQk1BuqOVJZWuwbB0dsCw= =Ew8o -----END PGP SIGNATURE----- --/Uq4LBwYP4y1W6pO-- From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 12:43:34 2005 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 5FCEC16A41F; Mon, 10 Oct 2005 12:43:34 +0000 (GMT) (envelope-from mranner@jawa.at) Received: from files.jawa.at (jawa.at [213.229.17.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC1A143D66; Mon, 10 Oct 2005 12:43:31 +0000 (GMT) (envelope-from mranner@jawa.at) Received: from localhost (localhost [127.0.0.1]) by files.jawa.at (Postfix) with ESMTP id AF8F5FF06; Mon, 10 Oct 2005 14:43:29 +0200 (CEST) Received: from files.jawa.at ([127.0.0.1]) by localhost (files.jawa.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18385-06; Mon, 10 Oct 2005 14:43:23 +0200 (CEST) Received: by files.jawa.at (Postfix, from userid 60) id 30922FF05; Mon, 10 Oct 2005 14:43:23 +0200 (CEST) Received: from walgrind.jawa.at (walgrind.jawa.at [192.168.200.56]) by files.jawa.at (Postfix) with ESMTP id 8AD50FEF6; Mon, 10 Oct 2005 14:42:55 +0200 (CEST) From: Michael Ranner To: freebsd-stable@freebsd.org, www@freebsd.org Date: Mon, 10 Oct 2005 14:42:50 +0200 User-Agent: KMail/1.8.2 References: <43456E97.2020604@chillt.de> <20051010114517.GC995@galgenberg.net> In-Reply-To: <20051010114517.GC995@galgenberg.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510101442.50492.mranner@jawa.at> X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on files.jawa.at X-Spam-Level: X-Spam-Status: No, score=-5.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.2 X-Virus-Scanned: amavisd-new at jawa.at Cc: Subject: Re: new FreeBSD-webpage 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, 10 Oct 2005 12:43:34 -0000 Am Montag, 10. Oktober 2005 13:45 schrieb Ulrich Spoerlein: > Fixed width is stupid. Period. I'd appreciate it if this could be > changed to a relative width of the central column OR a fixed width of > the borders. > > Also, the width for the fonts either assumes pixel width or uses fixed > point width. Since I'm pretty sure no one will understand what I'm > talking about, have a look at this [1]. > > Note how the Support and languages wrap around. This is because my DPI > of: > screen #0: > print screen: no > dimensions: 1680x1050 pixels (331x210 millimeters) > resolution: 129x127 dots per inch > > [1] http://www.galgenberg.net/~q/freebsd.org.png > > I'll take a look at the CSS stuff, but I'm no expert ... > > Ulrich Spoerlein Me too. Have the same problem with Firefox. Regards -- /\/\ichael Ranner mranner@jawa.at - mranner@bitonline.cc - webmaster@mariazell.at ---------------------------------------------------------------------- JAWA Management Software GmbH - http://www.jawa.at/ Liebenauer Hauptstrasse 2oo - A-8041 Graz Tel +43 316 403274 21 - Fax +43 316 403274 10 ---------------------------------------------------------------------- Mariazell Online - http://www.mariazell.at/ ---------------------------------------------------------------------- From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 13:47:45 2005 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 0EBB116A41F for ; Mon, 10 Oct 2005 13:47:45 +0000 (GMT) (envelope-from freebsd-stable-local@be-well.ilk.org) Received: from mail27.sea5.speakeasy.net (mail27.sea5.speakeasy.net [69.17.117.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id B051F43D48 for ; Mon, 10 Oct 2005 13:47:44 +0000 (GMT) (envelope-from freebsd-stable-local@be-well.ilk.org) Received: (qmail 29236 invoked from network); 10 Oct 2005 13:47:43 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail27.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Oct 2005 13:47:43 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 99BEB2F; Mon, 10 Oct 2005 09:47:42 -0400 (EDT) Sender: lowell@be-well.ilk.org To: stable@freebsd.org References: <20051010020729.GA56351@bunrab.catwhisker.org> From: Lowell Gilbert Date: 10 Oct 2005 09:47:41 -0400 In-Reply-To: <20051010020729.GA56351@bunrab.catwhisker.org> Message-ID: <44r7atwkjm.fsf@be-well.ilk.org> Lines: 58 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 13:47:45 -0000 David Wolfskill writes: > I made the somewhat unexpected discovery that in FreeeBSD 5-STABLE, > if I use the "tmp*" variables in /etc/rc.conf to have an MFS /tmp > created, it is apparentyly not swap-backed -- as I expected from > the part of the mdmfs man page that reads: > > By default, mdmfs creates a swap-based (MD_SWAP) disk with soft-updates > enabled and mounts it on mount-point. > > and a review of the way mdmfs is invoked by /etc/rc; rather, it appears > to be malloc-backed. > > Here's what's in /etc/{defaults/,}rc.conf about it on one such machine: > > g1-59(5.4-S)[42] grep tmp /etc/{default*/,}rc.conf > /etc/defaults/rc.conf:tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never > /etc/defaults/rc.conf:tmpsize="20m" # Size of mfs /tmp if created > /etc/defaults/rc.conf:tmpmfs_flags="-S" # Extra mdmfs options for the mfs /tmp > /etc/defaults/rc.conf:isdn_traceflags="-f /var/tmp/isdntrace0" # Flags for isdntrace > /etc/defaults/rc.conf:clear_tmp_enable="NO" # Clear /tmp at startup. > /etc/rc.conf:tmpmfs="YES" > /etc/rc.conf:tmpsize="512m" > /etc/rc.conf:tmpmfs_flags="-i4096" > g1-59(5.4-S)[43] > > And: > > g1-59(5.4-S)[43] sudo mdconfig -l -u md0 > md0 malloc 524288 KBytes > g1-59(5.4-S)[44] > > Oh, for some sense of what we're working with: > > g1-59(5.4-S)[44] uname -a > FreeBSD g1-59.catwhisker.org. 5.4-STABLE FreeBSD 5.4-STABLE #6: Sun Oct 9 06:24:17 PDT 2005 root@g1-59.catwhisker.org.:/usr/obj/usr/src/sys/LAPTOP i386 > g1-59(5.4-S)[45] > > So, back to my original question: how do I get a *swap*-backed /tmp? > > [The way I was alerted to the possibliity that my /tmp might not > be swap-backed is that I was using a machine running 5-STABLE as a CVS > server, in order to update /usr/ports on another machine. That's why I > have the -i4096 argument in there, BTW: to double the number of inodes > for when the CVS server starts consuming them with wild abandon as it > builds an isomorphic hierarchy to /usr/ports in /tmp. I think it only > took me 3 panics before I poked around in the mailing list archives and > noted scottl's comment about using a swap-backed /tmp instead, which got > me wondering what backing store my /tmp was using. I did look at > /etc/rc.d/tmp, as well a /etc/rc.subr, but I'm still failing to see why > I'm getting a malloc-backed /tmp. FWIW, although the /tmp in question > is an MFS in 4.x, I do this (use the box as a CVS server for /usr/ports) > without problem on 4.x.] It's hard-coded into rc_subr. Changing it to a default parameter and overriding it in rc.conf would probably be easy to get committed. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 14:17:29 2005 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 317B516A41F; Mon, 10 Oct 2005 14:17:29 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from mail.scls.lib.wi.us (mail.scls.lib.wi.us [198.150.40.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA3D43D46; Mon, 10 Oct 2005 14:17:28 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from [172.26.2.238] ([172.26.2.238]) by mail.scls.lib.wi.us (8.12.9p2/8.12.9) with ESMTP id j9AEHRG1061613; Mon, 10 Oct 2005 09:17:27 -0500 (CDT) (envelope-from nalists@scls.lib.wi.us) Message-ID: <434A77F7.4070505@scls.lib.wi.us> Date: Mon, 10 Oct 2005 09:17:27 -0500 From: Greg Barniskis User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ulrich Spoerlein References: <20051006111750.GT72352@cirb503493.alcatel.com.au> <200510061447.j96Elkjm015555@fire.jhs.private> <20051006150053.GA67408@kierun.org> <20051006151854.GH39538@pc5-179.lri.fr> <43456E97.2020604@chillt.de> <20051010114517.GC995@galgenberg.net> In-Reply-To: <20051010114517.GC995@galgenberg.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org, www@freebsd.org Subject: Re: new FreeBSD-webpage 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, 10 Oct 2005 14:17:29 -0000 Ulrich Spoerlein wrote: > Fixed width is stupid. Period. I'd appreciate it if this could be > changed to a relative width of the central column OR a fixed width of > the borders. Yeah, not to pick on those working on this project, since I think it generally represents a huge stride in the right direction, but fixed width pages are on Nielsen's "Top 10 Web Design Mistakes for 2005" [1]. They're a particular problem for me since I have often in the past had a very narrow window open onto the site side by side with local user documentation I'm writing or reviewing. Not having the text flow in a narrow window view is something of a loss. (I know, submit patches or shut up... I'll shut up now ;). [1] http://www.useit.com/alertbox/designmistakes.html -- Greg Barniskis, Computer Systems Integrator South Central Library System (SCLS) Library Interchange Network (LINK) , (608) 266-6348 From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 14:37:22 2005 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 8BFB516A41F for ; Mon, 10 Oct 2005 14:37:22 +0000 (GMT) (envelope-from hlecuanda@gmail.com) Received: from qproxy.gmail.com (qproxy.gmail.com [72.14.204.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id C010043D45 for ; Mon, 10 Oct 2005 14:37:21 +0000 (GMT) (envelope-from hlecuanda@gmail.com) Received: by qproxy.gmail.com with SMTP id a33so1412612qbd for ; Mon, 10 Oct 2005 07:37:21 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=t2N5Z3lmgWjXqaC1Lhes3rzM7bFWYvWD95k7KbIwGms+XTfeAqI1ExtooOIF8lTBBYuaJzz6wFe5nodHbk+HkzgAdzw1CTvmhFj3Nisww8p5NHDaAd+kpWBbLF3wGIe32vmIyrd/z3R8U3JwTs/BtTtjahaLA4a03mVQuhWGiI8= Received: by 10.64.153.9 with SMTP id a9mr2433062qbe; Mon, 10 Oct 2005 07:37:21 -0700 (PDT) Received: by 10.64.208.4 with HTTP; Mon, 10 Oct 2005 07:37:20 -0700 (PDT) Message-ID: Date: Mon, 10 Oct 2005 07:37:20 -0700 From: Hector Lecuanda To: freebsd-stable@freebsd.org, www@freebsd.org In-Reply-To: <434A77F7.4070505@scls.lib.wi.us> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20051006111750.GT72352@cirb503493.alcatel.com.au> <200510061447.j96Elkjm015555@fire.jhs.private> <20051006150053.GA67408@kierun.org> <20051006151854.GH39538@pc5-179.lri.fr> <43456E97.2020604@chillt.de> <20051010114517.GC995@galgenberg.net> <434A77F7.4070505@scls.lib.wi.us> Cc: Subject: Re: new FreeBSD-webpage X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hector Lecuanda List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Oct 2005 14:37:22 -0000 After seeng 60-odd messages in this thread in only 4 days, i can only say BIKE SHED ALERT! http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/misc.html#BIKESHED-PAI= NTING we could all take a minute and read that little jewel buried in the docs, since this is a prime example of the bike-shed syndrome. In the mean time, I say kudos to the designers and all those who took the time to revitalize the web page. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 14:54:52 2005 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 E1A4F16A433 for ; Mon, 10 Oct 2005 14:54:51 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from smtp1.adl2.internode.on.net (smtp1.adl2.internode.on.net [203.16.214.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B2543D45 for ; Mon, 10 Oct 2005 14:54:51 +0000 (GMT) (envelope-from malcolm.kay@internode.on.net) Received: from alpha.home (ppp226-206.lns2.adl4.internode.on.net [203.122.226.206]) by smtp1.adl2.internode.on.net (8.12.9/8.12.6) with ESMTP id j9AEsnCZ085321 for ; Tue, 11 Oct 2005 00:24:49 +0930 (CST) (envelope-from malcolm.kay@internode.on.net) From: Malcolm Kay Organization: at home To: stable@freebsd.org Date: Tue, 11 Oct 2005 00:25:34 +0930 User-Agent: KMail/1.8 References: <20051010020729.GA56351@bunrab.catwhisker.org> In-Reply-To: <20051010020729.GA56351@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200510110025.34765.malcolm.kay@internode.on.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Cc: Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 14:54:52 -0000 On Mon, 10 Oct 2005 11:37 am, David Wolfskill wrote: > I made the somewhat unexpected discovery that in FreeeBSD > 5-STABLE, if I use the "tmp*" variables in /etc/rc.conf to > have an MFS /tmp created, it is apparentyly not swap-backed -- > as I expected from the part of the mdmfs man page that reads: > > By default, mdmfs creates a swap-based (MD_SWAP) disk > with soft-updates enabled and mounts it on mount-point. > > and a review of the way mdmfs is invoked by /etc/rc; rather, > it appears to be malloc-backed. > > Here's what's in /etc/{defaults/,}rc.conf about it on one such > machine: > > g1-59(5.4-S)[42] grep tmp /etc/{default*/,}rc.conf > /etc/defaults/rc.conf:tmpmfs="AUTO" # Set to YES > to always create an mfs /tmp, NO to never > /etc/defaults/rc.conf:tmpsize="20m" # Size of mfs > /tmp if created /etc/defaults/rc.conf:tmpmfs_flags="-S" # > Extra mdmfs options for the mfs /tmp > /etc/defaults/rc.conf:isdn_traceflags="-f /var/tmp/isdntrace0" > # Flags for isdntrace > /etc/defaults/rc.conf:clear_tmp_enable="NO" # Clear /tmp > at startup. /etc/rc.conf:tmpmfs="YES" > /etc/rc.conf:tmpsize="512m" > /etc/rc.conf:tmpmfs_flags="-i4096" > g1-59(5.4-S)[43] > These paramaters are used by the startup script /etc/rc.d/tmp which calls mount_md defined in /etc/rc.subr which specifically adds the _M (malloc) option to the mdmfs call. You'll need to invoke your own script (or; not so nice; edit rc.subr). Malcolm > And: > > g1-59(5.4-S)[43] sudo mdconfig -l -u md0 > md0 malloc 524288 KBytes > g1-59(5.4-S)[44] > > Oh, for some sense of what we're working with: > > g1-59(5.4-S)[44] uname -a > FreeBSD g1-59.catwhisker.org. 5.4-STABLE FreeBSD 5.4-STABLE > #6: Sun Oct 9 06:24:17 PDT 2005 > root@g1-59.catwhisker.org.:/usr/obj/usr/src/sys/LAPTOP i386 > g1-59(5.4-S)[45] > > So, back to my original question: how do I get a > *swap*-backed /tmp? > > [The way I was alerted to the possibliity that my /tmp might > not be swap-backed is that I was using a machine running > 5-STABLE as a CVS server, in order to update /usr/ports on > another machine. That's why I have the -i4096 argument in > there, BTW: to double the number of inodes for when the CVS > server starts consuming them with wild abandon as it builds an > isomorphic hierarchy to /usr/ports in /tmp. I think it only > took me 3 panics before I poked around in the mailing list > archives and noted scottl's comment about using a swap-backed > /tmp instead, which got me wondering what backing store my > /tmp was using. I did look at /etc/rc.d/tmp, as well a > /etc/rc.subr, but I'm still failing to see why I'm getting a > malloc-backed /tmp. FWIW, although the /tmp in question is an > MFS in 4.x, I do this (use the box as a CVS server for > /usr/ports) without problem on 4.x.] > > (I don't need separate copies of any replies; I read -stable, > so I set Reply-To as an appropriate hint.) > > Thanks. > > Peace, > david From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 15:07:25 2005 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 7F65C16A41F for ; Mon, 10 Oct 2005 15:07:25 +0000 (GMT) (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 12D1243D58 for ; Mon, 10 Oct 2005 15:07:24 +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 j9AF7OxB058444 for ; Mon, 10 Oct 2005 08:07:24 -0700 (PDT) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id j9AF7OVU058443 for stable@freebsd.org; Mon, 10 Oct 2005 08:07:24 -0700 (PDT) (envelope-from david) Date: Mon, 10 Oct 2005 08:07:24 -0700 From: David Wolfskill To: stable@freebsd.org Message-ID: <20051010150724.GP47561@bunrab.catwhisker.org> Mail-Followup-To: David Wolfskill , stable@freebsd.org References: <20051010020729.GA56351@bunrab.catwhisker.org> <44r7atwkjm.fsf@be-well.ilk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44r7atwkjm.fsf@be-well.ilk.org> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 15:07:25 -0000 On Mon, Oct 10, 2005 at 09:47:41AM -0400, Lowell Gilbert wrote: > ... > It's hard-coded into rc_subr. Argh! I see it -- now. :-/ > Changing it to a default parameter and overriding it in rc.conf would > probably be easy to get committed. Right. PR forthcoming, within the half-hour. Thanks (and Malcolm, you too!)! Peace, david -- David H. Wolfskill david@catwhisker.org Prediction is difficult, especially if it involves the future. -- Niels Bohr See http://www.catwhisker.org/~david/publickey.gpg for public key. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 15:09:18 2005 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 4DEB216A41F for ; Mon, 10 Oct 2005 15:09:18 +0000 (GMT) (envelope-from sean@gothic.net.au) Received: from visi.gothic.net.au (visi.gothic.net.au [202.182.72.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C45143D46 for ; Mon, 10 Oct 2005 15:09:17 +0000 (GMT) (envelope-from sean@gothic.net.au) Received: from localhost (localhost [127.0.0.1]) by visi.gothic.net.au (Postfix) with ESMTP id BEA61264BE; Tue, 11 Oct 2005 01:09:14 +1000 (EST) Received: from localhost ([127.0.0.1]) by localhost (visi.gothic.net.au [127.0.0.1]) (amavisd-new, port 10026) with SMTP id 29774-09; Tue, 11 Oct 2005 01:09:09 +1000 (EST) Received: from [10.99.34.213] (home.winn.id.au [202.182.72.30]) by visi.gothic.net.au (Postfix) with ESMTP id B2075264AC; Tue, 11 Oct 2005 01:09:08 +1000 (EST) Message-ID: <434A8411.7020605@gothic.net.au> Date: Tue, 11 Oct 2005 01:09:05 +1000 From: Sean Winn User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lowell Gilbert References: <20051010020729.GA56351@bunrab.catwhisker.org> <44r7atwkjm.fsf@be-well.ilk.org> In-Reply-To: <44r7atwkjm.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at gothic.net.au Cc: stable@freebsd.org Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 15:09:18 -0000 Lowell Gilbert wrote: > David Wolfskill writes: > > >>I made the somewhat unexpected discovery that in FreeeBSD 5-STABLE, >>if I use the "tmp*" variables in /etc/rc.conf to have an MFS /tmp >>created, it is apparentyly not swap-backed -- as I expected from >>the part of the mdmfs man page that reads: >> >> By default, mdmfs creates a swap-based (MD_SWAP) disk with soft-updates >> enabled and mounts it on mount-point. >> >>and a review of the way mdmfs is invoked by /etc/rc; rather, it appears >>to be malloc-backed. >> >>Here's what's in /etc/{defaults/,}rc.conf about it on one such machine: >> >>g1-59(5.4-S)[42] grep tmp /etc/{default*/,}rc.conf >>/etc/defaults/rc.conf:tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never >>/etc/defaults/rc.conf:tmpsize="20m" # Size of mfs /tmp if created >>/etc/defaults/rc.conf:tmpmfs_flags="-S" # Extra mdmfs options for the mfs /tmp >>/etc/defaults/rc.conf:isdn_traceflags="-f /var/tmp/isdntrace0" # Flags for isdntrace >>/etc/defaults/rc.conf:clear_tmp_enable="NO" # Clear /tmp at startup. >>/etc/rc.conf:tmpmfs="YES" >>/etc/rc.conf:tmpsize="512m" >>/etc/rc.conf:tmpmfs_flags="-i4096" >>g1-59(5.4-S)[43] >> >>And: >> >>g1-59(5.4-S)[43] sudo mdconfig -l -u md0 >>md0 malloc 524288 KBytes >>g1-59(5.4-S)[44] >> >>Oh, for some sense of what we're working with: >> >>g1-59(5.4-S)[44] uname -a >>FreeBSD g1-59.catwhisker.org. 5.4-STABLE FreeBSD 5.4-STABLE #6: Sun Oct 9 06:24:17 PDT 2005 root@g1-59.catwhisker.org.:/usr/obj/usr/src/sys/LAPTOP i386 >>g1-59(5.4-S)[45] >> >>So, back to my original question: how do I get a *swap*-backed /tmp? >> >>[The way I was alerted to the possibliity that my /tmp might not >>be swap-backed is that I was using a machine running 5-STABLE as a CVS >>server, in order to update /usr/ports on another machine. That's why I >>have the -i4096 argument in there, BTW: to double the number of inodes >>for when the CVS server starts consuming them with wild abandon as it >>builds an isomorphic hierarchy to /usr/ports in /tmp. I think it only >>took me 3 panics before I poked around in the mailing list archives and >>noted scottl's comment about using a swap-backed /tmp instead, which got >>me wondering what backing store my /tmp was using. I did look at >>/etc/rc.d/tmp, as well a /etc/rc.subr, but I'm still failing to see why >>I'm getting a malloc-backed /tmp. FWIW, although the /tmp in question >>is an MFS in 4.x, I do this (use the box as a CVS server for /usr/ports) >>without problem on 4.x.] > > > > It's hard-coded into rc_subr. > Changing it to a default parameter and overriding it in rc.conf would > probably be easy to get committed. Probably really easy, seeing it's already done for RELENG_6 after being implemented in CURRENT. http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/defaults/rc.conf?rev=1.259&content-type=text/x-cvsweb-markup > _______________________________________________ > 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 Mon Oct 10 15:35:32 2005 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 D88A216A41F for ; Mon, 10 Oct 2005 15:35:32 +0000 (GMT) (envelope-from mikes@siralan.org) Received: from rader.servnow.com (rader.servnow.com [69.93.129.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 843E943D45 for ; Mon, 10 Oct 2005 15:35:32 +0000 (GMT) (envelope-from mikes@siralan.org) Received: from 12-210-221-89.client.insightbb.com ([12.210.221.89] helo=familysquires.net) by rader.servnow.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.52) id 1EOzgV-0000xf-69; Mon, 10 Oct 2005 11:35:27 -0400 Date: Mon, 10 Oct 2005 10:35:30 -0500 (EST) From: "Michael L. Squires" X-X-Sender: mikes@familysquires.net To: Billy Newsom In-Reply-To: <4335D1D2.9060501@leadhill.net> Message-ID: <20051010103243.M81593@familysquires.net> References: <87y85nuqhy.fsf@beaker.data-secure.net> <4335D1D2.9060501@leadhill.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - rader.servnow.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - siralan.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-stable@freebsd.org Subject: Re: 5.3 -> 5.4 breaks ATA (Intel ICH2) 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, 10 Oct 2005 15:35:33 -0000 On Sat, 24 Sep 2005, Billy Newsom wrote: > Okay, Tim, I just reported the same bug in a previous post. So did Julian C. > Dunn. I think this is an issue with some recent code changes in CVS... > > See these threads: > > critical BOOT failure updating to latest 5-Stable (5.4) > 9/23/2005 12:07 AM > > ATA lockup with 5.4-STABLE > 9/21/2005 10:19 PM > I have a similar problem (previously posted to this mailing list) with a Toshiba 8100 which locks up when atapci0 is called during the boot using recent kernels. I can boot off an old 5.4-RELEASE kernel (May 2005) and can boot off the more recent kernels if I copy the old version of acpi.ko over the new version, which leads me to believe that it is changes in the ACPI code which are the source of the problem. I've posted to the ACPI mailing list (I'm not aware of any responses). Mike Squires From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 16:39:18 2005 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 9A11216A41F for ; Mon, 10 Oct 2005 16:39:18 +0000 (GMT) (envelope-from darren780@yahoo.com) Received: from web34712.mail.mud.yahoo.com (web34712.mail.mud.yahoo.com [209.191.68.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 8C59243D70 for ; Mon, 10 Oct 2005 16:39:15 +0000 (GMT) (envelope-from darren780@yahoo.com) Received: (qmail 23803 invoked by uid 60001); 10 Oct 2005 16:39:14 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=bg9nQPe+CPQqf3lqBSXSxVQ1Imr8cTSiz0huZUmxkYBvy0xqb9tt0HORwMjPSfeFxj5w/5RW/8TtsRnGmkTCBiENmJJ/Etjq00z9UaApEq5YFa+gohJXbISSTjdMuN3QAJPSBU++4iHOo0XxxxCeeOgNQD/hK6t+rLBeG5juk4c= ; Message-ID: <20051010163914.23801.qmail@web34712.mail.mud.yahoo.com> Received: from [68.150.129.204] by web34712.mail.mud.yahoo.com via HTTP; Mon, 10 Oct 2005 09:39:14 PDT Date: Mon, 10 Oct 2005 09:39:14 -0700 (PDT) From: "Mr. Darren" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: harddrive won't mount/boot, superblock can't be fixed. 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, 10 Oct 2005 16:39:18 -0000 Mr. Darren wrote: > I had a bad ide cable which I have now replaced. on > bootup the filesystem produced a lot of errors and I > lost my first superblock. I since fsck'd and repaired > the superblock at sector 32. At no time does fsck > create, fix, or transfer the sector 32 superblock to > the front of the drive. mount won't accept the drive > in the condition it's in(says no superblock, or bad > superblock.. different programs, different errors). > If anyone knows how I could get my data off and format > my /var drive, or possibly repair my damaged > superblock at the front of the drive with anyone of > the 50-some backups that exist throughout the drive. How about copying the fixed superblock with dd(1)? Something like this: dd if=/dev/ad0s1d of=/tmp/sb skip=32 count=16 dd if=/tmp/sb of=/dev/ad0s1d seek=16 count=16 fsck /dev/ad0s1d Those commands are just off the top of my head -- I haven't tested it, no guarantees, you're doing it at your own risk and you should have a backup. Best regards Oliver Thanks, this did the trick. The only odd thing I could say is that newfs -N didn't list 32 as a superblock(fsck told me it was the one being used), I first tried 92640 which was listed after 144. The 32 block worked and the others didn't.. odd.. Thanks a million =) -Darren __________________________________ Yahoo! Music Unlimited Access over 1 million songs. Try it free. http://music.yahoo.com/unlimited/ From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 19:33:38 2005 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 4D41016A41F for ; Mon, 10 Oct 2005 19:33:38 +0000 (GMT) (envelope-from bkelly@vadev.org) Received: from timesheets.argoneng.com (nat.argoneng.com [208.247.255.11]) by mx1.FreeBSD.org (Postfix) with SMTP id C6F6843D45 for ; Mon, 10 Oct 2005 19:33:37 +0000 (GMT) (envelope-from bkelly@vadev.org) Received: from tethys.argon.local ([192.168.1.247]) by timesheets.argoneng.com (SMSSMTP 4.0.0.59) with SMTP id M2005101015363324433 ; Mon, 10 Oct 2005 15:36:33 -0400 Received: from lh.argoneng.com ([192.168.2.1]) by tethys.argon.local with Microsoft SMTPSVC(6.0.3790.1830); Mon, 10 Oct 2005 15:33:17 -0400 Received: from cordia.argon.local (cordia.argon.local [192.168.33.101]) by lh.argoneng.com (8.11.6/8.11.0) with ESMTP id j9AF3oo18079; Mon, 10 Oct 2005 11:03:51 -0400 From: Ben Kelly To: freebsd-stable@freebsd.org Date: Mon, 10 Oct 2005 11:03:50 -0400 User-Agent: KMail/1.8.2 References: <20051010020729.GA56351@bunrab.catwhisker.org> <200510110025.34765.malcolm.kay@internode.on.net> In-Reply-To: <200510110025.34765.malcolm.kay@internode.on.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510101103.50546.bkelly@vadev.org> X-OriginalArrivalTime: 10 Oct 2005 19:33:17.0456 (UTC) FILETIME=[76C75100:01C5CDD1] Cc: Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 19:33:38 -0000 On Monday 10 October 2005 10:55 am, Malcolm Kay wrote: > On Mon, 10 Oct 2005 11:37 am, David Wolfskill wrote: > > I made the somewhat unexpected discovery that in FreeeBSD > > 5-STABLE, if I use the "tmp*" variables in /etc/rc.conf to > > have an MFS /tmp created, it is apparentyly not swap-backed -- > > as I expected from the part of the mdmfs man page that reads: > > > > By default, mdmfs creates a swap-based (MD_SWAP) disk > > with soft-updates enabled and mounts it on mount-point. > > > > and a review of the way mdmfs is invoked by /etc/rc; rather, > > it appears to be malloc-backed. > > > > Here's what's in /etc/{defaults/,}rc.conf about it on one such > > machine: > > > > g1-59(5.4-S)[42] grep tmp /etc/{default*/,}rc.conf > > /etc/defaults/rc.conf:tmpmfs="AUTO" # Set to YES > > to always create an mfs /tmp, NO to never > > /etc/defaults/rc.conf:tmpsize="20m" # Size of mfs > > /tmp if created /etc/defaults/rc.conf:tmpmfs_flags="-S" # > > Extra mdmfs options for the mfs /tmp > > /etc/defaults/rc.conf:isdn_traceflags="-f /var/tmp/isdntrace0" > > # Flags for isdntrace > > /etc/defaults/rc.conf:clear_tmp_enable="NO" # Clear /tmp > > at startup. /etc/rc.conf:tmpmfs="YES" > > /etc/rc.conf:tmpsize="512m" > > /etc/rc.conf:tmpmfs_flags="-i4096" > > g1-59(5.4-S)[43] > > These paramaters are used by the startup script /etc/rc.d/tmp > which calls mount_md defined in /etc/rc.subr which specifically > adds the _M (malloc) option to the mdmfs call. > > You'll need to invoke your own script (or; not so nice; > edit rc.subr). Is there a reason not to use the ramdisk_* knobs? This seems to work for me: ramdisk_units="10 11" # tmp ramdisk_10_config="-t swap -s 256m" ramdisk_10_perms="1777" # mimedefang spool ramdisk_11_config="-t swap -s 192m" ramdisk_11_owner="mailnull" ramdisk_11_perms="700" > > Malcolm > > > And: > > > > g1-59(5.4-S)[43] sudo mdconfig -l -u md0 > > md0 malloc 524288 KBytes > > g1-59(5.4-S)[44] > > > > Oh, for some sense of what we're working with: > > > > g1-59(5.4-S)[44] uname -a > > FreeBSD g1-59.catwhisker.org. 5.4-STABLE FreeBSD 5.4-STABLE > > #6: Sun Oct 9 06:24:17 PDT 2005 > > root@g1-59.catwhisker.org.:/usr/obj/usr/src/sys/LAPTOP i386 > > g1-59(5.4-S)[45] > > > > So, back to my original question: how do I get a > > *swap*-backed /tmp? > > > > [The way I was alerted to the possibliity that my /tmp might > > not be swap-backed is that I was using a machine running > > 5-STABLE as a CVS server, in order to update /usr/ports on > > another machine. That's why I have the -i4096 argument in > > there, BTW: to double the number of inodes for when the CVS > > server starts consuming them with wild abandon as it builds an > > isomorphic hierarchy to /usr/ports in /tmp. I think it only > > took me 3 panics before I poked around in the mailing list > > archives and noted scottl's comment about using a swap-backed > > /tmp instead, which got me wondering what backing store my > > /tmp was using. I did look at /etc/rc.d/tmp, as well a > > /etc/rc.subr, but I'm still failing to see why I'm getting a > > malloc-backed /tmp. FWIW, although the /tmp in question is an > > MFS in 4.x, I do this (use the box as a CVS server for > > /usr/ports) without problem on 4.x.] > > > > (I don't need separate copies of any replies; I read -stable, > > so I set Reply-To as an appropriate hint.) > > > > Thanks. > > > > Peace, > > david > > _______________________________________________ > 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 Mon Oct 10 19:49:33 2005 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 5B90116A41F for ; Mon, 10 Oct 2005 19:49:33 +0000 (GMT) (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 DFF1043D48 for ; Mon, 10 Oct 2005 19:49:32 +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 j9AJnWZu059460 for ; Mon, 10 Oct 2005 12:49:32 -0700 (PDT) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id j9AJnW2c059459 for stable@freebsd.org; Mon, 10 Oct 2005 12:49:32 -0700 (PDT) (envelope-from david) Date: Mon, 10 Oct 2005 12:49:32 -0700 From: David Wolfskill To: stable@freebsd.org Message-ID: <20051010194932.GT47561@bunrab.catwhisker.org> Mail-Followup-To: David Wolfskill , stable@freebsd.org References: <20051010020729.GA56351@bunrab.catwhisker.org> <200510110025.34765.malcolm.kay@internode.on.net> <200510101103.50546.bkelly@vadev.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510101103.50546.bkelly@vadev.org> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 19:49:33 -0000 On Mon, Oct 10, 2005 at 11:03:50AM -0400, Ben Kelly wrote: > On Monday 10 October 2005 10:55 am, Malcolm Kay wrote: > .... > > These paramaters are used by the startup script /etc/rc.d/tmp > > which calls mount_md defined in /etc/rc.subr which specifically > > adds the _M (malloc) option to the mdmfs call. > > > > You'll need to invoke your own script (or; not so nice; > > edit rc.subr). > > Is there a reason not to use the ramdisk_* knobs? This seems to work for me: > > ramdisk_units="10 11" > > # tmp > ramdisk_10_config="-t swap -s 256m" > ramdisk_10_perms="1777" > > # mimedefang spool > ramdisk_11_config="-t swap -s 192m" > ramdisk_11_owner="mailnull" > ramdisk_11_perms="700" >... Well, other than the point that I'm not seeing those knobs, as Lowell Gilbert pointed out (in response to my original message), the "-M" flag was moved from src/etc/rc.subr to the tmpmfs_flags and varmfs_flags variables in src/etc/defaults/rc.conf in HEAD (on 24 Aug), and that change was MFCed to RELENG_6 on 28 Aug. I filed a PR, bin/87218 about 3 hours ago, in which I requested that the change in question also be MFCed to RELENG_5. I have, in fact, tested the implementation of the change for RELENG_5, and it both allows the specification of a swap-backed /tmp (while preserving the default behavior) and when I put the modified RELENG_5 box (with the swap-, rather than malloc-backed /tmp) under a superset of the load that crashed it yesterday, it performed without a problem. This would seem to be a Good Thing. And I don't see a downside to the requested MFC for RELENG_5. Peace, david -- David H. Wolfskill david@catwhisker.org Prediction is difficult, especially if it involves the future. -- Niels Bohr See http://www.catwhisker.org/~david/publickey.gpg for public key. From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 19:55:12 2005 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 6A9CE16A41F for ; Mon, 10 Oct 2005 19:55:12 +0000 (GMT) (envelope-from bkelly@vadev.org) Received: from timesheets.argoneng.com (nat.argoneng.com [208.247.255.11]) by mx1.FreeBSD.org (Postfix) with SMTP id E59A443D46 for ; Mon, 10 Oct 2005 19:55:11 +0000 (GMT) (envelope-from bkelly@vadev.org) Received: from tethys.argon.local ([192.168.1.247]) by timesheets.argoneng.com (SMSSMTP 4.0.0.59) with SMTP id M2005101015581224643 for ; Mon, 10 Oct 2005 15:58:12 -0400 Received: from lh.argoneng.com ([192.168.2.1]) by tethys.argon.local with Microsoft SMTPSVC(6.0.3790.1830); Mon, 10 Oct 2005 15:55:11 -0400 Received: from cordia.argon.local (cordia.argon.local [192.168.33.101]) by lh.argoneng.com (8.11.6/8.11.0) with ESMTP id j9AJtA628614 for ; Mon, 10 Oct 2005 15:55:10 -0400 From: Ben Kelly To: freebsd-stable@freebsd.org Date: Mon, 10 Oct 2005 15:55:10 -0400 User-Agent: KMail/1.8.2 References: <20051010020729.GA56351@bunrab.catwhisker.org> <200510101103.50546.bkelly@vadev.org> <20051010194932.GT47561@bunrab.catwhisker.org> In-Reply-To: <20051010194932.GT47561@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510101555.10416.bkelly@vadev.org> X-OriginalArrivalTime: 10 Oct 2005 19:55:11.0040 (UTC) FILETIME=[85BC5400:01C5CDD4] Subject: Re: 5.x: how do I get a *swap*-backed /tmp via 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, 10 Oct 2005 19:55:12 -0000 On Monday 10 October 2005 3:49 pm, David Wolfskill wrote: > On Mon, Oct 10, 2005 at 11:03:50AM -0400, Ben Kelly wrote: > > On Monday 10 October 2005 10:55 am, Malcolm Kay wrote: > > .... > > > > > These paramaters are used by the startup script /etc/rc.d/tmp > > > which calls mount_md defined in /etc/rc.subr which specifically > > > adds the _M (malloc) option to the mdmfs call. > > > > > > You'll need to invoke your own script (or; not so nice; > > > edit rc.subr). > > > > Is there a reason not to use the ramdisk_* knobs? This seems to work for > > me: > > > > ramdisk_units="10 11" > > > > # tmp > > ramdisk_10_config="-t swap -s 256m" > > ramdisk_10_perms="1777" > > > > # mimedefang spool > > ramdisk_11_config="-t swap -s 192m" > > ramdisk_11_owner="mailnull" > > ramdisk_11_perms="700" > >... > > Well, other than the point that I'm not seeing those knobs, as Yes. Sorry. I realized after I posted that those rc scripts are not hooked into the makefile so they will not get installed by mergemaster. They are, however, in rc.conf(5) and in the src CVS tree. > Lowell Gilbert pointed out (in response to my original message), > the "-M" flag was moved from src/etc/rc.subr to the tmpmfs_flags > and varmfs_flags variables in src/etc/defaults/rc.conf in HEAD (on > 24 Aug), and that change was MFCed to RELENG_6 on 28 Aug. > > I filed a PR, bin/87218 about 3 hours ago, in which I requested > that the change in question also be MFCed to RELENG_5. > > I have, in fact, tested the implementation of the change for RELENG_5, > and it both allows the specification of a swap-backed /tmp (while > preserving the default behavior) and when I put the modified RELENG_5 > box (with the swap-, rather than malloc-backed /tmp) under a superset of > the load that crashed it yesterday, it performed without a problem. > > This would seem to be a Good Thing. And I don't see a downside to the > requested MFC for RELENG_5. I was just trying to offer an alternative. Also, I sent my mail this morning but it was held up at my outgoing mail server, so it probably looked a bit out of place in the conversation. Anyway, sorry for the noise. > > Peace, > david From owner-freebsd-stable@FreeBSD.ORG Mon Oct 10 20:53:07 2005 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 EC2CB16A41F for ; Mon, 10 Oct 2005 20:53:07 +0000 (GMT) (envelope-from jdow@earthlink.net) Received: from smtpauth01.mail.atl.earthlink.net (smtpauth01.mail.atl.earthlink.net [209.86.89.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8587243D45 for ; Mon, 10 Oct 2005 20:53:07 +0000 (GMT) (envelope-from jdow@earthlink.net) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=earthlink.net; b=RgHxX3qPHjT1zj8zXULaLRd7r/G0ExTuvsADwl79Vj5W0y1b2YbvKmhPk0pTgUJt; h=Received:Message-ID:From:To:References:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Priority:X-MSMail-Priority:X-Mailer:X-MIMEOLE:X-ELNK-Trace:X-Originating-IP; Received: from [71.116.170.241] (helo=kittycat) by smtpauth01.mail.atl.earthlink.net with asmtp (Exim 4.34) id 1EP4du-0000Yb-N0 for freebsd-stable@freebsd.org; Mon, 10 Oct 2005 16:53:07 -0400 Message-ID: <022d01c5cddc$9cc347f0$1225a8c0@kittycat> From: "jdow" To: References: <20051006111750.GT72352@cirb503493.alcatel.com.au><200510061447.j96Elkjm015555@fire.jhs.private><20051006150053.GA67408@kierun.org><20051006151854.GH39538@pc5-179.lri.fr> <43456E97.2020604@chillt.de><20051010114517.GC995@galgenberg.net><434A77F7.4070505@scls.lib.wi.us> Date: Mon, 10 Oct 2005 13:53:04 -0700 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; 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 X-ELNK-Trace: bb89ecdb26a8f9f24d2b10475b5711201d8719473e9815d1a3cc604c0bf32a7a8483c75118a9a15a350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 71.116.170.241 Subject: Re: new FreeBSD-webpage 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, 10 Oct 2005 20:53:08 -0000 From: "Hector Lecuanda" After seeng 60-odd messages in this thread in only 4 days, i can only say BIKE SHED ALERT! http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/misc.html#BIKESHED-PAINTING we could all take a minute and read that little jewel buried in the docs, since this is a prime example of the bike-shed syndrome. In the mean time, I say kudos to the designers and all those who took the time to revitalize the web page. ----- Original Message ----- I have a much prefered image to the Danish "fingerprinting" image. I simply imagine a scruffy old dog lifting its leg and "marking". Until management has peed on it the project will not go forward. {^_-} Joanne, so far darned little has disabused me of this notion gained within weeks of working in industry in the late 60s. From owner-freebsd-stable@FreeBSD.ORG Tue Oct 11 06:30:52 2005 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 6BEFD16A41F for ; Tue, 11 Oct 2005 06:30:52 +0000 (GMT) (envelope-from freebsd-stable@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0D4843D45 for ; Tue, 11 Oct 2005 06:30:51 +0000 (GMT) (envelope-from freebsd-stable@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1EPDen-00062y-Ki for freebsd-stable@freebsd.org; Tue, 11 Oct 2005 08:30:37 +0200 Received: from r5k101.chello.upc.cz ([86.49.10.101]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Oct 2005 08:30:37 +0200 Received: from martinkov by r5k101.chello.upc.cz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Oct 2005 08:30:37 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-stable@freebsd.org From: martinko Date: Mon, 10 Oct 2005 20:05:12 +0200 Lines: 19 Message-ID: References: <43476167.7030805@cloudview.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: r5k101.chello.upc.cz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050925 X-Accept-Language: sk, cs, en-gb, en-us, en In-Reply-To: <43476167.7030805@cloudview.com> Sender: news Subject: Re: Good, stable gigabit nic? 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, 11 Oct 2005 06:30:52 -0000 John Pettitt wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: RIPEMD160 > > > > My gigabit nic has gone bad (after months of working just fine it's > saying "sk0 watchdog timeout" after a day or so of operation - temp > fix is to reboot) - I'm looking for pointers for a low cos but > functional gigabit PCI 32 card that runs under 5.4 without issues. > What works for you? > > John i'm using the same driver and i've already seen the message a few times. some time (a few months?) ago, though, not recently. i wonder what it might be.. martin From owner-freebsd-stable@FreeBSD.ORG Tue Oct 11 14:36:57 2005 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 DF2CA16A449; Tue, 11 Oct 2005 14:36:56 +0000 (GMT) (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 A94B643DA0; Tue, 11 Oct 2005 14:36:31 +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 j9BEaTCw051072; Tue, 11 Oct 2005 08:36:29 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <434BCDF6.3090303@samsco.org> Date: Tue, 11 Oct 2005 08:36:38 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@freebsd.org, current@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: Subject: FreeBSD 6.0-RC1 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: Tue, 11 Oct 2005 14:36:57 -0000 Announcement ------------ The release engineering team is proud to announce the availability of FreeBSD 6.0. We encourage everyone 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_0 Problem reports can be submitted using the send-pr(1) command. This will likely be the last release candidate before the final release of FreeBSD 6.0. Known Issues ------------ The following issues are known and will be fixed before the release: - A late change in the aac(4) driver may result in the driver failing on some Dell systems. - Some systems with only USB keyboards might loose keyboard input. - Some laptops with certain IDE controllers may crash on bootup. - The QEMU and VMWare packages are known to expose problems in the IDE CDROM driver during OS install. - System lock ups may occur under extreme filesystem activity or with active filesystem snapshots. Availability ------------ Install distribution sets and ISO images are available for from ftp://ftp.freebsd.org as well as most 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 ISO images for sparc64 are not available yet but will be made available soon. Also, the release engineering team will switch from using MD5 to SHA256 checksums in the future. Until the switch is fully made, we will be providing both types of checksums. MD5: MD5 (6.0-RC1-alpha-bootonly.iso) = 362193d00cd931f6dc7ac68d0527089f MD5 (6.0-RC1-alpha-disc1.iso) = 7f9f9f4a6fe22515aadf4d718e04976c MD5 (6.0-RC1-amd64-bootonly.iso) = ea1b6e768a366856c09d3b9d3af4041b MD5 (6.0-RC1-amd64-disc1.iso) = c75501d2797c161b1888cb960deff269 MD5 (6.0-RC1-amd64-disc2.iso) = e21e3f9f6b1cf22786559169cbe1f5f7 MD5 (6.0-RC1-i386-bootonly.iso) = 1a26bc2f9f516cb309f1ff9a7480ff09 MD5 (6.0-RC1-i386-disc1.iso) = 2dd00155814fa3bbf4fa7d4ff26357ad MD5 (6.0-RC1-i386-disc2.iso) = b0c1a42ba384f615d90f5c2efd76d114 MD5 (6.0-RC1-ia64-bootonly.iso) = 55ce77c6d43aa15328ca20e5d58d365b MD5 (6.0-RC1-ia64-disc1.iso) = 2557c76f407eb8b9fcece243c1507bda MD5 (6.0-RC1-ia64-disc2.iso) = c04084bf5d21e4c3aec003700385246f MD5 (6.0-RC1-ia64-livefs.iso) = 5c5f298febc50226fba4bad3c049a917 MD5 (6.0-RC1-pc98-disc1.iso) = 0df5c0d86fc11c09c913e20e25a47c09 SHA256: SHA256 (6.0-RC1-amd64-bootonly.iso) = a4853ceb04c0f0bd634b4e078828669552890bdac0ff550cf110f5f077f81220 SHA256 (6.0-RC1-amd64-disc1.iso) = 922cbd9cd46e2637c288c3e442bf24c320dcc432d1e65df850991cf3317d22b7 SHA256 (6.0-RC1-amd64-disc2.iso) = c5a7d502d7e29c6a4c9db12091f56ed6b99ab1c217e23b7361bae306b4b1e521 SHA256 (6.0-RC1-i386-bootonly.iso) = a0f26a37e5e24c4ba9b69cdd209491c20d8b9c049fd3a2a35796bafd9321d8b1 SHA256 (6.0-RC1-i386-disc1.iso) = 2ff78e197177ac7992793805d8a8a45510466a00b839e0f7c59fe3e16505db00 SHA256 (6.0-RC1-i386-disc2.iso) = 5d82fdcf38768d8351bbcbd32bebc9c50a85a6b5669759fad3beb2f4c5e90c91 SHA256 (6.0-RC1-ia64-bootonly.iso) = 088f31b5ba08f65cf68c5f2b9623cc75475ccf9e8527edda92951a344f0849b2 SHA256 (6.0-RC1-ia64-disc1.iso) = 59a9f6c9b9d51e280896789fab5dc97ef45b61294dc9d68382ac572a187e6199 SHA256 (6.0-RC1-ia64-disc2.iso) = 6eed6817554be253c50a7c9b7a8be8942f00d9d41b96ba43fdc9c92228e3fdb9 SHA256 (6.0-RC1-ia64-livefs.iso) = c51617ab7328f69221cd7b9119d40dd9644e8aa3d69066cc7abbb38b64304963 SHA256 (6.0-RC1-pc98-disc1.iso) = 31838e7f656e098c206fe7995bbdcbcedf5ac9dbd379605ada1c1741498cce35 From owner-freebsd-stable@FreeBSD.ORG Tue Oct 11 17:36:48 2005 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 84C5C16A41F for ; Tue, 11 Oct 2005 17:36:48 +0000 (GMT) (envelope-from freebsd-stable@chef-ingenieur.de) Received: from mta.webmatic.de (mta.webmatic.de [212.78.99.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id A678A43D46 for ; Tue, 11 Oct 2005 17:36:46 +0000 (GMT) (envelope-from freebsd-stable@chef-ingenieur.de) Received: (qmail 58016 invoked by uid 1003); 11 Oct 2005 17:36:43 -0000 Received: from freebsd-stable@chef-ingenieur.de by mta.webmatic.de by uid 89 with qmail-scanner-1.22 (spamassassin: 2.63. Clear:RC:1(217.186.18.21):. Processed in 0.0394640000000001 secs); 11 Oct 2005 17:36:43 -0000 Received: from unknown (HELO ?172.21.1.10?) (freebsd-stable@chef-ingenieur.de@217.186.18.21) by mta.webmatic.de with (DHE-RSA-AES256-SHA encrypted) SMTP; 11 Oct 2005 17:36:42 -0000 Message-ID: <434BF82E.7050608@chef-ingenieur.de> Date: Tue, 11 Oct 2005 19:36:46 +0200 From: Thomas Krause User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: more then 9 tun-if's 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, 11 Oct 2005 17:36:48 -0000 Hello, I'm using tun0 to tun8 successfuly with openvpn. Now I want to add a new tunnel (tun9), but I get "interface tun9 does not exist" with FreeBSD 5.4. How can I get mor interfaces? Kind regards, Thomas. From owner-freebsd-stable@FreeBSD.ORG Tue Oct 11 21:19:30 2005 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 46C9616A41F for ; Tue, 11 Oct 2005 21:19:30 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5E6A43D49 for ; Tue, 11 Oct 2005 21:19:29 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id j9BLJJ1v018390; Tue, 11 Oct 2005 14:19:19 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id j9BLJIkr018389; Tue, 11 Oct 2005 14:19:18 -0700 Date: Tue, 11 Oct 2005 14:19:18 -0700 From: Brooks Davis To: Thomas Krause Message-ID: <20051011211918.GC13461@odin.ac.hmc.edu> References: <434BF82E.7050608@chef-ingenieur.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rQ2U398070+RC21q" Content-Disposition: inline In-Reply-To: <434BF82E.7050608@chef-ingenieur.de> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu Cc: freebsd-stable@freebsd.org Subject: Re: more then 9 tun-if's 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, 11 Oct 2005 21:19:30 -0000 --rQ2U398070+RC21q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 11, 2005 at 07:36:46PM +0200, Thomas Krause wrote: > Hello, > I'm using tun0 to tun8 successfuly with openvpn. > Now I want to add a new tunnel (tun9), but > I get "interface tun9 does not exist" with > FreeBSD 5.4. >=20 > How can I get mor interfaces? How are you adding the interfaces? I can create tun interfaces with other numbers with commands like: cat /dev/null >> /dev/tun100 -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --rQ2U398070+RC21q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFDTCxVXY6L6fI4GtQRAsHvAJ0fv5LgMF4cXNDi/HVVck3RtVDa/QCcC7GY 0m2Hyx7BOlq8WrHH8hXXSxw= =lDP7 -----END PGP SIGNATURE----- --rQ2U398070+RC21q-- From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 05:33:56 2005 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 4261116A41F for ; Wed, 12 Oct 2005 05:33:56 +0000 (GMT) (envelope-from moti@flncs.com) Received: from mail1.flncs.com (ns1.flncs.com [204.0.142.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2EB343D45 for ; Wed, 12 Oct 2005 05:33:55 +0000 (GMT) (envelope-from moti@flncs.com) Received: (qmail 70526 invoked by uid 98); 12 Oct 2005 05:33:54 -0000 Received: from 66.165.160.82 by beastie.flncs.com (envelope-from , uid 89) with qmail-scanner-1.25 (clamdscan: 0.85.1/995. spamassassin: 3.0.4. Clear:RC:1(66.165.160.82):. Processed in 0.156115 secs); 12 Oct 2005 05:33:54 -0000 X-Qmail-Scanner-Mail-From: moti@flncs.com via beastie.flncs.com X-Qmail-Scanner: 1.25 (Clear:RC:1(66.165.160.82):. Processed in 0.156115 secs) Received: from unknown (HELO ?127.0.0.1?) (moti@flncs.com@66.165.160.82) by 0 with SMTP; 12 Oct 2005 05:33:54 -0000 Message-ID: <434CA03F.3040902@flncs.com> Date: Wed, 12 Oct 2005 01:33:51 -0400 From: Moti Levy User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) 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: Slow Network Prefomance after updating 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: Wed, 12 Oct 2005 05:33:56 -0000 Hi , I am facing a network issue that is driving me crazy . I have a few Dell PowerEdge 1850 servers with 1G cards in them . when running 5.4 release everything is great , i can ping the boxes and get replies of less 0.003 seconds , i small sql test script that connect to a server on a second box and gets the following result : ConnectTime: 0.55301022529602, ConnectCount: 1000, Connect/sec: 1808.2848277619, AVG connect time: 0.00055301022529602. QueryTime: 0.31900310516357, QueryCount: 1000, Queue/sec: 3134.7657242623, AVG query time: 0.00031900310516357. now , if i upgrade to stable ( p4 , p5 , p6 , p7 ) i get the following pings : PING srv1 (x.x.x.x): 56 data bytes 64 bytes from x.x.x.x: icmp_seq=0 ttl=64 time=12.274 ms 64 bytes from x.x.x.x: icmp_seq=1 ttl=64 time=4.906 ms 64 bytes from x.x.x.x: icmp_seq=2 ttl=64 time=2.680 ms 64 bytes from x.x.x.x: icmp_seq=3 ttl=64 time=0.455 ms 64 bytes from x.x.x.x: icmp_seq=4 ttl=64 time=6.034 ms 64 bytes from x.x.x.x: icmp_seq=5 ttl=64 time=3.814 ms 64 bytes from x.x.x.x: icmp_seq=6 ttl=64 time=1.590 ms the same script from above results in : ConnectTime: 8.9875299930573, ConnectCount: 1000, Connect/sec: 111.26527541744, AVG connect time: 0.0089875299930573. QueryTime: 4.5155739784241, QueryCount: 1000, Queue/sec: 221.4557894031, AVG query time: 0.0045155739784241. i have tried the following : set te cards on servers to 100mb full-duplex , 1000mb full-duplex and same with half-duplex with no success . than i tried changing the nic ( the 1850's come with em0 ( intel card ) so i baught a broadcom card ( bge ) ) same results . if i downgrade to 5.4-RELEASE all works like a charm . any idea's ? thanks Moti From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 09:42:47 2005 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 EEC4116A41F for ; Wed, 12 Oct 2005 09:42:47 +0000 (GMT) (envelope-from michel@lpthe.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B2DA43D46 for ; Wed, 12 Oct 2005 09:42:46 +0000 (GMT) (envelope-from michel@lpthe.jussieu.fr) Received: from parthe.lpthe.jussieu.fr (parthe.lpthe.jussieu.fr [134.157.10.1]) by shiva.jussieu.fr (8.13.5/jtpda-5.4) with ESMTP id j9C9gjCM012873 for ; Wed, 12 Oct 2005 11:42:45 +0200 (CEST) X-Ids: 166 Received: from niobe.lpthe.jussieu.fr (niobe.lpthe.jussieu.fr [134.157.10.41]) by parthe.lpthe.jussieu.fr (8.13.1/8.12.10) with ESMTP id j9C9ghgS001111 for ; Wed, 12 Oct 2005 11:42:44 +0200 Received: by niobe.lpthe.jussieu.fr (Postfix, from userid 2005) id C062D68CA; Wed, 12 Oct 2005 11:42:43 +0200 (CEST) Date: Wed, 12 Oct 2005 11:42:43 +0200 From: Michel Talon To: freebsd-stable@freebsd.org Message-ID: <20051012094243.GA48295@lpthe.jussieu.fr> Mail-Followup-To: Michel Talon , freebsd-stable@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.2 (shiva.jussieu.fr [134.157.0.166]); Wed, 12 Oct 2005 11:42:45 +0200 (CEST) X-Antivirus: scanned by sophie at shiva.jussieu.fr X-Miltered: at shiva.jussieu.fr with ID 434CDA95.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Subject: 6.0-RC1 and qemu 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, 12 Oct 2005 09:42:48 -0000 Hello, i observe a regression running 6.0-RC1 under qemu, compared to 6.0-BETA5. Now the ethernet card driver doesn't attach, i get ed0: port 0xc100-0xc1FF irq 11 at device 3.0 on pci0 ed0: Reserved 0x100 bytes for rid 0x10 type 4 at 0xc100 device_attach: ed0 attach returned 6 Under BETA5 the network was fully functional. -- Michel TALON From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 11:24:51 2005 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 80BE316A41F for ; Wed, 12 Oct 2005 11:24:51 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from mail.hamcom.de (mail.hamcom.de [212.37.37.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBEA243D45 for ; Wed, 12 Oct 2005 11:24:50 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from adsl-dyn-241-246.heliweb.de ([83.216.241.246] helo=kyuzo.dunkelkammer.void) by mail.hamcom.de with esmtp (Exim 4.43) id 1EPej2-0005in-DN for freebsd-stable@freebsd.org; Wed, 12 Oct 2005 13:24:48 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 1C62D39C6; Wed, 12 Oct 2005 13:24:48 +0200 (CEST) Date: Wed, 12 Oct 2005 13:24:48 +0200 From: Stefan Walter To: freebsd-stable@freebsd.org Message-ID: <20051012112448.GA1277@kyuzo.dunkelkammer.void> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.11 Subject: Occasional panics during shutdown 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, 12 Oct 2005 11:24:51 -0000 Hi, for about half a year now (I think - it could be more), my 5-STABLE machine has been panicing occasionally and irregularly - about once or twice a week - during shutdown. (I did multiple updates of the system during that time, which didn't change anything.) It always happens after the disks are sync'd and when the machine should either turn off or reboot. Here's a backtrace of the latest core dump: [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: <118>Writing entropy file: <118>. <118>Terminated <118>. Waiting (max 60 seconds) for system process `vnlru' to stop...done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining...5 2 3 1 0 0 0 done No buffers busy after final sync Uptime: 29m33s ukphy0: detached miibus0: detached kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fault virtual address = 0x24 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0541143 stack pointer = 0x10:0xd4200c68 frame pointer = 0x10:0xd4200c7c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = resume, IOPL = 0 current process = 22 (irq11: vr0 uhci0) trap number = 12 panic: page fault Uptime: 29m38s Dumping 511 MB 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 #0 doadump () at pcpu.h:160 160 pcpu.h: No such file or directory. in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:160 #1 0xc052217f in boot (howto=16644) at /usr/src/sys/kern/kern_shutdown.c:412 #2 0xc0522414 in panic (fmt=0xc06d1ab9 "%s") at /usr/src/sys/kern/kern_shutdown.c:568 #3 0xc06a82b8 in trap_fatal (frame=0xd4200c28, eva=36) at /usr/src/sys/i386/i386/trap.c:817 #4 0xc06a7aa5 in trap (frame= {tf_fs = 24, tf_es = 16, tf_ds = 16, tf_edi = -1047002366, tf_esi = -1046988544, tf_ebp = -736097156, tf_isp = -736097196, tf_ebx = -1047002368, tf_edx = -1047046128, tf_ecx = -1045009532, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1068232381, tf_cs = 8, tf_eflags = 65683, tf_esp = 16, tf_ss = 0}) at /usr/src/sys/i386/i386/trap.c:255 #5 0xc069b14a in calltrap () at /usr/src/sys/i386/i386/exception.s:140 #6 0x00000018 in ?? () #7 0x00000010 in ?? () #8 0x00000010 in ?? () #9 0xc1980302 in ?? () #10 0xc1983900 in ?? () #11 0xd4200c7c in ?? () #12 0xd4200c54 in ?? () #13 0xc1980300 in ?? () #14 0xc1975810 in ?? () #15 0xc1b66b84 in ?? () #16 0x00000000 in ?? () #17 0x0000000c in ?? () #18 0x00000000 in ?? () #19 0xc0541143 in propagate_priority (td=0xc1980300) at /usr/src/sys/kern/subr_turnstile.c:243 #20 0xc05417be in turnstile_wait (ts=0xc19758c0, lock=0xc1b66b84, owner=0xc1980300) at /usr/src/sys/kern/subr_turnstile.c:556 #21 0xc0519c3d in _mtx_lock_sleep (m=0xc1b66b84, td=0xc1983900, opts=0, file=0x0, line=0) at /usr/src/sys/kern/kern_mutex.c:552 #22 0xc062b1ab in vr_intr (arg=0xc1b66000) at /usr/src/sys/pci/if_vr.c:1232 #23 0xc050e9fd in ithread_loop (arg=0xc197d700) at /usr/src/sys/kern/kern_intr.c:547 #24 0xc050dc90 in fork_exit (callout=0xc050e8ac , arg=0xc197d700, frame=0xd4200d38) at /usr/src/sys/kern/kern_fork.c:791 #25 0xc069b1ac in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:209 (kgdb) quit And here the dmesg output: 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 5.4-STABLE #1: Thu Sep 29 11:30:38 CEST 2005 root@kyuzo.dunkelkammer.void:/usr/obj/usr/src/sys/KYUZO WARNING: debug.mpsafenet forced to 0 as ipsec requires Giant WARNING: MPSAFE network stack disabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: mobile AMD Athlon(tm) XP-M 2400+ (1800.08-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x6a0 Stepping = 0 Features=0x383f9ff AMD Features=0xc0480000 real memory = 536805376 (511 MB) avail memory = 515624960 (491 MB) netsmb_dev: loaded 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 0x808-0x80b on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe0000000-0xe7ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) pcm0: port 0xec00-0xecff irq 5 at device 6.0 on pci0 sym0: <896> port 0xe400-0xe4ff mem 0xd6000000-0xd6001fff,0xd8000000-0xd80003ff irq 10 at device 7.0 on pci0 sym0: Tekram NVRAM, ID 7, Fast-40, LVD, parity checking sym1: <896> port 0xe800-0xe8ff mem 0xdc000000-0xdc001fff,0xde000000-0xde0003ff irq 10 at device 7.1 on pci0 sym1: Tekram NVRAM, ID 7, Fast-40, SE, parity checking fwohci0: port 0xe000-0xe07f mem 0xdbfdf800-0xdbfdffff irq 5 at device 10.0 on pci0 fwohci0: OHCI version 1.0 (ROM=1) fwohci0: No. of Isochronous channels is 4. fwohci0: EUI64 20:00:00:00:04:00:20:a6 fwohci0: Phy 1394a available S400, 3 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) firewire0: bus manager 0 (me) uhci0: port 0xdc00-0xdc1f irq 11 at device 16.0 on pci0 uhci0: LegSup = 0xa000 usb0: on uhci0 usb0: USB revision 1.0 usbd_get_string: getting lang failed, using 0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 16.3 (no driver attached) isab0: at device 17.0 on pci0 isa0: on isab0 atapci0: port 0xfc00-0xfc0f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 17.1 on pci0 ata0: channel #0 on atapci0 ata1: channel #1 on atapci0 vr0: port 0xd800-0xd8ff mem 0xdbfdf600-0xdbfdf6ff irq 11 at device 18.0 on pci0 miibus0: on vr0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto vr0: Ethernet address: 00:0c:76:18:9c:4c acpi_button1: on acpi0 speaker0: port 0x61 on acpi0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 orm0: at iomem 0xcd000-0xcefff,0xc0000-0xccfff on isa0 pmtimer0 on isa0 ppc0: parallel port not found. sc0: at flags 0x100 on isa0 sc0: VGA <12 virtual consoles, flags=0x300> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 or not responding vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 1800079258 Hz quality 800 Timecounters tick every 10.000 msec IPsec: Initialized Security Association Processing. ad0: 38166MB [77545/16/63] at ata0-master UDMA100 Waiting 5 seconds for SCSI devices to settle da0 at sym0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 19001MB (38914049 512 byte sectors: 255H 63S/T 2422C) cd0 at sym1 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present da1 at sym1 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 4357MB (8925000 512 byte sectors: 255H 63S/T 555C) Mounting root from ufs:/dev/da0s1a drm0: port 0xb800-0xb8ff mem 0xcfef0000-0xcfefffff,0xa0000000-0xafffffff irq 11 at device 0.0 on pci1 info: [drm] AGP at 0xe0000000 128MB info: [drm] Initialized radeon 1.11.0 20020828 on minor 0 info: [drm] Loading R200 Microcode Any ideas? Stefan From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 13:40:54 2005 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 7775116A41F for ; Wed, 12 Oct 2005 13:40:54 +0000 (GMT) (envelope-from czarkoff@yandex.ru) Received: from mx14.yandex.ru (mx14.yandex.ru [213.180.200.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 902CC43D45 for ; Wed, 12 Oct 2005 13:40:53 +0000 (GMT) (envelope-from czarkoff@yandex.ru) Received: from ppp17-170.pppoe.mtu-net.ru ([81.195.17.170]:61407 "EHLO [192.168.1.2]" smtp-auth: "czarkoff" TLS-CIPHER: TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S1782856AbVJLNkn (ORCPT ); Wed, 12 Oct 2005 17:40:43 +0400 X-Comment: RFC 2476 MSA function at mx14.yandex.ru logged sender identity as: czarkoff From: "Dmitrij D. Czarkoff" To: freebsd-stable@freebsd.org Date: Wed, 12 Oct 2005 17:40:29 +0400 User-Agent: KMail/1.8.2 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart5069957.VnSuPVAZZ4"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200510121740.41658.czarkoff@yandex.ru> Subject: FreeBSD 6.0 RC1 overheats cpu 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, 12 Oct 2005 13:40:54 -0000 --nextPart5069957.VnSuPVAZZ4 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I thought this information could be helpful: My CPU is now 54 deg. after running fresh FreeBSD 6.0 RC1 installation with= no=20 actual load. The same result was achieved several days ago when I compiled= =20 OpenOffice.org after several months of non-stop work under Gentoo. PC: AXP1700+@10x166MHzMHz, EPoX 8RDA+ (nForce2 SPP), 1 Gb DDR @333MHz. And I didn't try hard, but I failed to setup my D-Link DWL-520+ ACX100-base= d=20 Wi-Fi card, which worker fine with ndisulator under FreeBSD 5.4. --nextPart5069957.VnSuPVAZZ4 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2-ecc0.1.6 (GNU/Linux) iD8DBQBDTRJZgxqNgqY6aYARAgWsAJ9indyR3mqYQzbPFDXFX/dtEKXMvQCgs7v3 F61OMSPkk63nS7wvNV/CF/I= =b0Eu -----END PGP SIGNATURE----- --nextPart5069957.VnSuPVAZZ4-- From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 15:38:50 2005 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 7F26716A41F for ; Wed, 12 Oct 2005 15:38:50 +0000 (GMT) (envelope-from joseph.koshy@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BEC443D49 for ; Wed, 12 Oct 2005 15:38:49 +0000 (GMT) (envelope-from joseph.koshy@gmail.com) Received: by xproxy.gmail.com with SMTP id t13so92569wxc for ; Wed, 12 Oct 2005 08:38:49 -0700 (PDT) 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=ag2utdZHb1Du4a/zHPi+5qe6wW9z9L0+/5IyVZ9Hoe9xrEBQCmdzsiTlg6QU+FTeJ9fhx/jXy/PPZJOM6UuTaqiLAs+MqiRUP++kkcafD0WY77wsB8LHE/w/GVnnyICHNPyB/1PPd603XUlZzxdswo6fMNvYzIvGpBggQcAvdsQ= Received: by 10.70.96.9 with SMTP id t9mr209489wxb; Wed, 12 Oct 2005 08:38:49 -0700 (PDT) Received: by 10.70.105.20 with HTTP; Wed, 12 Oct 2005 08:38:49 -0700 (PDT) Message-ID: <84dead720510120838w64f602a2u68f6b3ab8feac2ec@mail.gmail.com> Date: Wed, 12 Oct 2005 21:08:49 +0530 From: Joseph Koshy To: "Dmitrij D. Czarkoff" In-Reply-To: <200510121740.41658.czarkoff@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510121740.41658.czarkoff@yandex.ru> Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 6.0 RC1 overheats cpu 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, 12 Oct 2005 15:38:50 -0000 > My CPU is now 54 deg. after running fresh FreeBSD 6.0 RC1 > installation with no actual load. Does top or systat show anything consuming CPU time? -- FreeBSD Volunteer, http://people.freebsd.org/~jkoshy From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 16:41:10 2005 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 EA0EB16A41F for ; Wed, 12 Oct 2005 16:41:10 +0000 (GMT) (envelope-from rosti.bsd@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B10343D49 for ; Wed, 12 Oct 2005 16:41:10 +0000 (GMT) (envelope-from rosti.bsd@gmail.com) Received: by xproxy.gmail.com with SMTP id t12so98437wxc for ; Wed, 12 Oct 2005 09:41:09 -0700 (PDT) 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=pZXLc6dRenAdi/Z4BlmLljIFDE7bzT7xp5xU6kcdrlCIztdV1RQg0NO8aig3dwuSINc8otawRkxUegi/sDGkIJC//DwMcNiO1xIrfWiiG05YbN6nxXYTIU9f8My0vlwb436yp7OhcSonlcD/E93WwKjL8HvODboCP8n+AWxL2DU= Received: by 10.70.44.14 with SMTP id r14mr241081wxr; Wed, 12 Oct 2005 09:41:09 -0700 (PDT) Received: by 10.70.14.19 with HTTP; Wed, 12 Oct 2005 09:41:09 -0700 (PDT) Message-ID: <59e2ee810510120941x356e0958yd26aa2dfe802d685@mail.gmail.com> Date: Wed, 12 Oct 2005 18:41:09 +0200 From: Rostislav Krasny 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: Strange lines in dmesg of 6.0-RC1 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, 12 Oct 2005 16:41:11 -0000 Hi there, I didn't check the dmesg messages of 6.0 too closely before I've upgraded to 6.0-RC1 and accidentally found two strange lines about $PIR in the following chunk of the dmesg: pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 $PIR: No matching entry for 0.7.INTD agp0: mem 0xd8000000-0xdbfffff= f at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 $PIR: ROUTE_INTERRUPT failed. pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 All devices of this system work fine with 6.0 (previous betas and current RC). ACPI is disabled. I can send the full dmesg or full verbose dmesg output, if you need. I'm just interesting, are those two lines showing any potential problem that others may experience on different hardware? For example, in the freebsd-stable@ mailing list archive I've found a Michel Talon's report about running 6.0-RC1 with RealTek 8029 based NIC under qemu: http://docs.freebsd.org/cgi/mid.cgi?20051012094243.GA48295 I have the same NIC made by Genius that works fine on 6.0-RC1, not under qe= mu: ed0: port 0xec00-0xec1f irq 9 at device 10.0 on pci0 ed0: Ethernet address: 00:c0:df:f3:8a:56 ed0: type NE2000 (16 bit) From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 17:14:53 2005 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 3187616A41F for ; Wed, 12 Oct 2005 17:14:53 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from royk.itea.ntnu.no (royk.itea.ntnu.no [129.241.190.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id F311B43D48 for ; Wed, 12 Oct 2005 17:14:51 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from localhost (localhost [127.0.0.1]) by royk.itea.ntnu.no (Postfix) with ESMTP id 1F15366C9D for ; Wed, 12 Oct 2005 19:14:50 +0200 (CEST) Received: from [129.241.134.240] (m240g.studby.ntnu.no [129.241.134.240]) by royk.itea.ntnu.no (Postfix) with ESMTP for ; Wed, 12 Oct 2005 19:14:49 +0200 (CEST) Message-ID: <434D449C.2070901@stud.ntnu.no> Date: Wed, 12 Oct 2005 19:15:08 +0200 From: =?ISO-8859-1?Q?Owe_J=F8rgensen?= User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) 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 X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Subject: Error in kernel source, possibly GCC related 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, 12 Oct 2005 17:14:53 -0000 I have a FreeBSD 5.3 system which I am upgrading to 5.4 STABLE. I am at this moment compiling the kernel, and I get this error when make buildkernel goes for compilation of ispfw: ===> ispfw cc -O -pipe -D_KERNEL -DKLD_MODULE -nostdinc -I- -include /usr/obj/usr/src/sys/RANDYMAN/opt_global.h -I. -I@ -I@/contrib/altq -I@/../include -finline-limit=8000 -fno-common -I/usr/obj/usr/src/sys/RANDYMAN -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -c /usr/src/sys/modules/ispfw/../../dev/ispfw/ispfw.c In file included from /usr/src/sys/modules/ispfw/../../dev/ispfw/ispfw.c:40: @/dev/ispfw/asm_2100.h:4847: internal compiler error: in tree_low_cst, at tree.c:3314 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop in /usr/src/sys/modules/ispfw. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/obj/usr/src/sys/RANDYMAN. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. m240g# ============================= Below I have included my KERNEL config: # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $ machine i386 cpu I686_CPU ident RANDYMAN # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. options SCHED_4BSD # 4BSD scheduler options INET # InterNETworking options INET6 options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options NFSCLIENT # Network Filesystem Client options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_GPT # GUID Partition Tables. options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options ADAPTIVE_GIANT # Giant mutex is adaptive. device apic # I/O APIC # Bus support. Do not remove isa, even if you have no isa slots device isa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives options ATA_STATIC_ID # Static device numbering # SCSI Controllers # SCSI peripherals # RAID controllers device scbus device da # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor device agp # support several AGP chipsets # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support # Serial (COM) ports # Parallel port # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device rl # RealTek 8129/8139 device sis # Silicon Integrated Systems SiS 900/SiS 7016 device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. # ISA devices that use the old ISA shims #device le # Wireless NIC cards # Pseudo devices. device loop # Network loopback device mem # Memory and kernel memory devices device io # I/O device device random # Entropy device device ether # Ethernet support #device sl # Kernel SLIP #device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling #device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device ehci # EHCI PCI->USB interface (USB 2.0) device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device umass # Disks/Mass storage - Requires scbus and da # USB Ethernet, requires mii # FireWire support device firewire # FireWire bus code device sound device "snd_cmi" From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 17:21:36 2005 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 4F54B16A41F for ; Wed, 12 Oct 2005 17:21:36 +0000 (GMT) (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 0F69243D45 for ; Wed, 12 Oct 2005 17:21:36 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [70.30.70.180]) by elvis.mu.org (Postfix) with ESMTP id E85341A3C24; Wed, 12 Oct 2005 10:21:35 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C00E6547A9; Wed, 12 Oct 2005 13:21:34 -0400 (EDT) Date: Wed, 12 Oct 2005 13:21:34 -0400 From: Kris Kennaway To: Owe J?rgensen Message-ID: <20051012172134.GC6642@xor.obsecurity.org> References: <434D449C.2070901@stud.ntnu.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="c3bfwLpm8qysLVxt" Content-Disposition: inline In-Reply-To: <434D449C.2070901@stud.ntnu.no> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: Error in kernel source, possibly GCC related 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, 12 Oct 2005 17:21:36 -0000 --c3bfwLpm8qysLVxt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 12, 2005 at 07:15:08PM +0200, Owe J?rgensen wrote: > I have a FreeBSD 5.3 system which I am upgrading to 5.4 STABLE. >=20 > I am at this moment compiling the kernel, and I get this error when make= =20 > buildkernel goes for compilation of ispfw: >=20 > =3D=3D=3D> ispfw > cc -O -pipe -D_KERNEL -DKLD_MODULE -nostdinc -I- -include=20 > /usr/obj/usr/src/sys/RANDYMAN/opt_global.h -I. -I@ -I@/contrib/altq=20 > -I@/../include -finline-limit=3D8000 -fno-common=20 > -I/usr/obj/usr/src/sys/RANDYMAN -mno-align-long-strings=20 > -mpreferred-stack-boundary=3D2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2=20 > -ffreestanding -Wall -Wredundant-decls -Wnested-externs=20 > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline=20 > -Wcast-qual -fformat-extensions -std=3Dc99 -c=20 > /usr/src/sys/modules/ispfw/../../dev/ispfw/ispfw.c > In file included from /usr/src/sys/modules/ispfw/../../dev/ispfw/ispfw.c:= 40: > @/dev/ispfw/asm_2100.h:4847: internal compiler error: in tree_low_cst,=20 > at tree.c:3314 > Please submit a full bug report, > with preprocessed source if appropriate. > See for instructions. > *** Error code 1 This is a FAQ. Kris --c3bfwLpm8qysLVxt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDTUYeWry0BWjoQKURAtGkAJ9PDYRZlVum4xwoddsCzLihxd2ZAQCgmhfx P0Ces3NHM6CyKEm+GACEbqE= =/EQ7 -----END PGP SIGNATURE----- --c3bfwLpm8qysLVxt-- From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 19:24:42 2005 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 0A8DA16A434 for ; Wed, 12 Oct 2005 19:24:42 +0000 (GMT) (envelope-from lukas.ertl@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91A7443D48 for ; Wed, 12 Oct 2005 19:24:41 +0000 (GMT) (envelope-from lukas.ertl@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so70493wra for ; Wed, 12 Oct 2005 12:24:40 -0700 (PDT) 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=t2iAXWb3MeHLs2/WWdDHPTRG5Iy38pMoATXZv0xjJFAF1/R0EQHHAbii59NL5+tNEyBaVGPLxTkmZJkgVWIDVagi0uC8xVYf9viSDYDumbO/Nha8XjkKjdqbT9qFtDTgt9ng18jF5z5cBGcJT5bXt2ccDR1bOWiE6NfoWhrqGTg= Received: by 10.54.114.17 with SMTP id m17mr258619wrc; Wed, 12 Oct 2005 12:24:40 -0700 (PDT) Received: by 10.54.113.4 with HTTP; Wed, 12 Oct 2005 12:24:40 -0700 (PDT) Message-ID: <4379f9100510121224l678a2932sd2e961219333cf28@mail.gmail.com> Date: Wed, 12 Oct 2005 21:24:40 +0200 From: Lukas Ertl 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: MySQL crashes on 6.0-RC1 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, 12 Oct 2005 19:24:42 -0000 Hi, I'm not sure if this should go to -stable or -current, but since 6.0-RELEASE is around the corner I guess this is the right list. Well, I'm having a fresh 6.0-RC1 on an SMP machine, and installed a plain mysql41-server from ports. Now, if I connect remotely from a machine using a plain mysql41-client, the server simply dies - no error messages, nothing, just a restart of the mysqld process (done by the safe_mysqld wrapper). Connecting from the same client to a different machine running mysql41-server on 6.0-BETA4 works fine. Anyone ever seen that? Maybe a threads issue? cheers, le From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 19:51:51 2005 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 BD50C16A41F for ; Wed, 12 Oct 2005 19:51:51 +0000 (GMT) (envelope-from lukas.ertl@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6B1343D8C for ; Wed, 12 Oct 2005 19:51:33 +0000 (GMT) (envelope-from lukas.ertl@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so72718wra for ; Wed, 12 Oct 2005 12:51:33 -0700 (PDT) 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=fnQepq2B8mul7nVpJ8QHExx/yqzjrs2UNOz4n+daS7JsfyMd+9ujzKGQ5IcBNB6+HXYwKKzQAzrBEwI6uEAYponlxfK9yMEJMH6Ia2AX0qfp9B4sR4bD7L1+tZ9srVwoa/nLgOOyxautg3+5DWc4eUH1z9X9h/Lpev1re2gK/ss= Received: by 10.54.102.11 with SMTP id z11mr277608wrb; Wed, 12 Oct 2005 12:50:17 -0700 (PDT) Received: by 10.54.113.4 with HTTP; Wed, 12 Oct 2005 12:51:33 -0700 (PDT) Message-ID: <4379f9100510121251l4f8a7520td1307a389e9f1713@mail.gmail.com> Date: Wed, 12 Oct 2005 21:51:33 +0200 From: Lukas Ertl To: freebsd-stable@freebsd.org In-Reply-To: <4379f9100510121224l678a2932sd2e961219333cf28@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <4379f9100510121224l678a2932sd2e961219333cf28@mail.gmail.com> Subject: Re: MySQL crashes on 6.0-RC1 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, 12 Oct 2005 19:51:51 -0000 On 10/12/05, I wrote: > Now, if I connect remotely from a machine using a plain > mysql41-client, the server simply dies - no error messages, nothing, > just a restart of the mysqld process (done by the safe_mysqld > wrapper). Please ignore the noise. One of my cow-orkers had apparently configured /etc/hosts.allow, so that it would deny connections to any service on the host apart from sshd. Still doesn't explain why the mysqld process simply restarts, but now it works fine. thanks, le From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 22:33:49 2005 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 35EA416A426 for ; Wed, 12 Oct 2005 22:33:49 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.62]) by mx1.FreeBSD.org (Postfix) with SMTP id 6F18443D48 for ; Wed, 12 Oct 2005 22:33:48 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 22062 invoked by uid 399); 12 Oct 2005 22:33:47 -0000 Received: from mail1.fluidhosting.com (204.14.90.61) by mail2.fluidhosting.com with SMTP; 12 Oct 2005 22:33:47 -0000 Received: (qmail 18413 invoked by uid 399); 12 Oct 2005 22:33:47 -0000 Received: from localhost (HELO ?192.168.1.100?) (dougb@dougbarton.net@127.0.0.1) by localhost with SMTP; 12 Oct 2005 22:33:47 -0000 Date: Wed, 12 Oct 2005 15:33:40 -0700 (PDT) From: Doug Barton To: Lukas Ertl In-Reply-To: <4379f9100510121224l678a2932sd2e961219333cf28@mail.gmail.com> Message-ID: <20051012153257.J7710@ync.qbhto.arg> References: <4379f9100510121224l678a2932sd2e961219333cf28@mail.gmail.com> Organization: http://www.FreeBSD.org/ X-OpenPGP-Key-ID: 0xD5B2F0FB X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org Subject: Re: MySQL crashes on 6.0-RC1 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, 12 Oct 2005 22:33:49 -0000 On Wed, 12 Oct 2005, Lukas Ertl wrote: > Hi, > > I'm not sure if this should go to -stable or -current, but since > 6.0-RELEASE is around the corner I guess this is the right list. Good thinking, wrong answer though. :) For now 6.x stuff is still discussed on -current. Regards, Doug -- This .signature sanitized for your protection From owner-freebsd-stable@FreeBSD.ORG Wed Oct 12 22:35:09 2005 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 909E516A41F for ; Wed, 12 Oct 2005 22:35:09 +0000 (GMT) (envelope-from parv@pair.com) Received: from mta13.adelphia.net (mta13.mail.adelphia.net [68.168.78.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9D4843D45 for ; Wed, 12 Oct 2005 22:35:08 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([69.160.76.67]) by mta13.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20051012223507.COSC23334.mta13.adelphia.net@default.chvlva.adelphia.net>; Wed, 12 Oct 2005 18:35:07 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 97B95B589; Wed, 12 Oct 2005 18:35:08 -0400 (EDT) Date: Wed, 12 Oct 2005 18:35:08 -0400 From: Parv To: Scot Hetzel , f-stable Message-ID: <20051012223508.GA847@holestein.holy.cow> Mail-Followup-To: Scot Hetzel , f-stable References: <20051005091251.GA11612@holestein.holy.cow> <790a9fff0510050925s18b7fb21rca33eeb2bf4fec6b@mail.gmail.com> <20051005222338.GA46058@holestein.holy.cow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051005222338.GA46058@holestein.holy.cow> Cc: Subject: Re: 5.x, mergemaster dying due to problem w/ "mtree -eU ..." 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, 12 Oct 2005 22:35:09 -0000 in message <20051005222338.GA46058@holestein.holy.cow>, wrote Parv thusly... > > in message <790a9fff0510050925s18b7fb21rca33eeb2bf4fec6b@mail.gmail.com>, > wrote Scot Hetzel thusly... > > > > On 10/5/05, Parv wrote: > ... > > > mtree -eU -f /misc/src-5/etc/mtree/BSD.root.dist -p /var/tmp/temproot/ > > > mtree:No such file or directory > > > *** Error code 1 > > > > > > Stop in /misc/src-5/etc. > > > > > > *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to > > > the temproot environment > > > > > > I have /usr/src symlinked ... > > > > > > lrwxr-xr-x 1 root wheel 9 Dec 21 2004 /usr/src@ -> /misc/src > > > lrwxr-xr-x 1 root wheel 5 Oct 5 00:04 /misc/src@ -> src-5 > > > drwxr-xr-x 21 root wheel 1024 Oct 5 03:49 /misc/src-5/ > > > > > Not sure if I had run accros this problem when I move my source > > directory from /usr/src to /usr/src/5x. But I added: > > > > SOURCEDIR='/usr/src/5x/etc' > > > > to /etc/mergemaster.rc. > > I will try your suggestion, and report back. I tried again (w/ SOURCEDIR=/misc/src-5/etc) after installing 5-stable-2005.10.04.18.00.43; mergemaster still dies w/ the above error message in single user mode. There must be something that is missing in that mode (compared to multi user mode) for mergemaster not to work. Come to think of it, it seems to be a PATH problem as /usr/sbin is not included in PATH in single user mode here. I will update PATH & try again (at some point). - Parv -- From owner-freebsd-stable@FreeBSD.ORG Thu Oct 13 01:21:23 2005 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 60ABF16A41F for ; Thu, 13 Oct 2005 01:21:23 +0000 (GMT) (envelope-from nakaji@takamatsu-nct.ac.jp) Received: from www.takamatsu-nct.ac.jp (www.takamatsu-nct.ac.jp [210.137.227.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57DA743D45 for ; Thu, 13 Oct 2005 01:21:21 +0000 (GMT) (envelope-from nakaji@takamatsu-nct.ac.jp) Received: from takamatsu-nct.ac.jp (ataka.takamatsu-nct.ac.jp [192.168.17.100]) by www.takamatsu-nct.ac.jp (8.11.6/3.7W) with ESMTP id j9D1PJi15475 for ; Thu, 13 Oct 2005 10:25:19 +0900 Received: from localhost.takamatsu-nct.ac.jp ([192.168.111.25]) by takamatsu-nct.ac.jp (8.11.6/3.7W) with ESMTP id j9D1Xx720416 for ; Thu, 13 Oct 2005 10:33:59 +0900 Received: from roddy.c3922.takamatsu-nct.ac.jp.takamatsu-nct.ac.jp (localhost [IPv6:::1]) by localhost.takamatsu-nct.ac.jp (8.13.4/8.13.4) with ESMTP id j9D1LGmG018676 for ; Thu, 13 Oct 2005 10:21:16 +0900 (JST) (envelope-from nakaji@takamatsu-nct.ac.jp) From: NAKAJI Hiroyuki To: stable@freebsd.org Date: Thu, 13 Oct 2005 10:21:15 +0900 Message-ID: <87ll0yyzxw.fsf@roddy.c3922.takamatsu-nct.ac.jp> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: [RELENG_5] kernel cannot boot after 2005.09.05.12.00.00 on my laptop 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, 13 Oct 2005 01:21:23 -0000 I noticed this problem last week. I hope this report is not too late. I have a laptop, NEC VersaPro VA20C (Pentium MMX 200MHz, not pc98), and shareing with one of my friends. The problem was at first reported by him "Today's GENERIC kernel cannot boot, help me." I tried GENERIC plus DDB kernels and recognized the trouble. The problem is simple. Recent GENERIC (plus DDB) kernels cannot boot. It hangs up while detecting USB devices. I tried cvsup's "date=" tag and found: 1. date=2005.09.05.12.00.00 is OK 2. date=2005.09.05.20.00.00 is NG 3. and newer kernels are NG But I cannot find what change was imported in this 8 hours. Does someone know? Thanks in advance. P.S. I did not test any kernel (GENERIC without USB). And could not find proper key words to search from an archive... -- NAKAJI Hiroyuki From owner-freebsd-stable@FreeBSD.ORG Thu Oct 13 08:27:06 2005 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 64D9C16A420; Thu, 13 Oct 2005 08:27:06 +0000 (GMT) (envelope-from christian.meutes@de.clara.net) Received: from gundel.de.clara.net (gundel2.de.clara.net [212.82.225.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1F743D45; Thu, 13 Oct 2005 08:27:05 +0000 (GMT) (envelope-from christian.meutes@de.clara.net) Received: from bla.keyoz.org ([62.24.31.55]) by gundel.de.clara.net with esmtp (Exim 4.30; FreeBSD) id 1EPyQf-000M8G-Ip; Thu, 13 Oct 2005 10:27:09 +0200 Date: Thu, 13 Oct 2005 10:27:03 +0200 From: Christian Meutes To: freebsd-threads@FreeBSD.org, stable@freebsd.org, ports@freebsd.org Message-ID: <52C852D2E1DE99114638D11D@tobaco.qunec.de> X-Mailer: Mulberry/4.0.0b4 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: MySQL(linuxthread) problem with Freeradius 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, 13 Oct 2005 08:27:06 -0000 Hi everyone, i have just found out why FreeRADIUS always crashs when loading the mysql module. I have compiled MySQL with linuxthreads and thats why FreeRADIUS always crashs with a Segmentation fault. I have tested this with MySQL 4 and 4.1 (both out of the ports), FreeBSD 5.4-Release and Stable and FreeRADIUS 1.0.4(ports) and FreeRADIUS 1.0.5. So you can see its able to get FreeRADIUS running on FreeBSD with MySQL(linuxthreads). When compiling MySQL with native threads its running just well, but with little performance suffer. Can anybody find out why Linuxthreads with MySQL are not running with FreeRADIUS? -christian From owner-freebsd-stable@FreeBSD.ORG Thu Oct 13 13:14:00 2005 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 AC2D316A41F; Thu, 13 Oct 2005 13:14:00 +0000 (GMT) (envelope-from christian.meutes@de.clara.net) Received: from gundel.de.clara.net (gundel2.de.clara.net [212.82.225.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id B36EB43D70; Thu, 13 Oct 2005 13:13:57 +0000 (GMT) (envelope-from christian.meutes@de.clara.net) Received: from bla.keyoz.org ([62.24.31.55]) by gundel.de.clara.net with esmtp (Exim 4.30; FreeBSD) id 1EQ2uI-0009WR-0f; Thu, 13 Oct 2005 15:14:02 +0200 Date: Thu, 13 Oct 2005 15:13:56 +0200 From: Christian Meutes Message-ID: <96C054CCCCE25B7203317A4A@tobaco.qunec.de> X-Mailer: Mulberry/4.0.0b4 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: ports@freebsd.org, threads@freebsd.org, stable@freebsd.org Subject: Re: MySQL(linuxthread) problem with Freeradius (fwd) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Christian Meutes List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Oct 2005 13:14:00 -0000 Hi Jason, i tried freeradius from the ports 1.0.4 and i compiled it myself with newest version 1.0.5. both times it crashs when i had built mysql with linuxthreads. would be nice if you could reproduce this, but dont forget: you have to rebuilt freeradius when you switch from mysql-linuxthreads to mysql-pthreads, i think this is for importance, but i dont really know. please confirm as fast as possible to get this bug repaired. i dont exactly know if this is only a fault of the linuxthreads or maybe from mysql or freeradius too. -christian --On Thursday, October 13, 2005 08:00:44 -0500 JasonN wrote: > Man, thanks for talking about this issue. I've just installed MySQL > 4.1 with linux threads and I'm running the same dist. and FreeRADIUS > from the ports. Did you install from the ports? > >-- > >Jason A. Nunnelley >---------------------------------------- >http://www.jasonn.com/ From owner-freebsd-stable@FreeBSD.ORG Thu Oct 13 17:20:54 2005 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 1F87216A420 for ; Thu, 13 Oct 2005 17:20:54 +0000 (GMT) (envelope-from dinesh@alphaque.com) Received: from ns2.alphaque.com (ns2.alphaque.com [202.75.47.153]) by mx1.FreeBSD.org (Postfix) with SMTP id B722C43D49 for ; Thu, 13 Oct 2005 17:20:52 +0000 (GMT) (envelope-from dinesh@alphaque.com) Received: (qmail 76610 invoked by uid 0); 13 Oct 2005 17:20:51 -0000 Received: from lucifer.net-gw.com (HELO prophet.alphaque.com) (202.75.47.153) by lucifer.net-gw.com with SMTP; 13 Oct 2005 17:20:51 -0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) by prophet.alphaque.com (8.13.3/8.13.3) with ESMTP id j9DHKf0c053666; Fri, 14 Oct 2005 01:20:41 +0800 (MYT) (envelope-from dinesh@alphaque.com) Message-ID: <434E9769.6010603@alphaque.com> Date: Fri, 14 Oct 2005 01:20:41 +0800 From: Dinesh Nair User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050326 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org, freebsd-net@freebsd.org, freebsd-hardware@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Broadcom NetXtreme BCM5751M Gigabit Ethernet PCI Express and FreeBSD 4.10 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, 13 Oct 2005 17:20:54 -0000 has anyone got the above gigabit ethernet working with freebsd 4.10 ? patching sys/dev/bge/if_bge.c and sys/dev/bge/if_bgereg.h with the device and vendor IDs in the proper places doesnt seem to work, though the entries exist in the same files in the 4.11 sources. a mailing list search shows it working fine on the ibm t43 notebooks but on freebsd 5.4 instead. however, as mentioned above, RELENG_4 sources contain the device id for the BCM5751M, so i'd assume it'd work there too. there seems to be no special handling of this device in the code, so getting it to work on 4.10 (as opposed to 4.11R) would be as simple as adding in the same device ids. or so i thought. pciconf -l -v yields none4@pci16:0:0: class=0x020000 card=0x0944103c chip=0x167d14e4 rev=0x11 hdr=0x0 vendor = 'Broadcom Corporation' class = network subclass = ethernet and a kldload if_bge returns (after patching in device id): bge0: mem 0xc8000000-0xc800ffff irq 10 at device 0.0 on pci16 bge0: firmware handshake timed out bge0: RX CPU self-diagnostics failed! bge0: chip initialization failed device_probe_and_attach: bge0 returned 6 the notebook is a HP nc6230. -- Regards, /\_/\ "All dogs go to heaven." dinesh@alphaque.com (0 0) http://www.alphaque.com/ +==========================----oOO--(_)--OOo----==========================+ | for a in past present future; do | | for b in clients employers associates relatives neighbours pets; do | | echo "The opinions here in no way reflect the opinions of my $a $b." | | done; done | +=========================================================================+ From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 14:04:14 2005 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 5C3B616A428; Fri, 14 Oct 2005 14:04:14 +0000 (GMT) (envelope-from girgen@pingpong.net) Received: from mxfep02.bredband.com (mxfep02.bredband.com [195.54.107.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1542943D49; Fri, 14 Oct 2005 14:04:12 +0000 (GMT) (envelope-from girgen@pingpong.net) Received: from palle.girgensohn.se ([213.114.205.87] [213.114.205.87]) by mxfep02.bredband.com with ESMTP id <20051014140411.JGXR11792.mxfep02.bredband.com@palle.girgensohn.se>; Fri, 14 Oct 2005 16:04:11 +0200 Received: from palle.girgensohn.se (palle.girgensohn.se [127.0.0.1]) by palle.girgensohn.se (Postfix) with ESMTP id C835317282; Fri, 14 Oct 2005 16:04:11 +0200 (CEST) Date: Fri, 14 Oct 2005 16:04:11 +0200 From: Palle Girgensohn To: stable@freebsd.org Message-ID: <82117273F2B3D8076639D8D3@palle.girgensohn.se> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; FORMAT=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: nectar@freebsd.org Subject: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 14:04:14 -0000 Hi! I'm having some difficulties using the heimdal installed from /usr/src. Here's the difference between the heimdal port and the heimdal distributed in the base: $ ldd /usr/local/lib/libkrb5.so /usr/local/lib/libkrb5.so: libcrypto.so.3 => /lib/libcrypto.so.3 (0x281b3000) libasn1.so.6 => /usr/local/lib/libasn1.so.6 (0x282c4000) libroken.so.16 => /usr/local/lib/libroken.so.16 (0x282ea000) libcrypt.so.2 => /lib/libcrypt.so.2 (0x282f8000) libcom_err.so.2 => /usr/lib/libcom_err.so.2 (0x28311000) $ ldd /usr/lib/libkrb5.so /usr/lib/libkrb5.so: $ This gives me problems. I maintain the postgresql ports, and postgresql supports Kerberos. Problem is, when installing the heimdal port, everything works fine, but when using the base heimdal, I can't get programs linking with postgresq's libpq.so to link, since the configure scripts cannot find symbols that are in for example libasn1.so. Most ports seem to only pick up the -lkrb5, not all the other libs needed. Shouldn't they be provided by libkrb5.so in the same way as the ports' version does? An example: make sure there's no heimdal port installed install databases/postgresql80-client with heimdal kerberos support (make config; make install) then try to build databases/postgresql-libpqxx it fails when it cannot find a bunch of symbols in libkrb5.so (they exist in the other libs listed above). configure:20825: checking for ability to link with libpq configure:20828: checking for main in -lpq configure:20852: cc -o conftest -O -pipe -march=athlon-xp -I/usr/local/include -L/usr/local/lib conftest.c -lpq -L/usr/local/lib >&5 /usr/lib/libkrb5.so.7: undefined reference to `length_PA_ENC_TS_ENC' /usr/lib/libkrb5.so.7: undefined reference to `length_KDC_REQ_BODY' /usr/lib/libkrb5.so.7: undefined reference to `free_Principal' /usr/lib/libkrb5.so.7: undefined reference to `bswap16' /usr/lib/libkrb5.so.7: undefined reference to `length_EncKrbCredPart' /usr/lib/libkrb5.so.7: undefined reference to `copy_Realm' /usr/lib/libkrb5.so.7: undefined reference to `strlwr' /usr/lib/libkrb5.so.7: undefined reference to `length_TGS_REQ' ... I don't now enough about the inner secrets of linking, but I do know that the way the heimdal port's libkrb5.so is built and installed, everything works, whereas the base heimdal makes it fail. FreeBSD-5-stable & 5.4p6 Any ideas how to pursue this? Thanks, Palle From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 14:13:57 2005 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 E53E316A41F; Fri, 14 Oct 2005 14:13:57 +0000 (GMT) (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 945AB43D4C; Fri, 14 Oct 2005 14:13:57 +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 63F534C602; Fri, 14 Oct 2005 14:12:04 +0000 (GMT) Received: from [192.168.0.3] (ppp157-158.static.internode.on.net [150.101.157.158]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by p4.roq.com (Postfix) with ESMTP id EAC874C4DD; Fri, 14 Oct 2005 12:59:59 +0000 (GMT) Message-ID: <434FABCC.2060709@roq.com> Date: Fri, 14 Oct 2005 22:59:56 +1000 From: Michael VInce User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.11) Gecko/20050925 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-net@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: stable@freebsd.org Subject: Network performance 6.0 with netperf 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, 14 Oct 2005 14:13:58 -0000 Hey all, I been doing some network benchmarking using netperf and just simple 'fetch' on a new network setup to make sure I am getting the most out of the router and servers, I thought I would post some results in case some one can help me with my problems or if others are just interested to see the results. The network is currently like this, where machines A and B are the Dell 1850s and C is the 2850 x 2 CPU (Server C has Apache2 worker MPM on it) and server B is the gateway and A is acting as a client for fetch and netperf tests. A --- B --- C The 2 1850s are running AMD64 Freebsd 6.0rc1 (A and B) while C is running 5.4-stable i386 from Oct 12 My main problem is that if I compile SMP into the machine C (5.4stable) the network speed goes down to a range between 6mbytes/sec to 15mbytes/sec on SMP. If I use GENERIC kernel the performance goes up to what I have show below which is around 65megabytes/sec for a 'fetch' get test from Apache server and 933mbits/sec for netperf. Does any know why why network performance would be so bad on SMP? Does any one think that if I upgrade the i386 SMP server to 6.0RC1 the SMP network performance would improve? This server will be running java so I need it to be stable and is the the reason I am using i386 and Java 1.4 I am happy with performance of direct machine to machine (non SMP) which is pretty much full 1gigabit/sec speeds. Going through the gateway server-B seems to drop its speed down a bit for in and out direction tcp speed tests using netperf I get around 266mbits/sec from server A through gateway Server-B to server-C which is quite adequate for the link I currently have for it. Doing a 'fetch' get for a 1gig file from the Apache server gives good speeds of close to 600mbits/sec but netperf shows its weakness with 266mbits/sec. This is as fast as I need it to be but does any one know the weak points on the router gateway to make it faster? Is this the performance I should expect for FreeBSD as a router with gigabit ethers? I have seen 'net.inet.ip.fastforwarding' in some peoples router setups on the list but nothing about what it does or what it can affect. I haven't done any testing with polling yet but if I can get over 900mbits/sec on the interfaces does polling help with passing packets from one interface to the other? All machines have PF running other then that they don't really have any sysctls or special kernel options. Here are some speed benchmarks using netperf and 'fetch' gets. Server A to server C with server C using SMP kernel and just GENERIC kernel further below B# /usr/local/netperf/netperf -l 10 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 -- -m 4096 -s 57344 -S 57344 TCP STREAM TEST to server-C : +/-2.5% @ 99% conf. : histogram Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 57344 57344 4096 10.06 155.99 tank# fetch -o - > /dev/null http://server-C/file1gig.iso - 100% of 1055 MB 13 MBps 00m00s ##### Using generic non SMP kernel Server A to server C with server C using GENERIC kernel. A# fetch -o - > /dev/null http://server-C/file1gig.iso - 100% of 1055 MB 59 MBps 00m00s A# ./tcp_stream_script server-C /usr/local/netperf/netperf -l 60 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 -- -m 4096 -s 57344 -S 57344 Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 57344 57344 4096 60.43 266.92 ------------------------------------ ############################################### Connecting from server-A to B (gateway) A# ./tcp_stream_script server-B ------------------------------------ /usr/local/netperf/netperf -l 60 -H server-B -t TCP_STREAM -i 10,2 -I 99,5 -- -m 4096 -s 57344 -S 57344 TCP STREAM TEST to server-B : +/-2.5% @ 99% conf. : histogram Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 57344 57344 4096 61.80 926.82 ------------------------------------ ########################################## Connecting from server B (gateway) to server C Fetch and Apache2 test B# fetch -o - > /dev/null http://server-C/file1gig.iso - 100% of 1055 MB 74 MBps 00m00s Netperf test B# /usr/local/netperf/tcp_stream_script server-C /usr/local/netperf/netperf -l 60 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 -- -m 4096 -s 57344 -S 57344 TCP STREAM TEST to server-C : +/-2.5% @ 99% conf. : histogram Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 57344 57344 4096 62.20 933.94 ------------------------------------ Cheers, Mike From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 15:29:22 2005 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 7DD7A16A41F; Fri, 14 Oct 2005 15:29:22 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25E143D45; Fri, 14 Oct 2005 15:29:21 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-09-z2.arcor-online.net (mail-in-09-z2.arcor-online.net [151.189.8.21]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 4A33181BF0; Fri, 14 Oct 2005 17:29:20 +0200 (CEST) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mail-in-09-z2.arcor-online.net (Postfix) with ESMTP id F125A759D9; Fri, 14 Oct 2005 17:29:19 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-130-015.pools.arcor-ip.net [84.61.130.15]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id 3561D43EA0; Fri, 14 Oct 2005 17:29:19 +0200 (CEST) Received: from kiste.my.domain (root@kiste.my.domain [192.168.8.4]) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id j9EFTIRr024303 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 17:29:18 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from kiste.my.domain (lofi@localhost [127.0.0.1]) by kiste.my.domain (8.13.4/8.13.1) with ESMTP id j9EFTGwT001789; Fri, 14 Oct 2005 17:29:16 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from localhost (localhost [[UNIX: localhost]]) by kiste.my.domain (8.13.4/8.13.1/Submit) id j9EFTEiY001788; Fri, 14 Oct 2005 17:29:14 +0200 (CEST) (envelope-from lofi@freebsd.org) X-Authentication-Warning: kiste.my.domain: lofi set sender to lofi@freebsd.org using -f From: Michael Nottebrock To: freebsd-stable@freebsd.org Date: Fri, 14 Oct 2005 17:29:09 +0200 User-Agent: KMail/1.8.2 References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> In-Reply-To: <82117273F2B3D8076639D8D3@palle.girgensohn.se> X-Face: =Ym$`&q\+S2X$4`X%x%6"L4>Y,$]<":'L%c9"#7#`2tb&E&wsN31on!N\)3BD[g<=?utf-8?q?=2EjnfV=5B=0A=093=23?=>XchLK,o; >bD>c:]^; :>0>vyZ.X[,63GW`&M>}nYnr]-Fp``,[[@lJ!QL|sfW!s)=?utf-8?q?A2!*=0A=09vNkB/=7CL-?=>&QdSbQg X-Virus-Scanned: by amavisd-new Cc: nectar@freebsd.org, Palle Girgensohn Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 15:29:22 -0000 --nextPart1322452.FejoZ9Xe7r Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday, 14. October 2005 16:04, Palle Girgensohn wrote: > This gives me problems. I maintain the postgresql ports, and postgresql > supports Kerberos. Problem is, when installing the heimdal port, everythi= ng > works fine, but when using the base heimdal, I can't get programs linking > with postgresq's libpq.so to link, since the configure scripts cannot find > symbols that are in for example libasn1.so. Most ports seem to only pick = up > the -lkrb5, not all the other libs needed. Then those ports are buggy. The respective configure scripts should run=20 krb5-config --libs and use that output to determine which additional=20 libraries need to be linked in. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1322452.FejoZ9Xe7r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDT87KXhc68WspdLARAnayAJ0UAo0N2EKMCbwiiCd228Aux/OmbQCfYtWB WiPym2fSOCkYfd71YJEZQQI= =bK4r -----END PGP SIGNATURE----- --nextPart1322452.FejoZ9Xe7r-- From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 15:40:12 2005 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 4AF7216A41F; Fri, 14 Oct 2005 15:40:12 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-01.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E8243D48; Fri, 14 Oct 2005 15:40:11 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id 1A9D464095; Fri, 14 Oct 2005 17:40:10 +0200 (CEST) Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id 0B6F37ACED; Fri, 14 Oct 2005 17:40:10 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-130-015.pools.arcor-ip.net [84.61.130.15]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id 6E07261679; Fri, 14 Oct 2005 17:40:07 +0200 (CEST) Received: from kiste.my.domain (root@kiste.my.domain [192.168.8.4]) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id j9EFe6h7024422 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 17:40:06 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from kiste.my.domain (lofi@localhost [127.0.0.1]) by kiste.my.domain (8.13.4/8.13.1) with ESMTP id j9EFe6rE002103; Fri, 14 Oct 2005 17:40:06 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from localhost (localhost [[UNIX: localhost]]) by kiste.my.domain (8.13.4/8.13.1/Submit) id j9EFe5ZB002102; Fri, 14 Oct 2005 17:40:05 +0200 (CEST) (envelope-from lofi@freebsd.org) X-Authentication-Warning: kiste.my.domain: lofi set sender to lofi@freebsd.org using -f From: Michael Nottebrock To: freebsd-stable@freebsd.org Date: Fri, 14 Oct 2005 17:40:03 +0200 User-Agent: KMail/1.8.2 References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <200510141729.14633.lofi@freebsd.org> In-Reply-To: <200510141729.14633.lofi@freebsd.org> X-Face: =Ym$`&q\+S2X$4`X%x%6"L4>Y,$]<":'L%c9"#7#`2tb&E&wsN31on!N\)3BD[g<=?utf-8?q?=2EjnfV=5B=0A=093=23?=>XchLK,o; >bD>c:]^; :>0>vyZ.X[,63GW`&M>}nYnr]-Fp``,[[@lJ!QL|sfW!s)=?utf-8?q?A2!*=0A=09vNkB/=7CL-?=>&QdSbQg X-Virus-Scanned: by amavisd-new Cc: nectar@freebsd.org, Palle Girgensohn Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 15:40:12 -0000 --nextPart12411567.cLM2TCiB5c Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday, 14. October 2005 17:29, Michael Nottebrock wrote: > On Friday, 14. October 2005 16:04, Palle Girgensohn wrote: > > This gives me problems. I maintain the postgresql ports, and postgresql > > supports Kerberos. Problem is, when installing the heimdal port, > > everything works fine, but when using the base heimdal, I can't get > > programs linking with postgresq's libpq.so to link, since the configure > > scripts cannot find symbols that are in for example libasn1.so. Most > > ports seem to only pick up the -lkrb5, not all the other libs needed. > > Then those ports are buggy. The respective configure scripts should run > krb5-config --libs and use that output to determine which additional > libraries need to be linked in. =46WIW: As a stop-gap solution until this can be fixed in the upstream sour= ces,=20 you probably can do something like this in the port Makefile: HEIMDAL_CFLAGS!=3Dkrb5-config --cflags HEIMDAL_LDFLAGS!=3Dkrb5-config --libs CONFIGURE_ARGS+=3DCFLAGS=3D${HEIMDAL_CFLAGS} LDFLAGS=3D${HEIMDAL_LDFLAGS} =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart12411567.cLM2TCiB5c Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDT9FVXhc68WspdLARAiq2AKCMbJ4iTqRcGv0Z4SkKoCH7CY4QYwCgqEst ZGdjc0arbTnFYYSzht73fLI= =ft8K -----END PGP SIGNATURE----- --nextPart12411567.cLM2TCiB5c-- From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 17:08:53 2005 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 3CE8B16A41F; Fri, 14 Oct 2005 17:08:53 +0000 (GMT) (envelope-from girgen@pingpong.net) Received: from mxfep04.bredband.com (mxfep04.bredband.com [195.54.107.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0240C43D45; Fri, 14 Oct 2005 17:08:51 +0000 (GMT) (envelope-from girgen@pingpong.net) Received: from ironport.bredband.com ([195.54.107.82] [195.54.107.82]) by mxfep04.bredband.com with ESMTP id <20051014170848.GUFZ4878.mxfep04.bredband.com@ironport.bredband.com>; Fri, 14 Oct 2005 19:08:48 +0200 Received: from c-57cd72d5.022-2016-73746f39.cust.bredbandsbolaget.se (HELO palle.girgensohn.se) ([213.114.205.87]) by ironport.bredband.com with ESMTP; 14 Oct 2005 19:08:36 +0200 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="3.97,215,1125871200"; d="scan'208"; a="3111274:sNHT26100612" Received: from palle.girgensohn.se (palle.girgensohn.se [127.0.0.1]) by palle.girgensohn.se (Postfix) with ESMTP id 507D017BC7; Fri, 14 Oct 2005 19:08:48 +0200 (CEST) Date: Fri, 14 Oct 2005 19:08:48 +0200 From: Palle Girgensohn To: Michael Nottebrock , freebsd-stable@freebsd.org Message-ID: In-Reply-To: <200510141740.05616.lofi@freebsd.org> References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <200510141729.14633.lofi@freebsd.org> <200510141740.05616.lofi@freebsd.org> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: nectar@freebsd.org Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 17:08:53 -0000 --On fredag, oktober 14, 2005 17.40.03 +0200 Michael Nottebrock wrote: > On Friday, 14. October 2005 17:29, Michael Nottebrock wrote: >> On Friday, 14. October 2005 16:04, Palle Girgensohn wrote: >> > This gives me problems. I maintain the postgresql ports, and postgresql >> > supports Kerberos. Problem is, when installing the heimdal port, >> > everything works fine, but when using the base heimdal, I can't get >> > programs linking with postgresq's libpq.so to link, since the configure >> > scripts cannot find symbols that are in for example libasn1.so. Most >> > ports seem to only pick up the -lkrb5, not all the other libs needed. >> >> Then those ports are buggy. The respective configure scripts should run >> krb5-config --libs and use that output to determine which additional >> libraries need to be linked in. > > FWIW: As a stop-gap solution until this can be fixed in the upstream > sources, you probably can do something like this in the port Makefile: > > HEIMDAL_CFLAGS!=krb5-config --cflags > HEIMDAL_LDFLAGS!=krb5-config --libs > > CONFIGURE_ARGS+=CFLAGS=${HEIMDAL_CFLAGS} LDFLAGS=${HEIMDAL_LDFLAGS} I'm actually doing that already, but postgresql build process bugs out somehow. I'll have to dedicate some time to this, I guess. Still, isn't it strange that the kerberos libs don't have any dependencies registered? A quick check shows that they are almost the only libs in /usr/lib that have zero output from ldd. /Palle From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 19:13:14 2005 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 9072416A41F for ; Fri, 14 Oct 2005 19:13:14 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from mail.ecolines.ru (ns.ecolines.ru [81.3.181.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FB8C43D46 for ; Fri, 14 Oct 2005 19:13:07 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: (qmail 28944 invoked from network); 14 Oct 2005 19:15:46 -0000 Received: from dialup84126-61.ip.peterstar.net (HELO doom.homeunix.org) (ip@84.204.126.61) by mail.ecolines.ru with ESMTPA; 14 Oct 2005 19:15:46 -0000 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.4/8.13.4) with ESMTP id j9EJBtY4004041; Fri, 14 Oct 2005 23:11:56 +0400 (MSD) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.4/8.13.4/Submit) id j9EJBt7s004040; Fri, 14 Oct 2005 23:11:55 +0400 (MSD) (envelope-from igor) Date: Fri, 14 Oct 2005 23:11:55 +0400 From: Igor Pokrovsky To: Palle Girgensohn Message-ID: <20051014191154.GA3238@doom.homeunix.org> Mail-Followup-To: Palle Girgensohn , freebsd-stable@freebsd.org References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <200510141729.14633.lofi@freebsd.org> <200510141740.05616.lofi@freebsd.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 Cc: freebsd-stable@freebsd.org Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 19:13:14 -0000 On Fri, Oct 14, 2005 at 07:08:48PM +0200, Palle Girgensohn wrote: > > > --On fredag, oktober 14, 2005 17.40.03 +0200 Michael Nottebrock > wrote: > > >On Friday, 14. October 2005 17:29, Michael Nottebrock wrote: > >>On Friday, 14. October 2005 16:04, Palle Girgensohn wrote: > >>> This gives me problems. I maintain the postgresql ports, and postgresql > >>> supports Kerberos. Problem is, when installing the heimdal port, > >>> everything works fine, but when using the base heimdal, I can't get > >>> programs linking with postgresq's libpq.so to link, since the configure > >>> scripts cannot find symbols that are in for example libasn1.so. Most > >>> ports seem to only pick up the -lkrb5, not all the other libs needed. > >> > >>Then those ports are buggy. The respective configure scripts should run > >>krb5-config --libs and use that output to determine which additional > >>libraries need to be linked in. > > > >FWIW: As a stop-gap solution until this can be fixed in the upstream > >sources, you probably can do something like this in the port Makefile: > > > >HEIMDAL_CFLAGS!=krb5-config --cflags > >HEIMDAL_LDFLAGS!=krb5-config --libs > > > >CONFIGURE_ARGS+=CFLAGS=${HEIMDAL_CFLAGS} LDFLAGS=${HEIMDAL_LDFLAGS} > > I'm actually doing that already, but postgresql build process bugs out > somehow. I'll have to dedicate some time to this, I guess. > > Still, isn't it strange that the kerberos libs don't have any dependencies > registered? A quick check shows that they are almost the only libs in > /usr/lib that have zero output from ldd. Probably they are statically linked. What so strange in this? -ip From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 19:36:31 2005 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 34DCD16A41F; Fri, 14 Oct 2005 19:36:31 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90C3C43D73; Fri, 14 Oct 2005 19:36:14 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-04-z2.arcor-online.net (mail-in-04-z2.arcor-online.net [151.189.8.16]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id 08B1695BE9; Fri, 14 Oct 2005 21:36:13 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-04-z2.arcor-online.net (Postfix) with ESMTP id B139A138B9A; Fri, 14 Oct 2005 21:36:07 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-130-015.pools.arcor-ip.net [84.61.130.15]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 9A7F064658; Fri, 14 Oct 2005 21:36:12 +0200 (CEST) Received: from kiste.my.domain (root@kiste.my.domain [192.168.8.4]) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id j9EJaB6C027220 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 21:36:11 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from kiste.my.domain (lofi@localhost [127.0.0.1]) by kiste.my.domain (8.13.1/8.13.1) with ESMTP id j9EJa9NV000696; Fri, 14 Oct 2005 21:36:09 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from localhost (localhost [[UNIX: localhost]]) by kiste.my.domain (8.13.1/8.13.1/Submit) id j9EJa8OH000695; Fri, 14 Oct 2005 21:36:08 +0200 (CEST) (envelope-from lofi@freebsd.org) X-Authentication-Warning: kiste.my.domain: lofi set sender to lofi@freebsd.org using -f From: Michael Nottebrock To: Palle Girgensohn Date: Fri, 14 Oct 2005 21:36:01 +0200 User-Agent: KMail/1.8.2 References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <200510141740.05616.lofi@freebsd.org> In-Reply-To: X-Face: =Ym$`&q\+S2X$4`X%x%6"L4>Y,$]<":'L%c9"#7#`2tb&E&wsN31on!N\)3BD[g<=?utf-8?q?=2EjnfV=5B=0A=093=23?=>XchLK,o; >bD>c:]^; :>0>vyZ.X[,63GW`&M>}nYnr]-Fp``,[[@lJ!QL|sfW!s)=?utf-8?q?A2!*=0A=09vNkB/=7CL-?=>&QdSbQg X-Virus-Scanned: by amavisd-new Cc: nectar@freebsd.org, freebsd-stable@freebsd.org Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 19:36:31 -0000 --nextPart1784715.mH5aOK7og3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday, 14. October 2005 19:08, Palle Girgensohn wrote: > I'm actually doing that already, but postgresql build process bugs out > somehow. I'll have to dedicate some time to this, I guess. > > Still, isn't it strange that the kerberos libs don't have any dependencies > registered?=20 I don't think so - after all, the main purpose of the krb5-config utility i= s=20 to record the dependencies. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1784715.mH5aOK7og3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDUAinXhc68WspdLARAjtCAKCDp5mhEXpIwGoOQUF6t9vchJVfzgCdEAof kHqikAU+a0LTQUa/BGn4d3E= =g1q/ -----END PGP SIGNATURE----- --nextPart1784715.mH5aOK7og3-- From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 19:50:10 2005 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 13E3C16A41F for ; Fri, 14 Oct 2005 19:50:10 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC6FC43D45 for ; Fri, 14 Oct 2005 19:50:04 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-01-z2.arcor-online.net (mail-in-01-z2.arcor-online.net [151.189.8.13]) by mail-in-09.arcor-online.net (Postfix) with ESMTP id E196A96DB6; Fri, 14 Oct 2005 21:50:03 +0200 (CEST) Received: from mail-in-03.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mail-in-01-z2.arcor-online.net (Postfix) with ESMTP id C25987ACED; Fri, 14 Oct 2005 21:50:03 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-130-015.pools.arcor-ip.net [84.61.130.15]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 7F454649D4; Fri, 14 Oct 2005 21:50:03 +0200 (CEST) Received: from kiste.my.domain (root@kiste.my.domain [192.168.8.4]) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id j9EJo2cv027389 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 21:50:02 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from kiste.my.domain (lofi@localhost [127.0.0.1]) by kiste.my.domain (8.13.1/8.13.1) with ESMTP id j9EJo0LY012807; Fri, 14 Oct 2005 21:50:00 +0200 (CEST) (envelope-from lofi@freebsd.org) Received: from localhost (localhost [[UNIX: localhost]]) by kiste.my.domain (8.13.1/8.13.1/Submit) id j9EJnt9K012803; Fri, 14 Oct 2005 21:49:55 +0200 (CEST) (envelope-from lofi@freebsd.org) X-Authentication-Warning: kiste.my.domain: lofi set sender to lofi@freebsd.org using -f From: Michael Nottebrock To: freebsd-stable@freebsd.org Date: Fri, 14 Oct 2005 21:49:51 +0200 User-Agent: KMail/1.8.2 References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <20051014191154.GA3238@doom.homeunix.org> In-Reply-To: <20051014191154.GA3238@doom.homeunix.org> X-Face: =Ym$`&q\+S2X$4`X%x%6"L4>Y,$]<":'L%c9"#7#`2tb&E&wsN31on!N\)3BD[g<=?utf-8?q?=2EjnfV=5B=0A=093=23?=>XchLK,o; >bD>c:]^; :>0>vyZ.X[,63GW`&M>}nYnr]-Fp``,[[@lJ!QL|sfW!s)=?utf-8?q?A2!*=0A=09vNkB/=7CL-?=>&QdSbQg X-Virus-Scanned: by amavisd-new Cc: Igor Pokrovsky , Palle Girgensohn Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 19:50:10 -0000 --nextPart7683086.o5lbkLOA4t Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday, 14. October 2005 21:11, Igor Pokrovsky wrote: > > Still, isn't it strange that the kerberos libs don't have any > > dependencies registered? A quick check shows that they are almost the > > only libs in /usr/lib that have zero output from ldd. > > Probably they are statically linked. No, static libraries don't come with an .so extension. :-) =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart7683086.o5lbkLOA4t Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDUAviXhc68WspdLARAgYYAJkBTRjPCUovOz+8tPz9jymtjcSkhACgnGNX 5w0jnI/pmlF42o/3JiryAzs= =Lu7e -----END PGP SIGNATURE----- --nextPart7683086.o5lbkLOA4t-- From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 19:56:12 2005 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 4E6EA16A41F; Fri, 14 Oct 2005 19:56:12 +0000 (GMT) (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 EDD5F43D48; Fri, 14 Oct 2005 19:56:11 +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 6DC6D46BE3; Fri, 14 Oct 2005 15:56:11 -0400 (EDT) Date: Fri, 14 Oct 2005 20:56:11 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Michael VInce In-Reply-To: <434FABCC.2060709@roq.com> Message-ID: <20051014205434.C66245@fledge.watson.org> References: <434FABCC.2060709@roq.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-net@freebsd.org, stable@freebsd.org Subject: Re: Network performance 6.0 with netperf 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, 14 Oct 2005 19:56:12 -0000 On Fri, 14 Oct 2005, Michael VInce wrote: > I been doing some network benchmarking using netperf and just simple > 'fetch' on a new network setup to make sure I am getting the most out of > the router and servers, I thought I would post some results in case some > one can help me with my problems or if others are just interested to see > the results. Until recently (or maybe still), netperf was compiled with -DHISTOGRAM by our port/package, which resulted in a significant performance drop. I believe that the port maintainer and others have agreed to change it, but I'm not sure if it's been committed yet, or which packages have been rebuilt. You may want to manually rebuild it to make sure -DHISTOGRAM isn't set. You may want to try setting net.isr.direct=1 and see what performance impact that has for you. Robert N M Watson > > The network is currently like this, where machines A and B are the Dell 1850s > and C is the 2850 x 2 CPU (Server C has Apache2 worker MPM on it) and server > B is the gateway and A is acting as a client for fetch and netperf tests. > A --- B --- C > The 2 1850s are running AMD64 Freebsd 6.0rc1 (A and B) while C is running > 5.4-stable i386 from Oct 12 > > My main problem is that if I compile SMP into the machine C (5.4stable) the > network speed goes down to a range between 6mbytes/sec to 15mbytes/sec on > SMP. > If I use GENERIC kernel the performance goes up to what I have show below > which is around 65megabytes/sec for a 'fetch' get test from Apache server and > 933mbits/sec for netperf. > Does any know why why network performance would be so bad on SMP? > > Does any one think that if I upgrade the i386 SMP server to 6.0RC1 the SMP > network performance would improve? This server will be running java so I need > it to be stable and is the the reason I am using i386 and Java 1.4 > > I am happy with performance of direct machine to machine (non SMP) which is > pretty much full 1gigabit/sec speeds. > Going through the gateway server-B seems to drop its speed down a bit for in > and out direction tcp speed tests using netperf I get around 266mbits/sec > from server A through gateway Server-B to server-C which is quite adequate > for the link I currently have for it. > > Doing a 'fetch' get for a 1gig file from the Apache server gives good speeds > of close to 600mbits/sec but netperf shows its weakness with 266mbits/sec. > This is as fast as I need it to be but does any one know the weak points on > the router gateway to make it faster? Is this the performance I should expect > for FreeBSD as a router with gigabit ethers? > > I have seen 'net.inet.ip.fastforwarding' in some peoples router setups on the > list but nothing about what it does or what it can affect. > I haven't done any testing with polling yet but if I can get over > 900mbits/sec on the interfaces does polling help with passing packets from > one interface to the other? > All machines have PF running other then that they don't really have any > sysctls or special kernel options. > > Here are some speed benchmarks using netperf and 'fetch' gets. > > Server A to server C with server C using SMP kernel and just GENERIC kernel > further below > > B# /usr/local/netperf/netperf -l 10 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 > -- -m 4096 -s 57344 -S 57344 > TCP STREAM TEST to server-C : +/-2.5% @ 99% conf. : histogram > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > > 57344 57344 4096 10.06 155.99 > tank# fetch -o - > /dev/null http://server-C/file1gig.iso > - 100% of 1055 MB 13 MBps > 00m00s > > ##### Using generic non SMP kernel > Server A to server C with server C using GENERIC kernel. > A# fetch -o - > /dev/null http://server-C/file1gig.iso > - 100% of 1055 MB 59 MBps > 00m00s > > A# ./tcp_stream_script server-C > > /usr/local/netperf/netperf -l 60 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 -- > -m 4096 -s 57344 -S 57344 > > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > > 57344 57344 4096 60.43 266.92 > > ------------------------------------ > ############################################### > Connecting from server-A to B (gateway) > A# ./tcp_stream_script server-B > > ------------------------------------ > > /usr/local/netperf/netperf -l 60 -H server-B -t TCP_STREAM -i 10,2 -I 99,5 -- > -m 4096 -s 57344 -S 57344 > > TCP STREAM TEST to server-B : +/-2.5% @ 99% conf. : histogram > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > > 57344 57344 4096 61.80 926.82 > > ------------------------------------ > ########################################## > Connecting from server B (gateway) to server C > Fetch and Apache2 test > B# fetch -o - > /dev/null http://server-C/file1gig.iso > - 100% of 1055 MB 74 MBps > 00m00s > > Netperf test > B# /usr/local/netperf/tcp_stream_script server-C > > /usr/local/netperf/netperf -l 60 -H server-C -t TCP_STREAM -i 10,2 -I 99,5 -- > -m 4096 -s 57344 -S 57344 > > TCP STREAM TEST to server-C : +/-2.5% @ 99% conf. : histogram > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > > 57344 57344 4096 62.20 933.94 > > ------------------------------------ > > Cheers, > Mike > > _______________________________________________ > freebsd-net@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 20:54:11 2005 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 E13ED16A41F for ; Fri, 14 Oct 2005 20:54:11 +0000 (GMT) (envelope-from jay@codegurus.org) Received: from ptb-relay03.plus.net (ptb-relay03.plus.net [212.159.14.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A0443D45 for ; Fri, 14 Oct 2005 20:54:11 +0000 (GMT) (envelope-from jay@codegurus.org) Received: from jayton.plus.com ([84.92.156.191] helo=[127.0.0.1]) by ptb-relay03.plus.net with esmtp (Exim) id 1EQWZ6-0003wr-E9 for freebsd-stable@freebsd.org; Fri, 14 Oct 2005 21:54:08 +0100 Message-ID: <43501AEF.70501@codegurus.org> Date: Fri, 14 Oct 2005 21:54:07 +0100 From: Jayton Garnett User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) 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: application to check cpu / system temp? 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, 14 Oct 2005 20:54:12 -0000 Hello, Are there any apps/utilities to check the cpu and system temperature? Regards, Jayton From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 20:56:06 2005 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 E53DD16A41F for ; Fri, 14 Oct 2005 20:56:06 +0000 (GMT) (envelope-from javier@kjsl.com) Received: from skylane.kjsl.com (skylane.kjsl.com [69.36.241.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id B89F343D45 for ; Fri, 14 Oct 2005 20:56:06 +0000 (GMT) (envelope-from javier@kjsl.com) Received: from [199.46.18.30] (rtp-isp-nat1.cisco.com [64.102.254.33]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by skylane.kjsl.com (Postfix) with ESMTP id DD4465C166; Fri, 14 Oct 2005 13:56:05 -0700 (PDT) Message-ID: <43501B63.1010405@kjsl.com> Date: Fri, 14 Oct 2005 16:56:03 -0400 From: Javier Henderson User-Agent: Mozilla Thunderbird 1.0.7 (Macintosh/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jayton Garnett References: <43501AEF.70501@codegurus.org> In-Reply-To: <43501AEF.70501@codegurus.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: application to check cpu / system temp? 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, 14 Oct 2005 20:56:07 -0000 Jayton Garnett wrote: > Hello, > > Are there any apps/utilities to check the cpu and system temperature? > Yes, check the healthd port. -jav From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 21:00:06 2005 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 7517816A420 for ; Fri, 14 Oct 2005 21:00:06 +0000 (GMT) (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 A5F6143D4C for ; Fri, 14 Oct 2005 21:00:05 +0000 (GMT) (envelope-from mike@sentex.net) Received: from pumice3.sentex.ca (pumice3.sentex.ca [64.7.153.26]) by smarthost1.sentex.ca (8.13.3/8.13.3) with ESMTP id j9EL04bk048703 for ; Fri, 14 Oct 2005 17:00:04 -0400 (EDT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by pumice3.sentex.ca (8.13.4/8.13.4) with ESMTP id j9EL047P023760; Fri, 14 Oct 2005 17:00:04 -0400 (EDT) (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 j9EL03W2003365 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 17:00:03 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20051014165902.084044b8@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Fri, 14 Oct 2005 17:00:01 -0400 To: Jayton Garnett , freebsd-stable@freebsd.org From: Mike Tancsa In-Reply-To: <43501AEF.70501@codegurus.org> References: <43501AEF.70501@codegurus.org> 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 X-Scanned-By: MIMEDefang 2.53 on 64.7.153.26 Cc: Subject: Re: application to check cpu / system temp? 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, 14 Oct 2005 21:00:06 -0000 At 04:54 PM 14/10/2005, Jayton Garnett wrote: >Hello, > >Are there any apps/utilities to check the cpu and system temperature? Yes, check in /usr/ports xmbmon lmmon healthd e.g. % mbmon Temp.= 46.0, 77.0, 40.0; Rot.= 3750, 2766, 0 Vcore = 1.30, 2.62; Volt. = 1.54, 5.67, 11.73, -10.68, -4.55 ---Mike From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 21:01:08 2005 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 16B6116A420 for ; Fri, 14 Oct 2005 21:01:08 +0000 (GMT) (envelope-from big@kuwaitnet.net) Received: from orbit.kuwaitnet.net (orbit.kuwaitnet.net [216.40.249.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CEFA43D49 for ; Fri, 14 Oct 2005 21:01:06 +0000 (GMT) (envelope-from big@kuwaitnet.net) Received: from adsl29-19.qualitynet.net ([62.150.222.19] helo=[192.168.1.77]) by orbit.kuwaitnet.net with esmtpa (Exim 4.52) id 1EQWfm-0008Jw-5U for freebsd-stable@freebsd.org; Sat, 15 Oct 2005 00:01:02 +0300 Message-ID: <43501C8B.4060709@kuwaitnet.net> Date: Sat, 15 Oct 2005 00:00:59 +0300 From: Bashar User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <43501AEF.70501@codegurus.org> In-Reply-To: <43501AEF.70501@codegurus.org> X-PopBeforeSMTPSenders: bashar@arab.com, bashar@kuwaitnet.net, big@kuwaitnet.net, ceo@kuwaitnet.net, register@alregister.com X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orbit.kuwaitnet.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - kuwaitnet.net X-Source: X-Source-Args: X-Source-Dir: Content-Type: text/plain; charset=windows-1256; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: application to check cpu / system temp? 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, 14 Oct 2005 21:01:08 -0000 http://lists.freebsd.org/pipermail/freebsd-questions/2005-August/095311.html :) google is your friend Jayton Garnett wrote: > Hello, > > Are there any apps/utilities to check the cpu and system temperature? > > Regards, > Jayton > > _______________________________________________ > 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 Fri Oct 14 22:23:48 2005 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83BAA16A41F; Fri, 14 Oct 2005 22:23:48 +0000 (GMT) (envelope-from green@green.homeunix.org) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.13.4/8.13.1) with ESMTP id j9EMNlCi053060; Fri, 14 Oct 2005 18:23:47 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.4/8.13.1/Submit) id j9EMNgPh053059; Fri, 14 Oct 2005 18:23:42 -0400 (EDT) (envelope-from green) Date: Fri, 14 Oct 2005 18:23:42 -0400 From: Brian Fundakowski Feldman To: Michael Nottebrock Message-ID: <20051014222342.GD1506@green.homeunix.org> References: <82117273F2B3D8076639D8D3@palle.girgensohn.se> <200510141740.05616.lofi@freebsd.org> <200510142136.08029.lofi@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510142136.08029.lofi@freebsd.org> User-Agent: Mutt/1.5.11 Cc: nectar@freebsd.org, freebsd-stable@freebsd.org, Palle Girgensohn Subject: Re: linking problems with heimdal in base (ports version works) 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, 14 Oct 2005 22:23:48 -0000 On Fri, Oct 14, 2005 at 09:36:01PM +0200, Michael Nottebrock wrote: > On Friday, 14. October 2005 19:08, Palle Girgensohn wrote: > > > I'm actually doing that already, but postgresql build process bugs out > > somehow. I'll have to dedicate some time to this, I guess. > > > > Still, isn't it strange that the kerberos libs don't have any dependencies > > registered? > > I don't think so - after all, the main purpose of the krb5-config utility is > to record the dependencies. It doesn't do it with our build infrastructure now. Here's what I had to do for the postgres-ruby port: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /export/ncvs/ports/databases/ruby-postgres/Makefile,v retrieving revision 1.28 diff -r1.28 Makefile 24c24 < CONFIGURE_ARGS= --with-pgsql-include-dir="${LOCALBASE}/include" --- > CONFIGURE_ARGS= --with-pgsql-include-dir="${LOCALBASE}/include" --with-pg_config="${LOCALBASE}/bin/pg_config" --- extconf.rb.orig Mon Dec 9 22:55:35 2002 +++ extconf.rb Thu Oct 13 15:33:23 2005 @@ -36,6 +36,20 @@ $LDFLAGS += "-L#{libdir}" puts "Using PostgreSQL lib directory: #{libdir}" end + pg_config = ENV["POSTGRES_CONFIG"] + pg_config ||= with_config("pg_config") + if pg_config + pldflags = nil + `#{pg_config} --configure`.scan(/'([^'=]*)(?:=?([^']*))'/) {|lhs, rhs| + if lhs == "LDFLAGS" + pldflags = rhs + end + } + if pldflags + $LDFLAGS += " " + pldflags + puts "Using PostgreSQL build flags: #{pldflags}" + end + end if have_library("pq", "PQsetdbLogin") have_func("PQsetClientEncoding") have_func("pg_encoding_to_char") It is certainly not as simple as made out to be. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-freebsd-stable@FreeBSD.ORG Fri Oct 14 23:59:39 2005 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 A2BD216A41F for ; Fri, 14 Oct 2005 23:59:39 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from mail.bitfreak.org (mail.bitfreak.org [65.75.198.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6075C43D45 for ; Fri, 14 Oct 2005 23:59:38 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from smiley (mail.bitfreak.org [65.75.198.146]) by mail.bitfreak.org (Postfix) with ESMTP id C71B019F2C; Fri, 14 Oct 2005 17:05:10 -0700 (PDT) From: "Darren Pilgrim" To: "'Mike Tancsa'" , "'Jayton Garnett'" , Date: Fri, 14 Oct 2005 16:59:26 -0700 Message-ID: <001401c5d11b$5234a070$652a15ac@smiley> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <6.2.3.4.0.20051014165902.084044b8@64.7.153.2> Importance: Normal Cc: Subject: RE: application to check cpu / system temp? 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, 14 Oct 2005 23:59:39 -0000 From: Mike Tancsa > At 04:54 PM 14/10/2005, Jayton Garnett wrote: > > > >Are there any apps/utilities to check the cpu and system temperature? >=20 > Yes, check in /usr/ports > xmbmon > lmmon > healthd I wouldn't trust any of these. It's been a few years since any of them = have given me complete or even correct values on current hardware. I can = provide examples on current hardware running RELENG_5 and -CURRENT, if anyone is interested. From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 00:09:37 2005 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 58BB816A41F for ; Sat, 15 Oct 2005 00:09:37 +0000 (GMT) (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 6740E43D45 for ; Sat, 15 Oct 2005 00:09:36 +0000 (GMT) (envelope-from mike@sentex.net) Received: from pumice6.sentex.ca (pumice6.sentex.ca [64.7.153.21]) by smarthost1.sentex.ca (8.13.3/8.13.3) with ESMTP id j9F09ZWv064799 for ; Fri, 14 Oct 2005 20:09:35 -0400 (EDT) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by pumice6.sentex.ca (8.13.4/8.13.4) with ESMTP id j9F09ZfR097733; Fri, 14 Oct 2005 20:09:35 -0400 (EDT) (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 j9F09YKo003733 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Oct 2005 20:09:34 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <6.2.3.4.0.20051014200754.068a86b8@64.7.153.2> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Fri, 14 Oct 2005 20:09:32 -0400 To: "Darren Pilgrim" , "'Jayton Garnett'" , From: Mike Tancsa In-Reply-To: <001401c5d11b$5234a070$652a15ac@smiley> References: <6.2.3.4.0.20051014165902.084044b8@64.7.153.2> <001401c5d11b$5234a070$652a15ac@smiley> 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 X-Scanned-By: MIMEDefang 2.53 on 64.7.153.21 Cc: Subject: RE: application to check cpu / system temp? 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: Sat, 15 Oct 2005 00:09:37 -0000 At 07:59 PM 14/10/2005, Darren Pilgrim wrote: >I wouldn't trust any of these. It's been a few years since any of them have >given me complete or even correct values on current hardware. I can provide >examples on current hardware running RELENG_5 and -CURRENT, if anyone is >interested. They certainly dont work on *all* boards, so YMMV. However, the various VIAs, ICH4,5,6s, they work for me. ---Mike From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 02:54:00 2005 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 9B4DA16A41F for ; Sat, 15 Oct 2005 02:54:00 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A56943D45 for ; Sat, 15 Oct 2005 02:53:59 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (ppp224-200.lns2.adl4.internode.on.net [203.122.224.200]) (authenticated bits=0) by cain.gsoft.com.au (8.13.4/8.13.4) with ESMTP id j9F2rdRW075486 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 15 Oct 2005 12:23:40 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: freebsd-stable@freebsd.org Date: Sat, 15 Oct 2005 12:23:11 +0930 User-Agent: KMail/1.8.2 References: <43501AEF.70501@codegurus.org> <6.2.3.4.0.20051014165902.084044b8@64.7.153.2> In-Reply-To: <6.2.3.4.0.20051014165902.084044b8@64.7.153.2> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1537427.F58KM69dQk"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200510151223.23868.doconnor@gsoft.com.au> X-Spam-Score: 0.05 () FORGED_RCVD_HELO X-Scanned-By: MIMEDefang 2.51 on 203.31.81.10 Cc: Jayton Garnett Subject: Re: application to check cpu / system temp? 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: Sat, 15 Oct 2005 02:54:00 -0000 --nextPart1537427.F58KM69dQk Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Sat, 15 Oct 2005 06:30, Mike Tancsa wrote: > At 04:54 PM 14/10/2005, Jayton Garnett wrote: > >Hello, > > > >Are there any apps/utilities to check the cpu and system temperature? > > Yes, check in /usr/ports > xmbmon > lmmon > healthd > > e.g. > > % mbmon > > Temp.=3D 46.0, 77.0, 40.0; Rot.=3D 3750, 2766, 0 > Vcore =3D 1.30, 2.62; Volt. =3D 1.54, 5.67, 11.73, -10.68, -4.55 If you have functional ACPI support you can use sysctl too. [inchoate 12:22] ~ >sysctl hw.acpi.thermal.tz0.temperature hw.acpi.thermal.tz0.temperature: 45.5C =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart1537427.F58KM69dQk Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDUG8j5ZPcIHs/zowRAjgsAKCeSOA6QGfrdiF5gzQkO7kPaDp1DQCfWpDx /dim7qOz9EgUNfHrtsOUuUM= =n3uH -----END PGP SIGNATURE----- --nextPart1537427.F58KM69dQk-- From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 04:45:26 2005 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 8DDE716A420 for ; Sat, 15 Oct 2005 04:45:26 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from mail.bitfreak.org (mail.bitfreak.org [65.75.198.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A48343D53 for ; Sat, 15 Oct 2005 04:45:26 +0000 (GMT) (envelope-from dmp@bitfreak.org) Received: from smiley (mail.bitfreak.org [65.75.198.146]) by mail.bitfreak.org (Postfix) with ESMTP id E6CAF19F2D; Fri, 14 Oct 2005 21:50:57 -0700 (PDT) From: "Darren Pilgrim" To: "'Mike Tancsa'" , "'Jayton Garnett'" , Date: Fri, 14 Oct 2005 21:45:14 -0700 Message-ID: <000201c5d143$3f337c80$652a15ac@smiley> 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, Build 10.0.6626 In-Reply-To: <6.2.3.4.0.20051014200754.068a86b8@64.7.153.2> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal Cc: Subject: RE: application to check cpu / system temp? 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: Sat, 15 Oct 2005 04:45:26 -0000 From: Mike Tancsa [mailto:mike@sentex.net] > At 07:59 PM 14/10/2005, Darren Pilgrim wrote: > > >I wouldn't trust any of these. It's been a few years since > any of them have > >given me complete or even correct values on current > hardware. I can provide > >examples on current hardware running RELENG_5 and -CURRENT, > if anyone is > >interested. > > They certainly dont work on *all* boards, so YMMV. However, the > various VIAs, ICH4,5,6s, they work for me. The two machines I have on hand, an i915-based notebook (dell) and an E7525-based server (Supermicro), both produce bad output. From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 07:04:31 2005 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 30B7116A41F for ; Sat, 15 Oct 2005 07:04:31 +0000 (GMT) (envelope-from dinesh@alphaque.com) Received: from ns2.alphaque.com (ns2.alphaque.com [202.75.47.153]) by mx1.FreeBSD.org (Postfix) with SMTP id 1007243D4C for ; Sat, 15 Oct 2005 07:04:24 +0000 (GMT) (envelope-from dinesh@alphaque.com) Received: (qmail 9475 invoked by uid 0); 15 Oct 2005 07:04:17 -0000 Received: from lucifer.net-gw.com (HELO prophet.alphaque.com) (202.75.47.153) by lucifer.net-gw.com with SMTP; 15 Oct 2005 07:04:17 -0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) by prophet.alphaque.com (8.13.3/8.13.3) with ESMTP id j9F741YI002571; Sat, 15 Oct 2005 15:04:01 +0800 (MYT) (envelope-from dinesh@alphaque.com) Message-ID: <4350A9E0.7060108@alphaque.com> Date: Sat, 15 Oct 2005 15:04:00 +0800 From: Dinesh Nair User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050326 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dinesh Nair References: <434E9769.6010603@alphaque.com> In-Reply-To: <434E9769.6010603@alphaque.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-net@freebsd.org, freebsd-stable@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: Broadcom NetXtreme BCM5751M Gigabit Ethernet PCI Express and FreeBSD 4.10 [SOLVED] 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: Sat, 15 Oct 2005 07:04:31 -0000 On 10/14/05 01:20 Dinesh Nair said the following: > > has anyone got the above gigabit ethernet working with freebsd 4.10 ? upgrading to 4.11-RELEASE solved the problem. there were more special code handling functions to be added, other than just adding in the PCI IDs into if_bge.c and if_bgereg.h. -- Regards, /\_/\ "All dogs go to heaven." dinesh@alphaque.com (0 0) http://www.alphaque.com/ +==========================----oOO--(_)--OOo----==========================+ | for a in past present future; do | | for b in clients employers associates relatives neighbours pets; do | | echo "The opinions here in no way reflect the opinions of my $a $b." | | done; done | +=========================================================================+ From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 16:32:51 2005 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 DC94016A41F for ; Sat, 15 Oct 2005 16:32:51 +0000 (GMT) (envelope-from carl.gustavsson@telia.com) Received: from mx1.kth.se (mx1.kth.se [130.237.32.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3450B43D46 for ; Sat, 15 Oct 2005 16:32:50 +0000 (GMT) (envelope-from carl.gustavsson@telia.com) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx1.kth.se (Postfix) with ESMTP id 8F4F114110D for ; Sat, 15 Oct 2005 18:32:49 +0200 (CEST) Received: from mx1.kth.se ([127.0.0.1]) by localhost (mx1.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 25953-01-25 for ; Sat, 15 Oct 2005 18:32:47 +0200 (CEST) Received: from [192.168.0.6] (c213-100-49-147.swipnet.se [213.100.49.147]) by mx1.kth.se (Postfix) with ESMTP id AA00C1410FF for ; Sat, 15 Oct 2005 18:32:47 +0200 (CEST) Message-ID: <43512F32.9050309@telia.com> Date: Sat, 15 Oct 2005 18:32:50 +0200 From: Carl Johan Gustavsson User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) 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 X-Virus-Scanned: by amavisd-new at kth.se Subject: Boot manager 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: Sat, 15 Oct 2005 16:32:52 -0000 Hello, I have a Compaq ProLiant 400, that i'm using as a fileserver. (FreeBSD balder.home.swe 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386) It has a scsi-disk (da0) and two ide-disks, ad0 (at ata0-master) and ad2 (at ata1-master). da0 contains the system, ad0 and ad2 is just for storage. The problem is that the bios doesn't allow me to boot directly to da0. I solve this by having a MBR on ad0, the problem is that it tries to find a loader on the ad0 which is wrong, and i get a error message that says "Invalid partition". Then I get a boot-prompt and if i write "1:da(0,a)/boot/loader" it boots correctly. Upon booting i get: F1 FreeBSD F5 Drive 1 Default: F1 Invalid partition FreeBSD/i386 boot Default: 0:ad(0,a)/boot/loader boot: Invalid partition No /boot/loader FreeBSD/i368 boot Default: 0:ad(0,a)/boot/loader boot: 1:da(0,a)/boot/loader (i write this) After this it boots correct. How do i get the bootloader to boot 1:da(0,a)/boot/kernel directly? With regards Carl Gustavsson dmesg: Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium III/Pentium III Xeon/Celeron (497.44-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x383f9ff real memory = 402653184 (384 MB) avail memory = 384335872 (366 MB) 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 pcib2: at device 15.0 on pci0 pci2: on pcib2 sym0: <895> port 0x1000-0x10ff mem 0x40100000-0x40100fff,0x40300000-0x403000ff irq 10 at device 4.0 on pci2 sym0: No NVRAM, ID 7, Fast-40, SE, parity checking fxp0: port 0x1c00-0x1c1f mem 0x40000000-0x400fffff,0x40500000-0x40500fff irq 10 at device 5.0 on pci2 miibus0: on fxp0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:50:8b:94:ab:35 pci2: at device 6.0 (no driver attached) pci2: at device 7.0 (no driver attached) pci0: at device 16.0 (no driver attached) isab0: at device 20.0 on pci0 isa0: on isab0 atapci0: port 0x2060-0x206f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 20.1 on pci0 ata0: channel #0 on atapci0 ata1: channel #1 on atapci0 uhci0: port 0x2040-0x205f irq 10 at device 20.2 on pci0 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) orm0: at iomem 0xe0000-0xe7fff,0xc8000-0xcdfff,0xc0000-0xc7fff on isa0 pmtimer0 on isa0 atkbdc0: at port 0x64,0x60 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 fdc0: at port 0x3f0-0x3f5 irq 6 drq 2 on isa0 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=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) unknown: can't assign resources (port) Timecounter "TSC" frequency 497435902 Hz quality 800 Timecounters tick every 10.000 msec ad0: 76319MB [155061/16/63] at ata0-master UDMA33 ad2: 190782MB [387621/16/63] at ata1-master UDMA33 acd0: CDROM at ata1-slave PIO4 Waiting 15 seconds for SCSI devices to settle (noperiph:sym0:0:-1:-1): SCSI BUS mode change from SE to SE. da0 at sym0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) Mounting root from ufs:/dev/da0s1a From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 16:39:28 2005 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 D7DB716A41F for ; Sat, 15 Oct 2005 16:39:28 +0000 (GMT) (envelope-from xdamen@sci.kun.nl) Received: from hermes.uci.kun.nl (hermes.uci.kun.nl [131.174.93.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FA8943D48 for ; Sat, 15 Oct 2005 16:39:27 +0000 (GMT) (envelope-from xdamen@sci.kun.nl) Received: from [127.0.0.1] (vhe-383505.sshn.net [195.169.208.89]) by hermes.uci.kun.nl (PMDF V6.2-X17 #30689) with ESMTP id <0IOE00LDGU8QRZ@hermes.uci.kun.nl> for freebsd-stable@freebsd.org; Sat, 15 Oct 2005 18:38:55 +0200 (MEST) Date: Sat, 15 Oct 2005 18:40:38 +0200 From: Xander Damen In-reply-to: <43501AEF.70501@codegurus.org> To: Jayton Garnett Message-id: <43513106.80505@sci.kun.nl> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) References: <43501AEF.70501@codegurus.org> Cc: freebsd-stable@freebsd.org Subject: Re: application to check cpu / system temp? 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: Sat, 15 Oct 2005 16:39:29 -0000 I use /sysutils/xmbmon Also works from commandline without X :) -- Xander Jayton Garnett wrote: > Hello, > > Are there any apps/utilities to check the cpu and system temperature? > > Regards, > Jayton > > _______________________________________________ > 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 Sat Oct 15 16:46:45 2005 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 EF03916A41F for ; Sat, 15 Oct 2005 16:46:45 +0000 (GMT) (envelope-from errmaker@gmail.com) Received: from qproxy.gmail.com (qproxy.gmail.com [72.14.204.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86D9E43D46 for ; Sat, 15 Oct 2005 16:46:45 +0000 (GMT) (envelope-from errmaker@gmail.com) Received: by qproxy.gmail.com with SMTP id a39so476209qbd for ; Sat, 15 Oct 2005 09:46:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:to:subject:reply-to:from:content-type:mime-version:content-transfer-encoding:message-id:user-agent; b=tU93kCxrFC/ueXHNKpaY+6gtCsSISTSNQ/vI9dOljBxhwV2CvakHXMzlSINb0fLCb0nUXbzLoUrUDpzFAnlfdjrDaXTnHBB6mPYPbaa9AQSDvS76XmtQ4px2fIZg3wR9oS+JqbfhYEmhwONEOp5byPMfFEg7VVyFwi6YT7NNGas= Received: by 10.65.123.4 with SMTP id a4mr601523qbn; Sat, 15 Oct 2005 09:46:44 -0700 (PDT) Received: from dell1.bsd-online.info ( [217.66.19.36]) by mx.gmail.com with ESMTP id a29sm2279861qbd.2005.10.15.09.46.42; Sat, 15 Oct 2005 09:46:43 -0700 (PDT) Date: Sat, 15 Oct 2005 20:46:39 +0400 To: freebsd-stable@freebsd.org From: Alex Content-Type: text/plain; format=flowed; delsp=yes; charset=koi8-r MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: User-Agent: Opera M2/8.50 (FreeBSD, build 1358) Subject: shutdown X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: errmaker@gmail.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Oct 2005 16:46:46 -0000 Hi ! My laptop (dell inspiron 1150) do nothing when i want to shutdown it from power button. How can i fix this trouble ? FreeBSD dell1.xx 5.4-STABLE FreeBSD 5.4-STABLE #1: Thu Oct 13 16:11:55 MSD 2005 root@dell1.bsd-online.info:/usr/obj/usr/src/sys/DELL1KERN5X i386 dell1# cat /var/log/messages | grep acpi|grep butt Oct 14 09:44:52 dell1 kernel: acpi_button0: on acpi0 Oct 14 09:44:52 dell1 kernel: acpi_button1: on acpi0 From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 18:29:55 2005 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 D449D16A420 for ; Sat, 15 Oct 2005 18:29:55 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from signal.itea.ntnu.no (signal.itea.ntnu.no [129.241.190.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id B219F43D6A for ; Sat, 15 Oct 2005 18:29:46 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from localhost (localhost [127.0.0.1]) by signal.itea.ntnu.no (Postfix) with ESMTP id 4B4DB33680 for ; Sat, 15 Oct 2005 20:29:45 +0200 (CEST) Received: from [129.241.134.240] (m240g.studby.ntnu.no [129.241.134.240]) by signal.itea.ntnu.no (Postfix) with ESMTP for ; Sat, 15 Oct 2005 20:29:44 +0200 (CEST) Message-ID: <43514A9F.7000006@stud.ntnu.no> Date: Sat, 15 Oct 2005 20:29:51 +0200 From: =?ISO-8859-1?Q?Owe_J=F8rgensen?= User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <43512F32.9050309@telia.com> In-Reply-To: <43512F32.9050309@telia.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Subject: Re: Boot manager 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: Sat, 15 Oct 2005 18:29:56 -0000 Carl Johan Gustavsson wrote: > Hello, > > I have a Compaq ProLiant 400, that i'm using as a fileserver. > (FreeBSD balder.home.swe 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 > 10:21:06 UTC 2005 > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386) > > It has a scsi-disk (da0) and two ide-disks, ad0 (at ata0-master) and ad2 > (at ata1-master). > da0 contains the system, ad0 and ad2 is just for storage. > > The problem is that the bios doesn't allow me to boot directly to da0. I > solve this by having a MBR on ad0, the problem is that it tries to find > a loader on the ad0 which is wrong, and i get a error message that says > "Invalid partition". Then I get a boot-prompt and if i write > "1:da(0,a)/boot/loader" it boots correctly. > > Upon booting i get: > > F1 FreeBSD > F5 Drive 1 > > Default: F1 > > Invalid partition > > FreeBSD/i386 boot > Default: 0:ad(0,a)/boot/loader > boot: Invalid partition > No /boot/loader > > FreeBSD/i368 boot > Default: 0:ad(0,a)/boot/loader > boot: 1:da(0,a)/boot/loader (i write this) > > After this it boots correct. > > How do i get the bootloader to boot 1:da(0,a)/boot/kernel directly? > > With regards Carl Gustavsson > > dmesg: > > Copyright (c) 1992-2005 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: Pentium III/Pentium III Xeon/Celeron (497.44-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x673 Stepping = 3 > > Features=0x383f9ff > > real memory = 402653184 (384 MB) > avail memory = 384335872 (366 MB) > 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 > pcib2: at device 15.0 on pci0 > pci2: on pcib2 > sym0: <895> port 0x1000-0x10ff mem > 0x40100000-0x40100fff,0x40300000-0x403000ff irq 10 at device 4.0 on pci2 > sym0: No NVRAM, ID 7, Fast-40, SE, parity checking > fxp0: port 0x1c00-0x1c1f mem > 0x40000000-0x400fffff,0x40500000-0x40500fff irq 10 at device 5.0 on pci2 > miibus0: on fxp0 > inphy0: on miibus0 > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > fxp0: Ethernet address: 00:50:8b:94:ab:35 > pci2: at device 6.0 (no driver attached) > pci2: at device 7.0 (no driver attached) > pci0: at device 16.0 (no driver attached) > isab0: at device 20.0 on pci0 > isa0: on isab0 > atapci0: port > 0x2060-0x206f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 20.1 on pci0 > ata0: channel #0 on atapci0 > ata1: channel #1 on atapci0 > uhci0: port 0x2040-0x205f irq > 10 at device 20.2 on pci0 > 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) > orm0: at iomem > 0xe0000-0xe7fff,0xc8000-0xcdfff,0xc0000-0xc7fff on isa0 > pmtimer0 on isa0 > atkbdc0: at port 0x64,0x60 on isa0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > fdc0: at port 0x3f0-0x3f5 irq 6 drq 2 on isa0 > 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=0x300> > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 16550A > sio1 at port 0x2f8-0x2ff irq 3 on isa0 > sio1: type 16550A > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > unknown: can't assign resources (port) > unknown: can't assign resources (port) > unknown: can't assign resources (port) > unknown: can't assign resources (port) > unknown: can't assign resources (port) > unknown: can't assign resources (port) > unknown: can't assign resources (port) > Timecounter "TSC" frequency 497435902 Hz quality 800 > Timecounters tick every 10.000 msec > ad0: 76319MB [155061/16/63] at ata0-master UDMA33 > ad2: 190782MB [387621/16/63] at > ata1-master UDMA33 > acd0: CDROM at ata1-slave PIO4 > Waiting 15 seconds for SCSI devices to settle > (noperiph:sym0:0:-1:-1): SCSI BUS mode change from SE to SE. > da0 at sym0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-2 device > da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing > Enabled > da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > Mounting root from ufs:/dev/da0s1a > > > > _______________________________________________ > 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" I recently installed FreeBSD on a Compaq ProLiant 350 and I experienced similar problems. I urge you to take a look into the BIOS/Firmware on the Motherboard. There you will have an option called Boot Device Order. Make sure that the SCSI controller channel with that system disk is set as the first boot device. Then you set up your OS to be of type Other (in BIOS). Save and exit the BIOS. From now on, you stay away from the BIOS. NOTE: You might want to disconnect ALL ide-disks (and CDROMs if you have a SCSI cdrom) if you are reinstalling. Finish the installation, and power down. Reconnect all IDE-devices, and boot up again. Continue to format and arrange the ide-drives as desired. Then install src distribution, recompile kernel and reboot. Good luck, and remember to drink a lot of coffee. ;-) Owe Jørgensen From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 19:00:28 2005 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 E4E9F16A428 for ; Sat, 15 Oct 2005 19:00:11 +0000 (GMT) (envelope-from cjgu@kth.se) Received: from mx2.kth.se (mx2.kth.se [130.237.48.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8CE43D49 for ; Sat, 15 Oct 2005 19:00:10 +0000 (GMT) (envelope-from cjgu@kth.se) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx2.kth.se (Postfix) with ESMTP id BA0B314132F for ; Sat, 15 Oct 2005 21:00:08 +0200 (CEST) Received: from mx2.kth.se ([127.0.0.1]) by localhost (mx2.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 15524-05-17 for ; Sat, 15 Oct 2005 21:00:03 +0200 (CEST) Received: from [192.168.0.6] (c213-100-49-147.swipnet.se [213.100.49.147]) by mx2.kth.se (Postfix) with ESMTP id A347B141300 for ; Sat, 15 Oct 2005 21:00:03 +0200 (CEST) Message-ID: <435151B6.5010805@kth.se> Date: Sat, 15 Oct 2005 21:00:06 +0200 From: Carl Gustavsson User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <43512F32.9050309@telia.com> <43514A9F.7000006@stud.ntnu.no> In-Reply-To: <43514A9F.7000006@stud.ntnu.no> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at kth.se Subject: Re: Boot manager 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: Sat, 15 Oct 2005 19:00:28 -0000 Owe Jørgensen wrote: > I recently installed FreeBSD on a Compaq ProLiant 350 and I > experienced similar problems. > > I urge you to take a look into the BIOS/Firmware on the Motherboard. > There you will have an option called Boot Device Order. > Make sure that the SCSI controller channel with that system disk is > set as the first boot device. Then you set up your OS to be of type > Other (in BIOS). Save and exit the BIOS. From now on, you stay away > from the BIOS. > > NOTE: You might want to disconnect ALL ide-disks (and CDROMs if you > have a SCSI cdrom) if you are reinstalling. > > Finish the installation, and power down. Reconnect all IDE-devices, > and boot up again. Continue to format and arrange the ide-drives as > desired. Then install src distribution, recompile kernel and reboot. > > Good luck, and remember to drink a lot of coffee. ;-) > > Owe Jørgensen > _______________________________________________ > 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" Hi, The problem is that there's not an option to select the scsi-controller as first boot device. I can boot on the scsi-disc but only if i don't have any IDE-discs in it. If I put in IDE-discs it tries to boot to the first IDE-disc. The BIOS is very limited in the ProLiant 400. FreeBSD is already installed on the machine and I don't need to reinstall it. The problem is only that it won't boot to the scsi disc if I dont write "1:da(0,a)/boot/loader" at the boot prompt every time i want to boot it. So I want the boot manager to boot to "1:da(0,a)/boot/loader" as default. / Carl Gustavsson From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 19:14:03 2005 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 AD5DB16A41F; Sat, 15 Oct 2005 19:14:03 +0000 (GMT) (envelope-from lefty@ene.asda.gr) Received: from mx3.asda.gr (ene.asda.gr [193.92.118.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AD2943D46; Sat, 15 Oct 2005 19:14:02 +0000 (GMT) (envelope-from lefty@ene.asda.gr) Received: by mx3.asda.gr (Postfix, from userid 58) id 421CA1148C; Sat, 15 Oct 2005 22:14:00 +0300 (EEST) X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on ene.asda.gr X-Spam-Level: X-Spam-Status: score=-103.8 autolearn=ham tests=ALL_TRUSTED,AWL,BAYES_00, USER_IN_WHITELIST Received: from [193.92.118.162] (lefty.ene.asda.gr [193.92.118.162]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Lefteris Tsintjelis", Issuer "ASDA Root CA" (verified OK)) by mx3.asda.gr (Postfix) with ESMTP id 0920C1142D; Sat, 15 Oct 2005 22:13:51 +0300 (EEST) Message-ID: <435154BA.8030307@ene.asda.gr> Date: Sat, 15 Oct 2005 22:12:58 +0300 From: Lefteris Tsintjelis Organization: ASDA User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-7; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Is rcorder working under /usr/local/etc/rc.d? 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: Sat, 15 Oct 2005 19:14:03 -0000 I am getting all these "no provider" and rcorder doesn't seem to work properly under /usr/local/etc/rc.d. Services seem to start alphabetically and not in the right order specified. The keywords REQUIRE, PROVIDE, BEFORE and KEYWORD seem to be ignored. Services like SERVERS, NETWORKING, LOGIN, etc, are all provided within /etc/rc.d. rcorder /usr/local/etc/rc.d/* rcorder: requirement `SERVERS' in file `squid.sh' has no providers. rcorder: requirement `NETWORKING' in file `squid.sh' has no providers. rcorder: requirement `DAEMON' in file `snmptrapd.sh' has no providers. rcorder: requirement `DAEMON' in file `snmpd.sh' has no providers. rcorder: requirement `LOGIN' in file `sa-spamd.sh' has no providers. rcorder: requirement `LOGIN' in file `rsyncd.sh' has no providers. rcorder: requirement `SERVERS' in file `radiusd.sh' has no providers. rcorder: requirement `NETWORKING' in file `radiusd.sh' has no providers. rcorder: requirement `NETWORKING' in file `pfspamd.sh' has no providers. rcorder: requirement `SERVERS' in file `mysql-server.sh' has no providers. rcorder: requirement `NETWORKING' in file `mysql-server.sh' has no providers. rcorder: requirement `DAEMON' in file `courier-authdaemond.sh' has no providers. rcorder: requirement `LOGIN' in file `courier-imap-pop3d.sh' has no providers. rcorder: requirement `LOGIN' in file `courier-imap-pop3d-ssl.sh' has no providers. rcorder: requirement `LOGIN' in file `courier-imap-imapd.sh' has no providers. rcorder: requirement `LOGIN' in file `courier-imap-imapd-ssl.sh' has no providers. rcorder: requirement `SERVERS' in file `apache2.sh' has no providers. rcorder: requirement `NETWORKING' in file `apache2.sh' has no providers. rcorder: requirement `ldconfig' in file `000.pkgtools.sh' has no providers. Am I doing something wrong or is this a problem? Please CC Thnx, Lefteris From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 20:40:39 2005 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 98AE316A41F for ; Sat, 15 Oct 2005 20:40:39 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D7F43D46 for ; Sat, 15 Oct 2005 20:40:32 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 10537 invoked by uid 207); 15 Oct 2005 20:40:30 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.30/3.97. Clear:RC:1(81.186.70.170):. Processed in 0.72635 secs); 15 Oct 2005 20:40:30 -0000 Received: from dialup170.ach.sch.gr (HELO flame.pc) ([81.186.70.170]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 15 Oct 2005 20:40:29 -0000 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id j9FKdALj060178; Sat, 15 Oct 2005 23:39:10 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id j9FKdAP2060177; Sat, 15 Oct 2005 23:39:10 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 15 Oct 2005 23:39:10 +0300 From: Giorgos Keramidas To: Lefteris Tsintjelis Message-ID: <20051015203910.GA60135@flame.pc> References: <435154BA.8030307@ene.asda.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435154BA.8030307@ene.asda.gr> Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Is rcorder working under /usr/local/etc/rc.d? 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: Sat, 15 Oct 2005 20:40:39 -0000 On 2005-10-15 22:12, Lefteris Tsintjelis wrote: > I am getting all these "no provider" and rcorder doesn't seem to work > properly under /usr/local/etc/rc.d. Services seem to start > alphabetically and not in the right order specified. The keywords > REQUIRE, PROVIDE, BEFORE and KEYWORD seem to be ignored. Services like > SERVERS, NETWORKING, LOGIN, etc, are all provided within /etc/rc.d. > > rcorder /usr/local/etc/rc.d/* > > rcorder: requirement `SERVERS' in file `squid.sh' has no providers. > rcorder: requirement `NETWORKING' in file `squid.sh' has no providers. > rcorder: requirement `DAEMON' in file `snmptrapd.sh' has no providers. [...] These look like stuff that is "provided" by /etc/rc.d/* scripts. Try including all the scripts in the rcorder command line: % flame:/home/keramida$ rcorder /usr/local/etc/rc.d/* >/dev/null % rcorder: file `/usr/local/etc/rc.d/samba.sh' is before unknown provision `DAEMON' % rcorder: requirement `named' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `SERVERS' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `NETWORKING' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/perforce.sh.sample' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/mysql.sh' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/000.pkgtools.sh' has no providers. % flame:/home/keramida$ rcorder /etc/rc.d/* /usr/local/etc/rc.d/* >/dev/null % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/newsyslog'. % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/syslogd'. From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 21:42:38 2005 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 BCEF016A41F; Sat, 15 Oct 2005 21:42:38 +0000 (GMT) (envelope-from lefty@ene.asda.gr) Received: from mx3.asda.gr (ene.asda.gr [193.92.118.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3503043D46; Sat, 15 Oct 2005 21:42:38 +0000 (GMT) (envelope-from lefty@ene.asda.gr) Received: by mx3.asda.gr (Postfix, from userid 58) id AFCC61148C; Sun, 16 Oct 2005 00:42:36 +0300 (EEST) X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on ene.asda.gr X-Spam-Level: X-Spam-Status: score=-103.8 autolearn=ham tests=ALL_TRUSTED,AWL,BAYES_00, USER_IN_WHITELIST Received: from [193.92.118.162] (lefty.ene.asda.gr [193.92.118.162]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Lefteris Tsintjelis", Issuer "ASDA Root CA" (verified OK)) by mx3.asda.gr (Postfix) with ESMTP id 3119C1142D; Sun, 16 Oct 2005 00:42:25 +0300 (EEST) Message-ID: <4351777A.3010203@ene.asda.gr> Date: Sun, 16 Oct 2005 00:41:14 +0300 From: Lefteris Tsintjelis Organization: ASDA User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Giorgos Keramidas References: <435154BA.8030307@ene.asda.gr> <20051015203910.GA60135@flame.pc> In-Reply-To: <20051015203910.GA60135@flame.pc> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Is rcorder working under /usr/local/etc/rc.d? 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: Sat, 15 Oct 2005 21:42:38 -0000 Giorgos Keramidas wrote: > > [...] > > These look like stuff that is "provided" by /etc/rc.d/* scripts. > > Try including all the scripts in the rcorder command line: > > % flame:/home/keramida$ rcorder /usr/local/etc/rc.d/* >/dev/null > % rcorder: file `/usr/local/etc/rc.d/samba.sh' is before unknown provision `DAEMON' > % rcorder: requirement `named' in file `/usr/local/etc/rc.d/samba.sh' has no providers. > % rcorder: requirement `SERVERS' in file `/usr/local/etc/rc.d/samba.sh' has no providers. > % rcorder: requirement `NETWORKING' in file `/usr/local/etc/rc.d/samba.sh' has no providers. > % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/perforce.sh.sample' has no providers. > % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/mysql.sh' has no providers. > % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/000.pkgtools.sh' has no providers. > > % flame:/home/keramida$ rcorder /etc/rc.d/* /usr/local/etc/rc.d/* >/dev/null > % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/newsyslog'. > % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/syslogd'. Gia sou Giorgo kai pali, That certainly fixes just about all of the "no providers" but the start up rcorder problem remains. To be more specific, I specify for a service this: # REQUIRE: mysql This service however still fails to start after MySQL and keeps on starting right before it. From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 21:51:45 2005 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 1882116A41F for ; Sat, 15 Oct 2005 21:51:45 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB3B643D46 for ; Sat, 15 Oct 2005 21:51:44 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id j9FLpbvL057740 for ; Sat, 15 Oct 2005 14:51:41 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200510152151.j9FLpbvL057740@gw.catspoiler.org> Date: Sat, 15 Oct 2005 14:51:37 -0700 (PDT) From: Don Lewis To: stable@FreeBSD.org MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: Subject: testers wanted for 5.4-STABLE sysctl kern.proc patch 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: Sat, 15 Oct 2005 21:51:45 -0000 The patch below is the 5.4-STABLE version of a patch that was recently committed to HEAD and 6.0-BETA5 to fix locking problems in the kern.proc sysctl handler that could cause panics or deadlocks. It has already been tested by myself and one other person in 5.4-STABLE, but I think it deserves wider testing before I commit it. Testing on SMP systems, while running threaded applications, and on systems that have experienced panics in the existing code is of the most interest. Also be on the lookout for any regressions, such as incorrect data being returned. Index: sys/kern/kern_proc.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_proc.c,v retrieving revision 1.215.2.6 diff -u -r1.215.2.6 kern_proc.c --- sys/kern/kern_proc.c 22 Mar 2005 13:40:23 -0000 1.215.2.6 +++ sys/kern/kern_proc.c 12 Oct 2005 19:13:14 -0000 @@ -72,6 +72,8 @@ static void doenterpgrp(struct proc *, struct pgrp *); static void orphanpg(struct pgrp *pg); +static void fill_kinfo_proc_only(struct proc *p, struct kinfo_proc *kp); +static void fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp); static void pgadjustjobc(struct pgrp *pgrp, int entering); static void pgdelete(struct pgrp *); static int proc_ctor(void *mem, int size, void *arg, int flags); @@ -601,33 +603,22 @@ } } #endif /* DDB */ -void -fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp); /* - * Fill in a kinfo_proc structure for the specified process. + * Clear kinfo_proc and fill in any information that is common + * to all threads in the process. * Must be called with the target process locked. */ -void -fill_kinfo_proc(struct proc *p, struct kinfo_proc *kp) -{ - fill_kinfo_thread(FIRST_THREAD_IN_PROC(p), kp); -} - -void -fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp) +static void +fill_kinfo_proc_only(struct proc *p, struct kinfo_proc *kp) { - struct proc *p; struct thread *td0; - struct ksegrp *kg; struct tty *tp; struct session *sp; struct timeval tv; struct ucred *cred; struct sigacts *ps; - p = td->td_proc; - bzero(kp, sizeof(*kp)); kp->ki_structsize = sizeof(*kp); @@ -685,7 +676,8 @@ kp->ki_tsize = vm->vm_tsize; kp->ki_dsize = vm->vm_dsize; kp->ki_ssize = vm->vm_ssize; - } + } else if (p->p_state == PRS_ZOMBIE) + kp->ki_stat = SZOMB; if ((p->p_sflag & PS_INMEM) && p->p_stats) { kp->ki_start = p->p_stats->p_start; timevaladd(&kp->ki_start, &boottime); @@ -704,71 +696,6 @@ kp->ki_nice = p->p_nice; bintime2timeval(&p->p_runtime, &tv); kp->ki_runtime = tv.tv_sec * (u_int64_t)1000000 + tv.tv_usec; - if (p->p_state != PRS_ZOMBIE) { -#if 0 - if (td == NULL) { - /* XXXKSE: This should never happen. */ - printf("fill_kinfo_proc(): pid %d has no threads!\n", - p->p_pid); - mtx_unlock_spin(&sched_lock); - return; - } -#endif - if (td->td_wmesg != NULL) { - strlcpy(kp->ki_wmesg, td->td_wmesg, - sizeof(kp->ki_wmesg)); - } - if (TD_ON_LOCK(td)) { - kp->ki_kiflag |= KI_LOCKBLOCK; - strlcpy(kp->ki_lockname, td->td_lockname, - sizeof(kp->ki_lockname)); - } - - if (p->p_state == PRS_NORMAL) { /* XXXKSE very approximate */ - if (TD_ON_RUNQ(td) || - TD_CAN_RUN(td) || - TD_IS_RUNNING(td)) { - kp->ki_stat = SRUN; - } else if (P_SHOULDSTOP(p)) { - kp->ki_stat = SSTOP; - } else if (TD_IS_SLEEPING(td)) { - kp->ki_stat = SSLEEP; - } else if (TD_ON_LOCK(td)) { - kp->ki_stat = SLOCK; - } else { - kp->ki_stat = SWAIT; - } - } else { - kp->ki_stat = SIDL; - } - - kg = td->td_ksegrp; - - /* things in the KSE GROUP */ - kp->ki_estcpu = kg->kg_estcpu; - kp->ki_slptime = kg->kg_slptime; - kp->ki_pri.pri_user = kg->kg_user_pri; - kp->ki_pri.pri_class = kg->kg_pri_class; - - /* Things in the thread */ - kp->ki_wchan = td->td_wchan; - kp->ki_pri.pri_level = td->td_priority; - kp->ki_pri.pri_native = td->td_base_pri; - kp->ki_lastcpu = td->td_lastcpu; - kp->ki_oncpu = td->td_oncpu; - kp->ki_tdflags = td->td_flags; - kp->ki_tid = td->td_tid; - kp->ki_numthreads = p->p_numthreads; - kp->ki_pcb = td->td_pcb; - kp->ki_kstack = (void *)td->td_kstack; - kp->ki_pctcpu = sched_pctcpu(td); - - /* We can't get this anymore but ps etc never used it anyway. */ - kp->ki_rqindex = 0; - - } else { - kp->ki_stat = SZOMB; - } mtx_unlock_spin(&sched_lock); tp = NULL; if (p->p_pgrp) { @@ -804,8 +731,6 @@ p->p_sysent->sv_name[0] != '\0') strlcpy(kp->ki_emul, p->p_sysent->sv_name, sizeof(kp->ki_emul)); kp->ki_siglist = p->p_siglist; - SIGSETOR(kp->ki_siglist, td->td_siglist); - kp->ki_sigmask = td->td_sigmask; kp->ki_xstat = p->p_xstat; kp->ki_acflag = p->p_acflag; kp->ki_lock = p->p_lock; @@ -813,6 +738,92 @@ kp->ki_ppid = p->p_pptr->p_pid; } +/* + * Fill in information that is thread specific. + * Must be called with sched_lock locked. + */ +static void +fill_kinfo_thread(struct thread *td, struct kinfo_proc *kp) +{ + struct ksegrp *kg; + struct proc *p; + + p = td->td_proc; + + if (td->td_wmesg != NULL) + strlcpy(kp->ki_wmesg, td->td_wmesg, sizeof(kp->ki_wmesg)); + else + bzero(kp->ki_wmesg, sizeof(kp->ki_wmesg)); + if (TD_ON_LOCK(td)) { + kp->ki_kiflag |= KI_LOCKBLOCK; + strlcpy(kp->ki_lockname, td->td_lockname, + sizeof(kp->ki_lockname)); + } else { + kp->ki_kiflag &= ~KI_LOCKBLOCK; + bzero(kp->ki_lockname, sizeof(kp->ki_lockname)); + } + + if (p->p_state == PRS_NORMAL) { /* XXXKSE very approximate */ + if (TD_ON_RUNQ(td) || + TD_CAN_RUN(td) || + TD_IS_RUNNING(td)) { + kp->ki_stat = SRUN; + } else if (P_SHOULDSTOP(p)) { + kp->ki_stat = SSTOP; + } else if (TD_IS_SLEEPING(td)) { + kp->ki_stat = SSLEEP; + } else if (TD_ON_LOCK(td)) { + kp->ki_stat = SLOCK; + } else { + kp->ki_stat = SWAIT; + } + } else { + kp->ki_stat = SIDL; + } + + kg = td->td_ksegrp; + + /* things in the KSE GROUP */ + kp->ki_estcpu = kg->kg_estcpu; + kp->ki_slptime = kg->kg_slptime; + kp->ki_pri.pri_user = kg->kg_user_pri; + kp->ki_pri.pri_class = kg->kg_pri_class; + + /* Things in the thread */ + kp->ki_wchan = td->td_wchan; + kp->ki_pri.pri_level = td->td_priority; + kp->ki_pri.pri_native = td->td_base_pri; + kp->ki_lastcpu = td->td_lastcpu; + kp->ki_oncpu = td->td_oncpu; + kp->ki_tdflags = td->td_flags; + kp->ki_tid = td->td_tid; + kp->ki_numthreads = p->p_numthreads; + kp->ki_pcb = td->td_pcb; + kp->ki_kstack = (void *)td->td_kstack; + kp->ki_pctcpu = sched_pctcpu(td); + + /* We can't get this anymore but ps etc never used it anyway. */ + kp->ki_rqindex = 0; + + SIGSETOR(kp->ki_siglist, td->td_siglist); + kp->ki_sigmask = td->td_sigmask; +} + +/* + * Fill in a kinfo_proc structure for the specified process. + * Must be called with the target process locked. + */ +void +fill_kinfo_proc(struct proc *p, struct kinfo_proc *kp) +{ + + fill_kinfo_proc_only(p, kp); + mtx_lock_spin(&sched_lock); + if (FIRST_THREAD_IN_PROC(p) != NULL) + fill_kinfo_thread(FIRST_THREAD_IN_PROC(p), kp); + mtx_unlock_spin(&sched_lock); +} + struct pstats * pstats_alloc(void) { @@ -875,24 +886,28 @@ PROC_LOCK_ASSERT(p, MA_OWNED); + fill_kinfo_proc_only(p, &kinfo_proc); if (flags & KERN_PROC_NOTHREADS) { - fill_kinfo_proc(p, &kinfo_proc); - PROC_UNLOCK(p); + mtx_lock_spin(&sched_lock); + if (FIRST_THREAD_IN_PROC(p) != NULL) + fill_kinfo_thread(FIRST_THREAD_IN_PROC(p), &kinfo_proc); + mtx_unlock_spin(&sched_lock); error = SYSCTL_OUT(req, (caddr_t)&kinfo_proc, sizeof(kinfo_proc)); - PROC_LOCK(p); } else { - _PHOLD(p); - FOREACH_THREAD_IN_PROC(p, td) { - fill_kinfo_thread(td, &kinfo_proc); - PROC_UNLOCK(p); + mtx_lock_spin(&sched_lock); + if (FIRST_THREAD_IN_PROC(p) != NULL) + FOREACH_THREAD_IN_PROC(p, td) { + fill_kinfo_thread(td, &kinfo_proc); + error = SYSCTL_OUT(req, (caddr_t)&kinfo_proc, + sizeof(kinfo_proc)); + if (error) + break; + } + else error = SYSCTL_OUT(req, (caddr_t)&kinfo_proc, sizeof(kinfo_proc)); - PROC_LOCK(p); - if (error) - break; - } - _PRELE(p); + mtx_unlock_spin(&sched_lock); } PROC_UNLOCK(p); if (error) @@ -934,6 +949,9 @@ if (oid_number == KERN_PROC_PID) { if (namelen != 1) return (EINVAL); + error = sysctl_wire_old_buffer(req, 0); + if (error) + return (error); p = pfind((pid_t)name[0]); if (!p) return (ESRCH); From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 22:07:25 2005 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 3374016A41F for ; Sat, 15 Oct 2005 22:07:25 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id B371743D49 for ; Sat, 15 Oct 2005 22:07:23 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 5278 invoked by uid 207); 15 Oct 2005 22:07:21 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.30/3.97. Clear:RC:1(81.186.70.170):. Processed in 0.42874 secs); 15 Oct 2005 22:07:21 -0000 Received: from dialup170.ach.sch.gr (HELO flame.pc) ([81.186.70.170]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 15 Oct 2005 22:07:20 -0000 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id j9FM61kM066827; Sun, 16 Oct 2005 01:06:01 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id j9FM61cZ066826; Sun, 16 Oct 2005 01:06:01 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 16 Oct 2005 01:06:01 +0300 From: Giorgos Keramidas To: Lefteris Tsintjelis Message-ID: <20051015220601.GA66787@flame.pc> References: <435154BA.8030307@ene.asda.gr> <20051015203910.GA60135@flame.pc> <4351777A.3010203@ene.asda.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4351777A.3010203@ene.asda.gr> Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Is rcorder working under /usr/local/etc/rc.d? 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: Sat, 15 Oct 2005 22:07:25 -0000 On 2005-10-16 00:41, Lefteris Tsintjelis wrote: > Giorgos Keramidas wrote: > >% flame:/home/keramida$ rcorder /etc/rc.d/* /usr/local/etc/rc.d/* >/dev/null > >% rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/newsyslog'. > >% rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/syslogd'. > > Gia sou Giorgo kai pali, Hehehe, "geia" :) > That certainly fixes just about all of the "no providers" but the start up > rcorder problem remains. To be more specific, I specify for a service this: > > # REQUIRE: mysql > > This service however still fails to start after MySQL and keeps on starting > right before it. Hmm, that's odd. Can I see the dependency lines of the two scripts and the output of rcorder? From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 22:24:40 2005 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 51D2216A41F for ; Sat, 15 Oct 2005 22:24:40 +0000 (GMT) (envelope-from jay@codegurus.org) Received: from ptb-relay01.plus.net (ptb-relay01.plus.net [212.159.14.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE46243D46 for ; Sat, 15 Oct 2005 22:24:39 +0000 (GMT) (envelope-from jay@codegurus.org) Received: from jayton.plus.com ([84.92.156.191] helo=[127.0.0.1]) by ptb-relay01.plus.net with esmtp (Exim) id 1EQuSC-0008CY-6M; Sat, 15 Oct 2005 23:24:36 +0100 Message-ID: <435181A1.1020306@codegurus.org> Date: Sat, 15 Oct 2005 23:24:33 +0100 From: Jayton Garnett User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Carl Gustavsson References: <43512F32.9050309@telia.com> <43514A9F.7000006@stud.ntnu.no> <435151B6.5010805@kth.se> In-Reply-To: <435151B6.5010805@kth.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Boot manager 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: Sat, 15 Oct 2005 22:24:40 -0000 Carl Gustavsson wrote: > > Hi, > > The problem is that there's not an option to select the > scsi-controller as first boot device. I can boot on the scsi-disc but > only if i don't have any IDE-discs in it. If I put in IDE-discs it > tries to boot to the first IDE-disc. The BIOS is very limited in the > ProLiant 400. > > FreeBSD is already installed on the machine and I don't need to > reinstall it. The problem is only that it won't boot to the scsi disc > if I dont write "1:da(0,a)/boot/loader" at the boot prompt every time > i want to boot it. So I want the boot manager to boot to > "1:da(0,a)/boot/loader" as default. > > / Carl Gustavsson > Have you tried another boot loader like GAG? I found it easy to install and use. I have it installed on a floppy with all my OS's config'd so I can either boot via the floppy or use the floppy to install it on the hard disk without any further configuration. http://gag.sourceforge.net Hope this helps Jayton From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 22:50:52 2005 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 A6F3716A41F for ; Sat, 15 Oct 2005 22:50:52 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from merke.itea.ntnu.no (merke.itea.ntnu.no [129.241.7.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A2E43D4C for ; Sat, 15 Oct 2005 22:50:51 +0000 (GMT) (envelope-from oweandre@stud.ntnu.no) Received: from localhost (localhost [127.0.0.1]) by merke.itea.ntnu.no (Postfix) with ESMTP id 6474713C51E for ; Sun, 16 Oct 2005 00:50:49 +0200 (CEST) Received: from [129.241.134.240] (m240g.studby.ntnu.no [129.241.134.240]) by merke.itea.ntnu.no (Postfix) with ESMTP for ; Sun, 16 Oct 2005 00:50:49 +0200 (CEST) Message-ID: <435187D0.8080804@stud.ntnu.no> Date: Sun, 16 Oct 2005 00:50:56 +0200 From: =?ISO-8859-1?Q?Owe_J=F8rgensen?= User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <43512F32.9050309@telia.com> <43514A9F.7000006@stud.ntnu.no> <435151B6.5010805@kth.se> In-Reply-To: <435151B6.5010805@kth.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Subject: Re: Boot manager 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: Sat, 15 Oct 2005 22:50:52 -0000 Carl Gustavsson wrote: > Owe Jørgensen wrote: > >> I recently installed FreeBSD on a Compaq ProLiant 350 and I >> experienced similar problems. >> >> I urge you to take a look into the BIOS/Firmware on the Motherboard. >> There you will have an option called Boot Device Order. >> Make sure that the SCSI controller channel with that system disk is >> set as the first boot device. Then you set up your OS to be of type >> Other (in BIOS). Save and exit the BIOS. From now on, you stay away >> from the BIOS. >> >> NOTE: You might want to disconnect ALL ide-disks (and CDROMs if you >> have a SCSI cdrom) if you are reinstalling. >> >> Finish the installation, and power down. Reconnect all IDE-devices, >> and boot up again. Continue to format and arrange the ide-drives as >> desired. Then install src distribution, recompile kernel and reboot. >> >> Good luck, and remember to drink a lot of coffee. ;-) >> >> Owe Jørgensen >> _______________________________________________ >> 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" > > > Hi, > > The problem is that there's not an option to select the scsi-controller > as first boot device. I can boot on the scsi-disc but only if i don't > have any IDE-discs in it. If I put in IDE-discs it tries to boot to the > first IDE-disc. The BIOS is very limited in the ProLiant 400. > > FreeBSD is already installed on the machine and I don't need to > reinstall it. The problem is only that it won't boot to the scsi disc if > I dont write "1:da(0,a)/boot/loader" at the boot prompt every time i > want to boot it. So I want the boot manager to boot to > "1:da(0,a)/boot/loader" as default. > > / Carl Gustavsson > _______________________________________________ > 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" Sorry for the late reply, but a cute lady tied me up for some hours ;-) this, if using english as the language in BIOS, should be located under the advanced menu. if not, then you can set the partitions on the IDE disks as not bootable. This can be done through sysinstall(8) and sysinstall's slice editor. When exiting the slice editor, remember to choose NO BOOTLOADER as the bootloader for the IDE disks. Then use the slice editor on the SCSI disk, and quit without doing any modifications to it, other that setting it bootable if nescessary. THEN choose the appropriate bootloader for the SCSI disk (I would choose the middle one (can't remember the name), since it will not prompt for any action during the boot process, which may be a good behaviour if you are having this computer running as some sort of server). Have fun, and don't drink too much coffee now ;-) Owe Jørgensen From owner-freebsd-stable@FreeBSD.ORG Sat Oct 15 23:46:49 2005 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 5256716A41F for ; Sat, 15 Oct 2005 23:46:49 +0000 (GMT) (envelope-from brett@lariat.net) Received: from lariat.net (lariat.net [65.122.236.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F46443D48 for ; Sat, 15 Oct 2005 23:46:48 +0000 (GMT) (envelope-from brett@lariat.net) Received: (from brett@localhost) by lariat.net (8.9.3/8.9.3) id RAA20742 for stable@freebsd.org; Sat, 15 Oct 2005 17:46:45 -0600 (MDT) Date: Sat, 15 Oct 2005 17:46:45 -0600 (MDT) From: Brett Glass Message-Id: <200510152346.RAA20742@lariat.net> To: stable@freebsd.org Cc: Subject: 6.0 release date and stability 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: Sat, 15 Oct 2005 23:46:49 -0000 The release schedule for FreeBSD 6.0, on the FreeBSD Web site, doesn't show a projected date for the finished product. How close is it? We are (believe it or not) still running and building production servers with 4.11, and would love to move to 6.0 (at least for uniprocessor systems; we may wait for 6.1 for SMP) if it is sufficiently stable and performs adequately. We're running our own tests on RC1, but don't have a lot of spare servers to try it on. So, it's worth asking: How stable is RC1 turning out to be on uniprocessor platforms? On SMP platforms? How is network and disk performance relative to 4.11? (When we tested 5.x, both network and file system performance were worse than that of 4.11.) With what known problems is 6.0 likely to ship, and of these which are likely to impact uniprocessor systems? Are any "showstopper" bugs merely being worked around for release? And, again, when is the likely release date? --Brett Glass