From owner-freebsd-current Sun Feb 9 1:23: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ABCD37B410 for ; Sun, 9 Feb 2003 01:23:05 -0800 (PST) Received: from naboo.blacktrap.net (212.68.218.22.brutele.be [212.68.218.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96F8243FBD for ; Sun, 9 Feb 2003 01:23:03 -0800 (PST) (envelope-from olinether@blacktrap.net) Received: from naboo.blacktrap.net (localhost [127.0.0.1]) by naboo.blacktrap.net (8.12.3/8.12.3) with ESMTP id h199N9Lc006885; Sun, 9 Feb 2003 10:23:09 +0100 (CET) (envelope-from olinether@naboo.blacktrap.net) Received: (from olinether@localhost) by naboo.blacktrap.net (8.12.3/8.12.3/Submit) id h199N8VO006884; Sun, 9 Feb 2003 10:23:08 +0100 (CET) Date: Sun, 9 Feb 2003 10:23:06 +0100 From: Olivier To: freebsd-current@freebsd.org Subject: Getting an OpenPAM module to work on 5.0-RELEASE Message-ID: <20030209102306.A6880@naboo.blacktrap.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm trying to write a MySQL authentication PAM module to be used with Cyrus-imapd2 and salsauthd, since pam-mysql is broken wrt OpenPAM. I started from the base modules source and added mysql code in it. The problem is to get the compiled shared library to work. The authentication always fail, not even loading the module with this error : saslauthd[94536]: in openpam_load_module(): no pam_sql.so found saslauthd[94536]: DEBUG: auth_pam: pam_start failed: failed to load module saslauthd[94536]: AUTHFAIL: user=oli service=imap realm= [PAM start error] I kept the structure of the pam_unix OpenPAM module and am using the following Makefile : LIB = pam_sql SHLIB_NAME = pam_sql.so SRCS = pam_sql.c CFLAGS += -I/usr/local/include DPADD = ${LIBCRYPT} LDADD = -lcrypt .include 'make' and make 'install' work fine, and put a pam_sql.so and a 'libpam_sql.a' file in /usr/lib. I tried every variation of this line in my /etc/pam.d/imap file to no avail : auth required pam_sql.so no_warn I always get the same kind of error, even when specifying the full path to the module in the /etc/pam.d/imap file. Looking at the source code for the openpam_load_module() and openpam_dynamic() functions revealed nothing weird. What is it I am doing wrong? I will be glad to provide more info if needed. Thanks a lot in advance for any ideas. (Please Cc: to me since I am not currently subscribed to -current) Olivier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 2: 4:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D8937B401 for ; Sun, 9 Feb 2003 02:04:23 -0800 (PST) Received: from blueyonder.co.uk (pcow035o.blueyonder.co.uk [195.188.53.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABAB143FBD for ; Sun, 9 Feb 2003 02:04:21 -0800 (PST) (envelope-from swat@swatweb.co.uk) Received: from tomato.home ([80.193.224.43]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.757.75); Sun, 9 Feb 2003 10:04:10 +0000 Received: by tomato.home (Postfix, from userid 1001) id 61EB5B882; Sun, 9 Feb 2003 10:05:12 +0000 (GMT) Date: Sun, 9 Feb 2003 10:05:12 +0000 From: Simon Watson To: freebsd-current@freebsd.org Subject: BuildKernel Error Message-ID: <20030209100512.GA80152@tomato.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm having some problems with buildkernel on the latest current from CVS: (Apolgies if the formatting comes out slightly munged) ===> lib/libgeom cc -O -pipe -mcpu=pentiumpro -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wno-uninitialized -c /usr/src/lib/libgeom/geom_stats.c -o geom_stats.o In file included from /usr/obj/usr/src/i386/usr/include/libgeom.h:34, from /usr/src/lib/libgeom/geom_stats.c:38: /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:44:field `it' has incomplete type /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:45:field `wentidle' has incomplete type /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:51:field `dt' has incomplete type *** Error code 1 Stop in /usr/src/lib/libgeom. *** Error code 1 Stop in /usr/src/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Any ideas what is the cause of this? Thanks Simon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 3:45: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 351B337B401 for ; Sun, 9 Feb 2003 03:44:59 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE26643F3F for ; Sun, 9 Feb 2003 03:44:57 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id WAA23231; Sun, 9 Feb 2003 22:39:45 +1100 Date: Sun, 9 Feb 2003 22:39:50 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: __semctl() prototype In-Reply-To: <20030208225930.GA31290@rot13.obsecurity.org> Message-ID: <20030209223344.P25436-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 8 Feb 2003, Kris Kennaway wrote: > Can someone take a look at lib/libc/gen/semctl.c and tell me where > the __semctl() sysctl should be prototyped? In , line __sysctl() is in . Similarly for any other unprototyped implementation-detail syscalls. __sysctl() seems to be another. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 3:48: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3697537B401 for ; Sun, 9 Feb 2003 03:47:54 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0038943FCB for ; Sun, 9 Feb 2003 03:47:52 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id WAA23820; Sun, 9 Feb 2003 22:47:43 +1100 Date: Sun, 9 Feb 2003 22:47:47 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: _fpathconf() and __semctl() prototypes In-Reply-To: <20030208230626.GA31434@rot13.obsecurity.org> Message-ID: <20030209224319.C25436-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 8 Feb 2003, Kris Kennaway wrote: > On Sat, Feb 08, 2003 at 02:59:30PM -0800, Kris Kennaway wrote: > > Can someone take a look at lib/libc/gen/semctl.c and tell me where > > the __semctl() sysctl should be prototyped? > > Also _fpathconf() in lib/libc/gen/statvfs.c _fpathconf() is quite different from __semctl. It is not a syscall. It is a weak alias for fpathconf() which is prototyped normally in . The prototype for fpathconf() should be turned into a prototype for _fpathconf() by "namespace.h", but statvfs.c is missing theinclude of so this doesn't happen. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 4:17:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEFBB37B401 for ; Sun, 9 Feb 2003 04:17:09 -0800 (PST) Received: from beast.freebsd.org (beast.freebsd.org [216.136.204.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EDA643F85 for ; Sun, 9 Feb 2003 04:17:09 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from beast.freebsd.org (localhost [127.0.0.1]) by beast.freebsd.org (8.12.6/8.12.6) with ESMTP id h19CH87h069842 for ; Sun, 9 Feb 2003 04:17:09 -0800 (PST) (envelope-from des@beast.freebsd.org) Received: (from des@localhost) by beast.freebsd.org (8.12.6/8.12.6/Submit) id h19CH8Pq069840 for current@freebsd.org; Sun, 9 Feb 2003 04:17:08 -0800 (PST) Date: Sun, 9 Feb 2003 04:17:08 -0800 (PST) From: Dag-Erling Smorgrav Message-Id: <200302091217.h19CH8Pq069840@beast.freebsd.org> To: current@freebsd.org Subject: alpha tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- >>> Kernel build for GENERIC started on Sun Feb 9 03:15:19 PST 2003 -------------------------------------------------------------- >>> Kernel build for GENERIC completed on Sun Feb 9 03:46:56 PST 2003 -------------------------------------------------------------- >>> Kernel build for LINT started on Sun Feb 9 03:46:56 PST 2003 -------------------------------------------------------------- ===> vinum "Makefile", line 4458: warning: duplicate script for target "geom_bsd.o" ignored /h/des/src/sys/dev/lmc/if_lmc.c:32:2: warning: #warning "The lmc driver is broken and is not compiled with LINT" /h/des/src/sys/dev/pdq/pdq.c: In function `pdq_initialize': /h/des/src/sys/dev/pdq/pdq.c:1606: warning: cast discards qualifiers from pointer target type /h/des/src/sys/pci/meteor.c:149:2: warning: #warning "The meteor driver is broken and is not compiled with LINT" /h/des/src/sys/pci/simos.c:30:2: warning: #warning "The simos driver is broken and is not compiled with LINT" /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_open': /h/des/src/sys/dev/gfb/gfb_pci.c:268: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:268: (Each undeclared identifier is reported only once /h/des/src/sys/dev/gfb/gfb_pci.c:268: for each function it appears in.) cc1: warnings being treated as errors /h/des/src/sys/dev/gfb/gfb_pci.c:275: warning: passing arg 1 of `genfbopen' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_close': /h/des/src/sys/dev/gfb/gfb_pci.c:284: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:285: warning: passing arg 1 of `genfbclose' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_read': /h/des/src/sys/dev/gfb/gfb_pci.c:293: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:294: warning: passing arg 1 of `genfbread' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_write': /h/des/src/sys/dev/gfb/gfb_pci.c:302: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:303: warning: passing arg 1 of `genfbwrite' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_ioctl': /h/des/src/sys/dev/gfb/gfb_pci.c:311: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:312: warning: passing arg 1 of `genfbioctl' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_mmap': /h/des/src/sys/dev/gfb/gfb_pci.c:320: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:321: warning: passing arg 1 of `genfbmmap' from incompatible pointer type *** Error code 1 Stop in /h/des/obj/h/des/src/sys/LINT. *** Error code 1 Stop in /h/des/src. *** Error code 1 Stop in /h/des/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 5:24:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0041237B401 for ; Sun, 9 Feb 2003 05:24:56 -0800 (PST) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2405F43FA3 for ; Sun, 9 Feb 2003 05:24:55 -0800 (PST) (envelope-from tmoestl@gmx.net) Received: (qmail 5310 invoked by uid 0); 9 Feb 2003 13:24:53 -0000 Received: from p508E6417.dip.t-dialin.net (HELO galatea.local) (80.142.100.23) by mail.gmx.net (mp022-rz3) with SMTP; 9 Feb 2003 13:24:53 -0000 Received: from tmm by galatea.local with local (Exim 4.12 #1) id 18hrUq-0000P6-00; Sun, 09 Feb 2003 14:27:48 +0100 Date: Sun, 9 Feb 2003 14:27:48 +0100 From: Thomas Moestl To: Tim Robbins Cc: Kris Kennaway , Morten Rodal , current@FreeBSD.org Subject: Re: Panic in fork() Message-ID: <20030209132747.GA638@crow.dom2ip.de> Mail-Followup-To: Tim Robbins , Kris Kennaway , Morten Rodal , current@FreeBSD.org References: <20030208092406.GA12104@rot13.obsecurity.org> <20030208110512.GB12696@rot13.obsecurity.org> <20030208141542.GC11725@slurp.rodal.no> <20030208151226.GB624@crow.dom2ip.de> <20030208220456.GB15257@rot13.obsecurity.org> <20030209143936.A2648@dilbert.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209143936.A2648@dilbert.robbins.dropbear.id.au> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 2003/02/09 at 14:39:36 +1100, Tim Robbins wrote: > On Sat, Feb 08, 2003 at 02:04:56PM -0800, Kris Kennaway wrote: > > > On Sat, Feb 08, 2003 at 04:12:26PM +0100, Thomas Moestl wrote: > > > > > addr2line will usually point to the first line of a statement if it > > > spans multiple lines; in this case, the full guard is: > > > > > > while (p2->p_pid == trypid || > > > p2->p_pgrp->pg_id == trypid || > > > p2->p_session->s_sid == trypid) { > > > > OK, I suspected that. > > > > tjr was looking into this last night and proposed the following patch: > > Alfred was the one who pointed out that holding proctree was probably > necessary, though :-) I don't really get why this is required - the pg_session pointer in struct pgrp is constant over the pgrp's lifetime, so for it to be invalid the wrong struct pgrp must be referenced; the p_pgrp pointer is protected by the process lock however, which is held for this check. - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 5:48:45 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6497E37B401; Sun, 9 Feb 2003 05:48:44 -0800 (PST) Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68F8943FAF; Sun, 9 Feb 2003 05:48:43 -0800 (PST) (envelope-from nyan@jp.FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by watery.cc.kogakuin.ac.jp (8.12.6/8.12.6) with ESMTP id h19DmaxR055494; Sun, 9 Feb 2003 22:48:36 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Sun, 09 Feb 2003 22:47:41 +0900 (JST) Message-Id: <20030209.224741.71137260.nyan@jp.FreeBSD.org> To: sos@FreeBSD.org, imp@FreeBSD.org, current@FreeBSD.org Subject: The cbus driver for pc98 From: Takahashi Yoshihiro X-Mailer: Mew version 3.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have made the cbus driver for pc98 based on i386 isa driver. This completely removes that PC98 depends on isa driver and also corrects directory layouts (pc98/i386 -> pc98/pc98 and pc98/pc98 -> pc98/cbus). The full patch can get from http://home.jp.FreeBSD.org/~nyan/patches/cbus.diff.gz Soeren, please review the ata part. http://home.jp.FreeBSD.org/~nyan/patches/cbus-ata.diff.gz Warner, please review the oldcard part. http://home.jp.FreeBSD.org/~nyan/patches/cbus-pccard.diff.gz If it has no problem, I'll commit after required repository copy. --- TAKAHASHI Yoshihiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 5:55:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B9B137B401; Sun, 9 Feb 2003 05:55:23 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A5E243F3F; Sun, 9 Feb 2003 05:55:16 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h19DtFe6081920; Sun, 9 Feb 2003 14:55:15 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302091355.h19DtFe6081920@spider.deepcore.dk> Subject: Re: The cbus driver for pc98 In-Reply-To: <20030209.224741.71137260.nyan@jp.FreeBSD.org> To: Takahashi Yoshihiro Date: Sun, 9 Feb 2003 14:55:15 +0100 (CET) Cc: sos@FreeBSD.ORG, imp@FreeBSD.ORG, current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Takahashi Yoshihiro wrote: > I have made the cbus driver for pc98 based on i386 isa driver. This > completely removes that PC98 depends on isa driver and also corrects > directory layouts (pc98/i386 -> pc98/pc98 and pc98/pc98 -> pc98/cbus). > Soeren, please review the ata part. > http://home.jp.FreeBSD.org/~nyan/patches/cbus-ata.diff.gz That looks good to me, it does conflict with my current ATA version soon to be released but I'll try to integrate it there as well. It would be nice if we could get rid of the old wd* crap at the same time, forcing user to the new system seems to be the only way to get me proper error reports :/ -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6: 6:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84FDD37B401 for ; Sun, 9 Feb 2003 06:06:12 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id A26D643F93 for ; Sun, 9 Feb 2003 06:06:11 -0800 (PST) (envelope-from nectar@celabo.org) Received: from opus.celabo.org (opus.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id BBC834; Sun, 9 Feb 2003 08:06:10 -0600 (CST) Received: by opus.celabo.org (Postfix, from userid 1001) id 66CAD5962; Sun, 9 Feb 2003 08:03:58 -0600 (CST) Date: Sun, 9 Feb 2003 08:03:57 -0600 From: "Jacques A. Vidrine" To: Terry Lambert Cc: David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? Message-ID: <20030209140357.GB67612@opus.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Terry Lambert , David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <3E45AD75.47C80368@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E45AD75.47C80368@mindspring.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 08, 2003 at 05:23:01PM -0800, Terry Lambert wrote: > The compiler > didn't complain when he checked it before committing it because > optimization was off by default; it should have complained, e.g.: ^^^^^^^^^^^^ Is that really what you meant? I don't believe it has anything to do with optimization; rather, it is to do with lack of `warning' flags. For example, if you build libc with WARNS=5 (so as to get the `-Wuninitialized' flag), then you get this warning. > "x.c:9:warning: `foo' might be used uninitialized in this function" Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6: 7:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCD7D37B401 for ; Sun, 9 Feb 2003 06:07:21 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4885243F75 for ; Sun, 9 Feb 2003 06:07:21 -0800 (PST) (envelope-from nectar@celabo.org) Received: from opus.celabo.org (opus.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id DEFCB4; Sun, 9 Feb 2003 08:07:20 -0600 (CST) Received: by opus.celabo.org (Postfix, from userid 1001) id 20D575962; Sun, 9 Feb 2003 08:05:09 -0600 (CST) Date: Sun, 9 Feb 2003 08:05:08 -0600 From: "Jacques A. Vidrine" To: David O'Brien Cc: freebsd-current@freebsd.org Subject: Re: Any chance of getting these OpenSSL warnings quieted? Message-ID: <20030209140508.GC67612@opus.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , David O'Brien , freebsd-current@freebsd.org References: <20030209003913.GA88948@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209003913.GA88948@dragon.nuxi.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 08, 2003 at 04:39:13PM -0800, David O'Brien wrote: > cc -pipe -O -march=athlon -D_IEEE_LIBM -D_ARCH_INDIRECT=i387_ -c /FBSD/src/lib/msun/src/e_gammaf_r.c -o e_gammaf_r.o > In file included from /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/e_os2.h:56, > from /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/symhacks.h:58, > from /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/crypto.h:78, > from /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/bio.h:67, > from /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/err.h:68, > from /FBSD/src/crypto/openssl/crypto/cpt_err.c:62: > /FBSD/obj/FBSD/src/secure/lib/libcrypto/openssl/opensslconf.h:177:1: warning: "OPENSSL_NO_KRB5" redefined > /FBSD/src/crypto/openssl/crypto/cpt_err.c:1:1: warning: this is the location of the previous definition Yes, I'll eliminate these today. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6:10:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F14CE37B401 for ; Sun, 9 Feb 2003 06:10:14 -0800 (PST) Received: from skywalker.creative.net.au (skywalker.creative.net.au [203.56.168.1]) by mx1.FreeBSD.org (Postfix) with SMTP id A793F43F3F for ; Sun, 9 Feb 2003 06:10:13 -0800 (PST) (envelope-from freebsd@skywalker.creative.net.au) Received: (qmail 64216 invoked by uid 1008); 9 Feb 2003 14:10:06 -0000 Date: Sun, 9 Feb 2003 22:10:06 +0800 From: Adrian Chadd To: David Schultz Cc: Terry Lambert , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? Message-ID: <20030209141006.GB33928@skywalker.creative.net.au> References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209002542.GA20812@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 08, 2003, David Schultz wrote: > Yes, the possibility of being bitten by compiler bugs is certainly > higher with higher optimization levels. Alpha with -O2 seems to > have been broken for years, and I have seen strange things happen > on IA64 as well. But the i386 code generators have received much > wider testing and debugging, so there is somewhat less danger there. Yet squid under i386 freebsd is .. well, finds -O bugs in gcc. We gave up trying -O under FreeBSD a long time ago. :-) (note: I've seen better performance gains by telling gcc exactly what CPU you have over -O65536 ..) Adrian -- Adrian Chadd learning is bad it just makes the people around you dumber (angryskul == alfred@irc) :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6:17:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ECAE37B401 for ; Sun, 9 Feb 2003 06:17:16 -0800 (PST) Received: from falcon.midgard.homeip.net (h76n3fls20o913.telia.com [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 2461043F3F for ; Sun, 9 Feb 2003 06:17:14 -0800 (PST) (envelope-from ertr1013@student.uu.se) Received: (qmail 35753 invoked by uid 1001); 9 Feb 2003 14:17:12 -0000 Date: Sun, 9 Feb 2003 15:17:12 +0100 From: Erik Trulsson To: "Jacques A. Vidrine" Cc: Terry Lambert , David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? Message-ID: <20030209141711.GA35708@falcon.midgard.homeip.net> Mail-Followup-To: "Jacques A. Vidrine" , Terry Lambert , David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <3E45AD75.47C80368@mindspring.com> <20030209140357.GB67612@opus.celabo.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209140357.GB67612@opus.celabo.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 08:03:57AM -0600, Jacques A. Vidrine wrote: > On Sat, Feb 08, 2003 at 05:23:01PM -0800, Terry Lambert wrote: > > The compiler > > didn't complain when he checked it before committing it because > > optimization was off by default; it should have complained, e.g.: > ^^^^^^^^^^^^ > Is that really what you meant? I don't believe it has anything to > do with optimization; rather, it is to do with lack of `warning' > flags. For example, if you build libc with WARNS=5 (so as to get the > `-Wuninitialized' flag), then you get this warning. > > > "x.c:9:warning: `foo' might be used uninitialized in this function" Some warnings are not generated unless you compile with optimization on. The reason for this is that to generate some of the warnings (for example about uninitialized variables) you need to do some dataflow analysis and gcc only does this when optimizing. Take for example this little program: #include int main(void) { int a; printf("%d\n",a); return 0; } When compiled using 'gcc -O0 -Wall' no warnings are generated. When compiled with 'gcc -O1 -Wall' you get a warning that 'a' might be used uninitalized. (This is the case for gcc 2.95.x at least. I believe the situation is the same with gcc 3.x) -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6:24:18 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA39F37B401 for ; Sun, 9 Feb 2003 06:24:16 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49E1843FAF for ; Sun, 9 Feb 2003 06:24:13 -0800 (PST) (envelope-from nectar@celabo.org) Received: from opus.celabo.org (opus.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id DA15BA3; Sun, 9 Feb 2003 08:24:12 -0600 (CST) Received: by opus.celabo.org (Postfix, from userid 1001) id 4D8435965; Sun, 9 Feb 2003 08:22:01 -0600 (CST) Date: Sun, 9 Feb 2003 08:22:01 -0600 From: "Jacques A. Vidrine" To: Terry Lambert , David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? Message-ID: <20030209142200.GH67612@opus.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Terry Lambert , David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <3E45AD75.47C80368@mindspring.com> <20030209140357.GB67612@opus.celabo.org> <20030209141711.GA35708@falcon.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209141711.GA35708@falcon.midgard.homeip.net> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 03:17:12PM +0100, Erik Trulsson wrote: > On Sun, Feb 09, 2003 at 08:03:57AM -0600, Jacques A. Vidrine wrote: > > On Sat, Feb 08, 2003 at 05:23:01PM -0800, Terry Lambert wrote: > > > The compiler > > > didn't complain when he checked it before committing it because > > > optimization was off by default; it should have complained, e.g.: > > ^^^^^^^^^^^^ > > Is that really what you meant? I don't believe it has anything to > > do with optimization; rather, it is to do with lack of `warning' > > flags. For example, if you build libc with WARNS=5 (so as to get the > > `-Wuninitialized' flag), then you get this warning. > > > > > "x.c:9:warning: `foo' might be used uninitialized in this function" > > Some warnings are not generated unless you compile with optimization > on. The reason for this is that to generate some of the warnings (for > example about uninitialized variables) you need to do some dataflow > analysis and gcc only does this when optimizing. > > Take for example this little program: > > #include > int main(void) > { > int a; > printf("%d\n",a); > return 0; > } > > When compiled using 'gcc -O0 -Wall' no warnings are generated. When > compiled with 'gcc -O1 -Wall' you get a warning that 'a' might be used > uninitalized. (This is the case for gcc 2.95.x at least. I believe the > situation is the same with gcc 3.x) Ah, I see. Yes, it is the case with gcc 3.x. cc1: warning: -Wuninitialized is not supported without -O I don't think I ever knew that. I should have tried it before posting, but the comment that the problem was that `optimization was off by default' threw me --- it is ON by default. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6:34:23 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1B8137B406 for ; Sun, 9 Feb 2003 06:34:22 -0800 (PST) Received: from mout2.freenet.de (mout2.freenet.de [194.97.50.155]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F5A143FA3 for ; Sun, 9 Feb 2003 06:34:16 -0800 (PST) (envelope-from ino-qc@spotteswoode.de.eu.org) Received: from [194.97.55.147] (helo=mx4.freenet.de) by mout2.freenet.de with asmtp (Exim 4.12) id 18hsX2-0000xi-00 for current@freebsd.org; Sun, 09 Feb 2003 15:34:08 +0100 Received: from pd9501627.dip.t-dialin.net ([217.80.22.39] helo=spotteswoode.dnsalias.org) by mx4.freenet.de with asmtp (ID inode@freenet.de) (Exim 4.12 #2) id 18hsX2-00085x-00 for current@freebsd.org; Sun, 09 Feb 2003 15:34:08 +0100 Received: (qmail 7769 invoked by uid 0); 9 Feb 2003 14:34:07 -0000 Date: 9 Feb 2003 15:34:07 +0100 Message-ID: <8ywpr09s.fsf@ID-23066.news.dfncis.de> From: "clemens fischer" To: "Auge Mike" Cc: current@freebsd.org Subject: Re: printf....! References: In-Reply-To: ("Auge Mike"'s message of "Sun, 09 Feb 2003 02:12:49 +0400") User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i386-unknown-freebsd4.6.2) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Auge Mike" : > I was trying to know how "printf" works in FreeBSD... I hvae reached > to this point : > > #define _write(fd, s, n) \ > __syscall(SYS_write, (int)(fd), (const void *)(s), (size_t)(n)) if your program runs in user-space, try strace(1) or ktrace(1). clemens To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 6:44: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4F6D37B401; Sun, 9 Feb 2003 06:44:04 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2632C43FA3; Sun, 9 Feb 2003 06:44:01 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0071.cvx40-bradley.dialup.earthlink.net ([216.244.42.71] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18hsgZ-0001oG-00; Sun, 09 Feb 2003 06:44:00 -0800 Message-ID: <3E4668D8.72B6279E@mindspring.com> Date: Sun, 09 Feb 2003 06:42:32 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: "Jacques A. Vidrine" Cc: David Schultz , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <3E45AD75.47C80368@mindspring.com> <20030209140357.GB67612@opus.celabo.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4ef1382813306fd091c7b028d8bfe952f350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Jacques A. Vidrine" wrote: > On Sat, Feb 08, 2003 at 05:23:01PM -0800, Terry Lambert wrote: > > The compiler > > didn't complain when he checked it before committing it because > > optimization was off by default; it should have complained, e.g.: > ^^^^^^^^^^^^ > Is that really what you meant? I don't believe it has anything to > do with optimization; rather, it is to do with lack of `warning' > flags. For example, if you build libc with WARNS=5 (so as to get the > `-Wuninitialized' flag), then you get this warning. > > > "x.c:9:warning: `foo' might be used uninitialized in this function" Uh... cc -Wall -Wuninitialized -O0 x.c "cc1: warning: -Wuninitialized is not supported without -O" 8-) 8-). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 7: 1:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E313A37B401; Sun, 9 Feb 2003 07:01:26 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4007843F3F; Sun, 9 Feb 2003 07:01:26 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h19F1KoH002301; Sun, 9 Feb 2003 07:01:20 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h19F1Kj8002300; Sun, 9 Feb 2003 07:01:20 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Date: Sun, 9 Feb 2003 07:01:20 -0800 From: David Schultz To: Adrian Chadd Cc: Terry Lambert , Ray Kohler , freebsd-current@freebsd.org Subject: Re: Compiling with high optimization? Message-ID: <20030209150120.GA2263@HAL9000.homeunix.com> Mail-Followup-To: Adrian Chadd , Terry Lambert , Ray Kohler , freebsd-current@freebsd.org References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209141006.GB33928@skywalker.creative.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209141006.GB33928@skywalker.creative.net.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Adrian Chadd : > On Sat, Feb 08, 2003, David Schultz wrote: > > > Yes, the possibility of being bitten by compiler bugs is certainly > > higher with higher optimization levels. Alpha with -O2 seems to > > have been broken for years, and I have seen strange things happen > > on IA64 as well. But the i386 code generators have received much > > wider testing and debugging, so there is somewhat less danger there. > > Yet squid under i386 freebsd is .. well, finds -O bugs in gcc. > We gave up trying -O under FreeBSD a long time ago. :-) The last time someone told me, ``gcc -O is broken'', it turned out that they were doing some stack fiddling, and gcc's optimizations broke their faulty assumptions. On the other hand, I'm sure gcc -O does have bugs. Do you have an example snippet that gets miscompiled? > (note: I've seen better performance gains by telling gcc exactly what > CPU you have over -O65536 ..) Strangely, gcc in FreeBSD 5.0 actually generates *slower* code when compiling for more recent architectures than when compiling for a 386. I don't know whether that is a bug in gcc or whether gcc is using some fancy feature like SSE that the kernel handles poorly on context switches. I think there was some discussion on the lists about it earlier. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 7:17:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A25537B406 for ; Sun, 9 Feb 2003 07:17:09 -0800 (PST) Received: from mail.gmx.net (mail.gmx.net [213.165.65.60]) by mx1.FreeBSD.org (Postfix) with SMTP id D454143FA3 for ; Sun, 9 Feb 2003 07:17:07 -0800 (PST) (envelope-from mdcki@gmx.net) Received: (qmail 8925 invoked by uid 0); 9 Feb 2003 15:17:06 -0000 Received: from cvpn017.gwdg.de (HELO gmx.net) (134.76.22.17) by mail.gmx.net (mp008-rz3) with SMTP; 9 Feb 2003 15:17:06 -0000 Message-ID: <3E4671E6.8090000@gmx.net> Date: Sun, 09 Feb 2003 16:21:10 +0100 From: Marcin Dalecki User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021230 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Schultz Cc: Adrian Chadd , Terry Lambert , Ray Kohler , freebsd-current@freebsd.org Subject: Re: Compiling with high optimization? References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209141006.GB33928@skywalker.creative.net.au> <20030209150120.GA2263@HAL9000.homeunix.com> In-Reply-To: <20030209150120.GA2263@HAL9000.homeunix.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David Schultz wrote: > Strangely, gcc in FreeBSD 5.0 actually generates *slower* code > when compiling for more recent architectures than when compiling > for a 386. I don't know whether that is a bug in gcc or whether > gcc is using some fancy feature like SSE that the kernel handles > poorly on context switches. I think there was some discussion on > the lists about it earlier. The reason is that the optimization done by GCC are ill balanced. All the scheduling of instractions and what a not - which would be fine on a micro scope level is causing so much higher pressure on the CPUs caches that the code is actually loosing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 7:28:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B900137B401; Sun, 9 Feb 2003 07:28:38 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 210D443F3F; Sun, 9 Feb 2003 07:28:38 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h19FSaoH002391; Sun, 9 Feb 2003 07:28:36 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h19FSaCH002390; Sun, 9 Feb 2003 07:28:36 -0800 (PST) (envelope-from dschultz@uclink.berkeley.edu) Date: Sun, 9 Feb 2003 07:28:36 -0800 From: David Schultz To: Marcin Dalecki Cc: Adrian Chadd , Terry Lambert , Ray Kohler , freebsd-current@freebsd.org Subject: Re: Compiling with high optimization? Message-ID: <20030209152836.GB1390@HAL9000.homeunix.com> Mail-Followup-To: Marcin Dalecki , Adrian Chadd , Terry Lambert , Ray Kohler , freebsd-current@freebsd.org References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209141006.GB33928@skywalker.creative.net.au> <20030209150120.GA2263@HAL9000.homeunix.com> <3E4671E6.8090000@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E4671E6.8090000@gmx.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Marcin Dalecki : > David Schultz wrote: > > >Strangely, gcc in FreeBSD 5.0 actually generates *slower* code > >when compiling for more recent architectures than when compiling > >for a 386. I don't know whether that is a bug in gcc or whether > >gcc is using some fancy feature like SSE that the kernel handles > >poorly on context switches. I think there was some discussion on > >the lists about it earlier. > The reason is that the optimization done by GCC are ill balanced. > All the scheduling of instractions and what a not - which would be > fine on a micro scope level is causing so much higher pressure > on the CPUs caches that the code is actually loosing. Interesting. So they redid the code generation for gcc 3 and their new tricks backfired. But at least they fixed the completely braindead things gcc 2.9x was doing with alignment, floating point, and combinations thereof, and they got the compiler to do more reasonable things on ia64. Any idea when they will have fixed the i386 anti-optimizations? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 7:42:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B527537B401 for ; Sun, 9 Feb 2003 07:42:07 -0800 (PST) Received: from is1.mh.itc.u-tokyo.ac.jp (is1.mh.itc.u-tokyo.ac.jp [133.11.205.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DDED43F3F for ; Sun, 9 Feb 2003 07:42:06 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from is1.mh.itc.u-tokyo.ac.jp (is1.mh.itc.u-tokyo.ac.jp [127.0.0.1]) by is1.mh.itc.u-tokyo.ac.jp (Postfix) with ESMTP id 332E22180DC for ; Mon, 10 Feb 2003 00:41:59 +0900 (JST) Received: from mailhosting.itc.u-tokyo.ac.jp (IDENT:mirapoint@mailhosting.itc.u-tokyo.ac.jp [133.11.205.3]) by is1.mh.itc.u-tokyo.ac.jp (8.11.3/8.11.3) with ESMTP id h19Ffwc19341; Mon, 10 Feb 2003 00:41:58 +0900 Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.135.3]) by mailhosting.itc.u-tokyo.ac.jp (Mirapoint Messaging Server MOS 2.9.3.2) with ESMTP id AHV09503; Mon, 10 Feb 2003 00:41:55 +0900 (JST) Date: Mon, 10 Feb 2003 00:41:55 +0900 Message-ID: From: Hidetoshi Shimokawa To: "M. Warner Losh" Cc: Andrea Campi , current@FreeBSD.ORG Subject: Re: firewire hangs on Thinkpad In-Reply-To: References: <20030124144823.GA600@webcom.it> <20030125.115501.13766238.imp@bsdimp.com> <20030129114951.GA3635@webcom.it> User-Agent: Wanderlust/2.11.0 (Wonderwall) REMI/1.14.3 (Matsudai) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.4 (patch 8) (Honest Recruiter) (i386--freebsd) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7: #j7i14gu$jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Warner-san, I confirmed that the following problem occurs not only for fwochi but also for if_rl, if_xl, if_dc and ahc_pci. After "kldload if_rl", I got wi0 timeout. (I don't even have those hardware.) All drivers above supports both pci and cardbus... Do you have any idea? /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html At Thu, 30 Jan 2003 01:25:19 +0900, Hidetoshi Shimokawa wrote: > > At Wed, 29 Jan 2003 12:49:51 +0100, > Andrea Campi wrote: > > > > On Sat, Jan 25, 2003 at 11:55:01AM -0700, M. Warner Losh wrote: > > > This sounds like it might be an interrupt storm. I'm not sure if the > > > fwohci driver is failing to clear an interrupt source, or if the > > > cardbus bridge is failing. Have you connected a fw device to the > > > firewire card? > > > > I've been able to run a few more tests, even though I've not done abused > > it in every way I have in my mind yet... > > > > The evidence I currently have is: > > - if I load the modules at loader time everything is fine, with or without > > a device attached > > - if I load the modules later on, the kldload doesn't return and the system > > stops responding; I can still enter DDB. The only way to recover from that is > > to eject the card; at that point, the system is usable BUT as soon as there > > is network activity, the system freezes hard (can't get to DDB). > > > > IMHO this is 100% an interrupt problem. Does this ring a bell with one of you, > > or should I provide more info? > > I have another strange firewire and cardbus/pccard interaction. > If I load firewire module while I'm using wi0 in cardbus slot, > the wi0 stop its work and output following messages. > (In my laptop, fwohci is on PCI.) > > wi0: xmit failed > wi0: timeout in wi_cmd 0x010b; event status 0x0000 > ... > > > Even if I replace fwochi_pci_attach() with one line 'return EIO' > (i.e. the doesn't anything), the problem still happens. > > I think this is not a problem of fwohci. > Maybe PCI or Cardbus/PCcard or kldload problem? > > > > /\ Hidetoshi Shimokawa > \/ simokawa@sat.t.u-tokyo.ac.jp > PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 7:51:23 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19E6037B401 for ; Sun, 9 Feb 2003 07:51:22 -0800 (PST) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E45B43F75 for ; Sun, 9 Feb 2003 07:51:21 -0800 (PST) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) by alpha.siliconlandmark.com (8.12.6/8.12.6) with ESMTP id h19FpFmF031475; Sun, 9 Feb 2003 10:51:15 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by alpha.siliconlandmark.com (8.12.6/8.12.6/Submit) with ESMTP id h19FpF12031472; Sun, 9 Feb 2003 10:51:15 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Sun, 9 Feb 2003 10:51:15 -0500 (EST) From: Andre Guibert de Bruet To: Cyril Niklaus Cc: freebsd-current@FreeBSD.ORG Subject: Re: xunpcb size mismatch In-Reply-To: <20030207164827.5c8ae4d0.freecynik@gmx.net> Message-ID: <20030209104955.Y17292@alpha.siliconlandmark.com> References: <20030202.065732.108375307.imp@bsdimp.com> <20030203223137.0825A5D04@ptavv.es.net> <20030207164827.5c8ae4d0.freecynik@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 7 Feb 2003, Cyril Niklaus wrote: > I've just cvsup'd and when booting I have this warning that I do not understand > uname -a > FreeBSD princess.wokonet.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Fri Feb 7 14:40:51 JST 2003 cyril@princess.wokonet.jp:/usr/obj/usr/src/sys/KERNEL2 i386 > > and the message is : sockstat: struct xunpcb size mismatch. > What causes this? Google comes with nothing really. > Thanks > Cyril Cyril, It appears that your userland binaries are out of sync with your kernel. Rebuild world (and possibly your kernel) to fix the issue. Regards, > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 8: 1:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD83837B401 for ; Sun, 9 Feb 2003 08:01:37 -0800 (PST) Received: from skywalker.creative.net.au (skywalker.creative.net.au [203.56.168.1]) by mx1.FreeBSD.org (Postfix) with SMTP id 82CDE43F75 for ; Sun, 9 Feb 2003 08:01:36 -0800 (PST) (envelope-from freebsd@skywalker.creative.net.au) Received: (qmail 66532 invoked by uid 1008); 9 Feb 2003 16:01:32 -0000 Date: Mon, 10 Feb 2003 00:01:32 +0800 From: Adrian Chadd To: Terry Lambert , Ray Kohler , freebsd-current@freebsd.org Subject: Re: Compiling with high optimization? Message-ID: <20030209160132.GC33928@skywalker.creative.net.au> References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209141006.GB33928@skywalker.creative.net.au> <20030209150120.GA2263@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209150120.GA2263@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003, David Schultz wrote: > > Yet squid under i386 freebsd is .. well, finds -O bugs in gcc. > > We gave up trying -O under FreeBSD a long time ago. :-) > > The last time someone told me, ``gcc -O is broken'', it turned out > that they were doing some stack fiddling, and gcc's optimizations > broke their faulty assumptions. On the other hand, I'm sure gcc -O > does have bugs. Do you have an example snippet that gets miscompiled? Err, grab the squid24 port, hack the configure script to remove the bit where it removes -O for FreeBSD, compile, install, run. It should die quite quickly after you submit a HTTP request which requires a DNS lookup - GCC generates an xor %eax, %eax at the beginning of a function which NULLs a pointer - that we're not NULLing. :-) Adrian -- Adrian Chadd learning is bad it just makes the people around you dumber (angryskul == alfred@irc) :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 8: 6:36 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FE0937B401 for ; Sun, 9 Feb 2003 08:06:35 -0800 (PST) Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 738FC43FCB for ; Sun, 9 Feb 2003 08:06:34 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd07.sul.t-online.de by mailout02.sul.t-online.com with smtp id 18htyT-0002J7-05; Sun, 09 Feb 2003 17:06:33 +0100 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[80.131.118.1]) by fmrl07.sul.t-online.com with esmtp id 18htyF-1G9BkOC; Sun, 9 Feb 2003 17:06:19 +0100 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) by Andro-Beta.Leidinger.net (8.12.6/8.12.6) with ESMTP id h19G6H8Z000440 for ; Sun, 9 Feb 2003 17:06:18 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.6/8.12.6) with SMTP id h19G6HRp000857 for ; Sun, 9 Feb 2003 17:06:18 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sun, 9 Feb 2003 17:06:16 +0100 From: Alexander Leidinger To: current@freebsd.org Subject: Do we still have a FIFO / named pipe problem? Message-Id: <20030209170616.2e4e3635.Alexander@Leidinger.net> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, ports/mail/gensig has a problem. It is supposed to create a named pipe (~/.signature) and wait for an application to read from the pipe. It allows to have a random signature on every mail. On 4.x and on 5-current from last year it works as expected. But since the end of the last year or the begin of this year it doesn't anymore. gensig daemonizes itself fills the named pipe and then terminates. The content of the named pipe stays the same for every mail (no wonder, gensig is gone). Bye, Alexander. -- Speak softly and carry a cellular phone. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 8:24:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D49E37B401 for ; Sun, 9 Feb 2003 08:24:38 -0800 (PST) Received: from storming.org (MG034063.user.veloxzone.com.br [200.165.34.63]) by mx1.FreeBSD.org (Postfix) with SMTP id 0854143F85 for ; Sun, 9 Feb 2003 08:24:37 -0800 (PST) (envelope-from fred@storming.org) Received: (qmail 2301 invoked by uid 1000); 9 Feb 2003 14:24:24 -0200 Date: Sun, 9 Feb 2003 14:24:24 -0200 From: Fred Souza To: Alexander Leidinger Cc: current@FreeBSD.ORG Subject: Re: Do we still have a FIFO / named pipe problem? Message-ID: <20030209162424.GA1983@torment.storming.org> Reply-To: fred@storming.org References: <20030209170616.2e4e3635.Alexander@Leidinger.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: <20030209170616.2e4e3635.Alexander@Leidinger.net> X-Sender: fred@storming.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > Hi, >=20 > ports/mail/gensig has a problem. It is supposed to create a named pipe > (~/.signature) and wait for an application to read from the pipe. It > allows to have a random signature on every mail. On 4.x and on 5-current > from last year it works as expected. But since the end of the last year > or the begin of this year it doesn't anymore. gensig daemonizes itself > fills the named pipe and then terminates. The content of the named pipe > stays the same for every mail (no wonder, gensig is gone). I had the same problem with signify (which is not on ports). My fix for it was to force open() to open the file for both read and write (signify is a Perl script). I can send the patch if you need to see what I actually did. Fred --=20 "Death is only a state of mind. Only it doesn't leave you much time to think about anything else." --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+RoC4KbRS1GgW4fYRAp3xAJ4lA9doM8Dty7aVgvZMePJBgGMT1ACgga17 6lX0Oy0b4KW8MheO7wZzopI= =3Ya0 -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 8:35:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2951D37B401 for ; Sun, 9 Feb 2003 08:35:50 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BD9043F85 for ; Sun, 9 Feb 2003 08:35:49 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h19GZOqV029770; Sun, 9 Feb 2003 17:35:43 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: fred@storming.org Cc: Alexander Leidinger , current@FreeBSD.ORG Subject: Re: Do we still have a FIFO / named pipe problem? From: phk@phk.freebsd.dk In-Reply-To: Your message of "Sun, 09 Feb 2003 14:24:24 -0200." <20030209162424.GA1983@torment.storming.org> Date: Sun, 09 Feb 2003 17:35:24 +0100 Message-ID: <29769.1044808524@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yes, we do have FIFO/named pipe problems in -current. I committed a workaround to prevent one particular condition under which my diskless box would hang forever in sendmail processing in /etc/rc by setting a 1 sec timeout on the sleep it hung in. This is nowhere near correct as pointed out by Bruce, but at least my machine boots. I don't know what the bug is, Alfred looked at it some, but the patch he came up with did not work on my machine. I belive the issue rests there. Poul-Henning In message <20030209162424.GA1983@torment.storming.org>, Fred Souza writes: > >--GvXjxJ+pjyke8COw >Content-Type: text/plain; charset=us-ascii >Content-Disposition: inline >Content-Transfer-Encoding: quoted-printable > >> Hi, >>=20 >> ports/mail/gensig has a problem. It is supposed to create a named pipe >> (~/.signature) and wait for an application to read from the pipe. It >> allows to have a random signature on every mail. On 4.x and on 5-current >> from last year it works as expected. But since the end of the last year >> or the begin of this year it doesn't anymore. gensig daemonizes itself >> fills the named pipe and then terminates. The content of the named pipe >> stays the same for every mail (no wonder, gensig is gone). > > I had the same problem with signify (which is not on ports). My fix > for it was to force open() to open the file for both read and write > (signify is a Perl script). I can send the patch if you need to see > what I actually did. > > > Fred > > >--=20 >"Death is only a state of mind. >Only it doesn't leave you much time to think about anything else." > >--GvXjxJ+pjyke8COw >Content-Type: application/pgp-signature >Content-Disposition: inline > >-----BEGIN PGP SIGNATURE----- >Version: GnuPG v1.2.1 (FreeBSD) > >iD8DBQE+RoC4KbRS1GgW4fYRAp3xAJ4lA9doM8Dty7aVgvZMePJBgGMT1ACgga17 >6lX0Oy0b4KW8MheO7wZzopI= >=3Ya0 >-----END PGP SIGNATURE----- > >--GvXjxJ+pjyke8COw-- > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 8:39: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1190C37B401 for ; Sun, 9 Feb 2003 08:38:59 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2303843FA3 for ; Sun, 9 Feb 2003 08:38:58 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h19Gcu3Y067881; Sun, 9 Feb 2003 09:38:56 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 09 Feb 2003 09:36:00 -0700 (MST) Message-Id: <20030209.093600.122405559.imp@bsdimp.com> To: bright@mu.org Cc: current@FreeBSD.ORG Subject: Re: syslog bug From: "M. Warner Losh" In-Reply-To: <20030208210824.GK88781@elvis.mu.org> References: <20030208210824.GK88781@elvis.mu.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20030208210824.GK88781@elvis.mu.org> Alfred Perlstein writes: : syslog(3) botches things if you pass it a string that has "%%m" in it. : this should fix it, any comments? : : Index: syslog.c : =================================================================== : RCS file: /home/ncvs/src/lib/libc/gen/syslog.c,v : retrieving revision 1.28 : diff -u -r1.28 syslog.c : --- syslog.c 14 Nov 2002 12:40:14 -0000 1.28 : +++ syslog.c 8 Feb 2003 21:08:09 -0000 : @@ -190,12 +190,18 @@ : } : : /* Substitute error message for %m. */ : - for ( ; (ch = *fmt); ++fmt) : + for ( ; (ch = *fmt); ++fmt) { : if (ch == '%' && fmt[1] == 'm') { : ++fmt; : fputs(strerror(saved_errno), fmt_fp); : - } else : + } else if (ch == '%' && fmt[1] == '%') { : + ++fmt; : + fputc(ch, fmt_fp); : + fputc(ch, fmt_fp); : + } else { : fputc(ch, fmt_fp); : + } : + } : : /* Null terminate if room */ : fputc(0, fmt_fp); : With the above fix, "fred %%m" will produce 'fred %%ERRNO-ERROR-MESSAGE' would it not? Isn't there one too many fputc(ch, fmt_fp) in the case where you detect %%? + ++fmt; + fputc(ch, fmt_fp); instead in the '%%' if statement. This would print only one '%' ala printf. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9: 9:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E28837B401 for ; Sun, 9 Feb 2003 09:09:56 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8077143F3F for ; Sun, 9 Feb 2003 09:09:55 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h19H9n3Y067993; Sun, 9 Feb 2003 10:09:54 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 09 Feb 2003 10:06:54 -0700 (MST) Message-Id: <20030209.100654.133045082.imp@bsdimp.com> To: simokawa@sat.t.u-tokyo.ac.jp Cc: andrea@webcom.it, current@FreeBSD.ORG Subject: Re: firewire hangs on Thinkpad From: "M. Warner Losh" In-Reply-To: References: <20030129114951.GA3635@webcom.it> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG P.S. With full debugs hw.cbb.debug: 1 hw.cardbus.debug: 1 hw.cardbus.cis_debug: 1 hw.pccard.debug: 1 hw.pccard.cis_debug: 1 I see the following sequence of events in my /var/log/messages: Feb 9 09:52:35 hammer sudo: imp : TTY=ttyp1 ; PWD=/dell/imp ; USER=root ; COMMAND=/sbin/kldload if_rl Feb 9 09:52:40 hammer kernel: cbb_pcic_socket_enable: Feb 9 09:52:40 hammer kernel: cbb1: cbb_power: CARD_VCC_0V and CARD_VPP_0V [44] Feb 9 09:52:40 hammer kernel: cbb1: cbb_power: CARD_VCC_5V and CARD_VPP_VCC [15 ] Feb 9 09:52:40 hammer kernel: an0: RID access failed Most cards do *NOT* like being turned off. This suggests that the following code may be wrong: static void cardbus_driver_added(device_t cbdev, driver_t *driver) { ... device_get_children(cbdev, &devlist, &numdevs); DEVICE_IDENTIFY(driver, cbdev); --> POWER_ENABLE_SOCKET(device_get_parent(cbdev), cbdev); for (tmp = 0; tmp < numdevs; tmp++) { if (device_get_state(devlist[tmp]) == DS_NOTPRESENT) { dinfo = device_get_ivars(devlist[tmp]); ... } At a guess, the POWER_ENABLE_SOCKET should be done later. Or maybe not even at all (the pccard code that does this works :-). In fact, I'm positive that this is what's causing the breakage. Maybe something more like the following would be closer to correct: static void cardbus_driver_added(device_t cbdev, driver_t *driver) { int numdevs; device_t *devlist; int tmp; struct cardbus_devinfo *dinfo; DEVICE_IDENTIFY(driver, cbdev); device_get_children(cbdev, &devlist, &numdevs); for (tmp = 0; tmp < numdevs; tmp++) { if (device_get_state(devlist[tmp]) != DS_NOTPRESENT) continue; dinfo = device_get_ivars(devlist[tmp]); cardbus_print_verbose(dinfo); resource_list_init(&dinfo->pci.resources); cardbus_do_cis(cbdev, dinfo->pci.cfg.dev); if (device_probe_and_attach(dinfo->pci.cfg.dev) != 0) cardbus_release_all_resources(cbdev, dinfo); } free(devlist, M_TEMP); } Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9:10:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AD3937B401 for ; Sun, 9 Feb 2003 09:10:30 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCEEE43F75 for ; Sun, 9 Feb 2003 09:10:29 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h19HAS3Y068000; Sun, 9 Feb 2003 10:10:28 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 09 Feb 2003 09:55:07 -0700 (MST) Message-Id: <20030209.095507.106483235.imp@bsdimp.com> To: simokawa@sat.t.u-tokyo.ac.jp Cc: andrea@webcom.it, current@FreeBSD.ORG Subject: Re: firewire hangs on Thinkpad From: "M. Warner Losh" In-Reply-To: References: <20030129114951.GA3635@webcom.it> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shimokawa-san, This sounds like an interrupt storm of some sort. There are indications from other sources that there may be an interrupt in the cardbus bridge that isn't being properly cleared for reasons as yet unknown. It doesn't seem to happen on all the machines, since my laptop is unaffected. I'm rather busy with work for the next few days, but I will try to investigate it when things settle down. Hmmmm, actually I'm a bit hasty in my assessment. With my an card, if I kldload if_rl, bad things happen. I'll look into that when I get a chance. This is with a three week old kernel, but I have no reason to believe that its been fixed in the interrum. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9:14:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F278737B401; Sun, 9 Feb 2003 09:14:38 -0800 (PST) Received: from clever.eusc.inter.net (clever.eusc.inter.net [213.73.101.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43F6743F85; Sun, 9 Feb 2003 09:14:38 -0800 (PST) (envelope-from msch@snafu.de) Received: from tc01-n70-195.de.inter.net ([213.73.70.195] helo=current.best-eng.de) by clever.eusc.inter.net with esmtp (Exim 3.36 #4) id 18hv2F-0005YH-00; Sun, 09 Feb 2003 18:14:31 +0100 Content-Type: text/plain; charset="us-ascii" From: Matthias Schuendehuette Reply-To: msch@snafu.de Organization: Micro$oft-free Zone To: freebsd-current@freebsd.org Subject: Re: Grub 0.92 fails to recognise disks on FBSD5 Date: Sun, 9 Feb 2003 18:14:30 +0100 User-Agent: KMail/1.4.3 Cc: freebsd-questions@freebsd.org, Chris Delnooz , William Palfreman MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200302091814.30354.msch@snafu.de> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I'm fighting with the same problem and found that grub *does* recognize the disks if started with '--read-only'... That fits perfectly to the following paragraph found in the 5.0-RELEASE Errata: "The geom(4)-based disk partitioning code in the kernel will not allow an open partition to be overwritten. This usually prevents the use of disklabel -B to update the boot blocks on a disk because the a partition overlaps the space where the boot blocks are stored. A suggested workaround is to boot from an alternate disk, a CDROM, or a fixit floppy." I can happily boot -current with grub - booting isn't the problem, installing it is the problem. And I installed grub from my 4.7-STABLE installation... (happy to have one :-) Grub seems to open disks/slices r/w and refuses to know them if that's not possible. I, personally, would say that's a bug of grub but that doesn't help here. It even doesn't help, if you run 5.0/-current on your base disk because you can't write the MBR anyway. My question to 'phk' is, if he (or anybody else) has or at least could imagine a solution for this problem. Nothing against 'booteasy', it does the job - but it looks ugly :-) And I can't imagine that the majority of FreeBSD-Users all have a bunch of disks in their systems - especially if I think of the giant sizes of HDs nowadays... -- Ciao/BSD - Matthias Matthias Schuendehuette , Berlin (Germany) Powered by FreeBSD 5.0-CURRENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9:41: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C232037B401; Sun, 9 Feb 2003 09:40:59 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECC1743F3F; Sun, 9 Feb 2003 09:40:57 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id EAA07114; Mon, 10 Feb 2003 04:40:31 +1100 Date: Mon, 10 Feb 2003 04:40:34 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Alexander Leidinger Cc: current@FreeBSD.ORG, Subject: Re: Do we still have a FIFO / named pipe problem? In-Reply-To: <20030209170616.2e4e3635.Alexander@Leidinger.net> Message-ID: <20030210033714.O1731-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Alexander Leidinger wrote: > ports/mail/gensig has a problem. It is supposed to create a named pipe > (~/.signature) and wait for an application to read from the pipe. It > allows to have a random signature on every mail. On 4.x and on 5-current > from last year it works as expected. But since the end of the last year > or the begin of this year it doesn't anymore. gensig daemonizes itself > fills the named pipe and then terminates. The content of the named pipe > stays the same for every mail (no wonder, gensig is gone). Blocking opens of named pipes for writing were broken in: % RCS file: /home/ncvs/src/sys/fs/fifofs/fifo_vnops.c,v % Working file: fifo_vnops.c % head: 1.81 % ... % ---------------------------- % revision 1.79 % date: 2002/12/29 10:32:16; author: phk; state: Exp; lines: +6 -1 % There is some sort of race/deadlock which I have not identified % here. It manifests itself by sendmail hanging in "fifoow" during % boot on a diskless machine with sendmail disabled. % % Giving the sleep a 1sec timout breaks the deadlock, but does not solve % the underlying problem. % % XXX comment applied. % ---------------------------- This change makes such opens bogusly time out after 1 second (unless there is already a writer). There seems to be a race in fifo_open(): opens for read don't terminate the wait if the reader goes away before the opener looks. It is not clear if sendmail is affected by this race or one of its own. Untested fix for this and rev.1.79, and for a similar race in blocking opens of named pipes for reading: %%% Index: fifo_vnops.c =================================================================== RCS file: /home/ncvs/src/sys/fs/fifofs/fifo_vnops.c,v retrieving revision 1.81 diff -u -2 -r1.81 fifo_vnops.c --- fifo_vnops.c 13 Jan 2003 00:28:57 -0000 1.81 +++ fifo_vnops.c 9 Feb 2003 17:32:16 -0000 @@ -227,5 +227,5 @@ } if ((ap->a_mode & FREAD) && (ap->a_mode & O_NONBLOCK) == 0) { - while (fip->fi_writers == 0) { + if (fip->fi_writers == 0) { VOP_UNLOCK(vp, 0, td); error = tsleep((caddr_t)&fip->fi_readers, @@ -234,4 +234,9 @@ if (error) goto bad; + /* + * We must have got woken up because we had a writer. + * That (and not still having one) is the condition + * that we must wait for. + */ } } @@ -243,16 +248,16 @@ } } else { - while (fip->fi_readers == 0) { + if (fip->fi_readers == 0) { VOP_UNLOCK(vp, 0, td); - /* - * XXX: Some race I havn't located is solved - * by timing out after a sec. Race seen when - * sendmail hangs here during boot /phk - */ error = tsleep((caddr_t)&fip->fi_writers, - PCATCH | PSOCK, "fifoow", hz); + PCATCH | PSOCK, "fifoow", 0); vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); if (error) goto bad; + /* + * We must have got woken up because we had + * a reader. That (and not still having one) + * is the condition that we must wait for. + */ } } %%% Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9:45:37 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D66437B401 for ; Sun, 9 Feb 2003 09:45:36 -0800 (PST) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4197C43F85 for ; Sun, 9 Feb 2003 09:45:35 -0800 (PST) (envelope-from ticso@cicely8.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [IPv6:3ffe:400:8d0:301:200:92ff:fe9b:20e7]) by srv1.cosmo-project.de (8.12.5/8.12.5) with ESMTP id h19HjRUc025628 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Sun, 9 Feb 2003 18:45:30 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.1.10]) by cicely5.cicely.de (8.12.6/8.12.6) with ESMTP id h19HjPFO048329 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 9 Feb 2003 18:45:26 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (localhost [127.0.0.1]) by cicely8.cicely.de (8.12.6/8.12.6) with ESMTP id h19HjOMS072787; Sun, 9 Feb 2003 18:45:24 +0100 (CET) (envelope-from ticso@cicely8.cicely.de) Received: (from ticso@localhost) by cicely8.cicely.de (8.12.6/8.12.6/Submit) id h19HjKSK072786; Sun, 9 Feb 2003 18:45:21 +0100 (CET) Date: Sun, 9 Feb 2003 18:45:18 +0100 From: Bernd Walter To: David Schultz Cc: Terry Lambert , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? Message-ID: <20030209174518.GD70234@cicely8.cicely.de> Reply-To: ticso@cicely.de References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209002542.GA20812@HAL9000.homeunix.com> X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 08, 2003 at 04:25:42PM -0800, David Schultz wrote: > Yes, the possibility of being bitten by compiler bugs is certainly > higher with higher optimization levels. Alpha with -O2 seems to > have been broken for years, and I have seen strange things happen > on IA64 as well. But the i386 code generators have received much > wider testing and debugging, so there is somewhat less danger there. I'm always compiling -current on alpha and i386 with -O2 since months. I havn't noticed any compiler related problems lately. But I never used CPUTYPE over 586/mmx and ev56 as my -current machines end here. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 9:46:54 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6AF337B401 for ; Sun, 9 Feb 2003 09:46:48 -0800 (PST) Received: from mgate.uni-hannover.de (mgate.uni-hannover.de [130.75.2.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 721CC43F85 for ; Sun, 9 Feb 2003 09:46:46 -0800 (PST) (envelope-from gerrit@pmp.uni-hannover.de) Received: from www.pmp.uni-hannover.de by mgate.uni-hannover.de with LocalSMTP (PP) with ESMTP; Sun, 9 Feb 2003 18:24:48 +0100 Received: by www.pmp.uni-hannover.de (Postfix, from userid 846) id C5B12169; Sun, 9 Feb 2003 18:24:37 +0100 (CET) Date: Sun, 9 Feb 2003 18:24:37 +0100 From: Gerrit =?iso-8859-1?Q?K=FChn?= To: Andre Guibert de Bruet Cc: Vallo Kallaste , Attila Nagy , current@FreeBSD.ORG Subject: Re: Does bg fsck have problems with large filesystems? Message-ID: <20030209172437.GA59271@pmp.uni-hannover.de> References: <20030127174127.GD71664@pmp.uni-hannover.de> <20030128125432.GB4813@tiiu.internal> <20030128110546.L66869@alpha.siliconlandmark.com> <20030128173142.GF78630@pmp.uni-hannover.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030128173142.GF78630@pmp.uni-hannover.de> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Jan 28, 2003 at 06:31:42PM +0100, Gerrit Kühn wrote: > > I've been trying to reproduce this bug on my desktop. This machine has 2 > > 80gb disks, one of which is dedicated with one slice. So far, after 8 hard > > resets, I haven't had any problem with either the machine or bgfsck > > hanging. > I'll try to reproduce the thing on my machine as soon as possible. > Perhaps it was just because it was Monday, who knows... Meanwhile I found out that my problem is 100% reproducible. My file systems look like this: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 257838 67338 169874 28% / devfs 1 1 0 100% /dev /dev/ad0s1g 57467672 2 52870258 0% /export /dev/ad0s1f 4125838 4 3795768 0% /tmp /dev/ad0s1e 12383502 1336152 10056670 12% /usr /dev/ad0s1d 4125838 3458 3792314 0% /var When booting with non-clean filesystems, bgfsck runs quickly over a, d, e and f. However, on g it keeps running forever. I can't kill the fsck processes and I can't access g, though the rest of the system seems to be usable as usual. Here is the output of ps axl: UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND 0 0 0 0 -16 0 0 12 sched DLs ?? 0:00.00 (swapper) 0 1 0 0 8 0 712 392 wait ILs ?? 0:00.01 /sbin/init - 0 2 0 0 -8 0 0 12 g_even DL ?? 0:00.02 (g_event) 0 3 0 0 -8 0 0 12 g_up DL ?? 0:00.09 (g_up) 0 4 0 0 -8 0 0 12 g_down DL ?? 0:00.19 (g_down) 0 5 0 0 -84 0 0 12 actask IL ?? 0:00.00 (acpi_task0 0 6 0 0 -84 0 0 12 actask IL ?? 0:00.00 (acpi_task1 0 7 0 0 -84 0 0 12 actask IL ?? 0:00.00 (acpi_task2 0 8 0 0 -16 0 0 12 psleep DL ?? 0:00.00 (pagedaemon 0 9 0 0 20 0 0 12 psleep DL ?? 0:00.00 (vmdaemon) 0 10 0 0 -16 0 0 12 ktrace DL ?? 0:00.00 (ktrace) 0 11 0 110 -16 0 0 12 - RL ?? 2:20.07 (idle) 0 12 0 0 -48 0 0 12 - WL ?? 0:00.12 (swi6: tty: 0 14 0 0 -44 0 0 12 - WL ?? 0:00.00 (swi1: net) 0 15 0 0 76 0 0 12 sleep DL ?? 0:00.05 (random) 0 19 0 0 -28 0 0 12 - WL ?? 0:00.00 (swi5: acpi 0 22 0 0 -64 0 0 12 - WL ?? 0:00.28 (irq14: ata 0 24 0 0 -68 0 0 12 - WL ?? 0:00.00 (irq11: rl0 0 25 0 0 8 0 0 12 usbevt DL ?? 0:00.00 (usb0) 0 26 0 0 8 0 0 12 usbtsk DL ?? 0:00.00 (usbtask) 0 27 0 0 8 0 0 12 usbevt DL ?? 0:00.00 (usb1) 0 28 0 5 -68 0 0 12 - WL ?? 0:00.00 (irq12: fwo 0 29 0 0 -64 0 0 12 - WL ?? 0:00.00 (irq6: fdc0 0 32 0 0 -60 0 0 12 - WL ?? 0:00.00 (irq7: ppc0 0 33 0 0 -60 0 0 12 - WL ?? 0:00.02 (irq1: atkb 0 36 0 34 171 0 0 12 pgzero DL ?? 0:00.47 (pagezero) 0 37 0 2 -4 0 0 12 snaplk DL ?? 0:00.24 (bufdaemon) 0 38 0 0 20 0 0 12 syncer DL ?? 0:00.01 (syncer) 0 39 0 0 -4 0 0 12 vlruwt DL ?? 0:00.00 (vnlru) 0 40 0 0 8 0 0 12 nfsidl IL ?? 0:00.00 (nfsiod 0) 0 41 0 0 8 0 0 12 nfsidl IL ?? 0:00.00 (nfsiod 1) 0 42 0 0 8 0 0 12 nfsidl IL ?? 0:00.00 (nfsiod 2) 0 43 0 0 8 0 0 12 nfsidl IL ?? 0:00.00 (nfsiod 3) 0 246 1 0 96 0 1172 736 select Ss ?? 0:00.03 /usr/sbin/sy 0 267 1 0 96 0 1372 1016 select Ss ?? 0:00.03 /usr/sbin/rp 0 350 1 155 115 0 1220 992 select Is ?? 0:00.01 /usr/sbin/mo 0 353 1 112 110 0 1168 876 select Is ?? 0:00.13 nfsd: master 0 355 353 155 4 0 1128 748 nfsd I ?? 0:00.00 nfsd: server 0 356 353 155 4 0 1128 748 nfsd I ?? 0:00.00 nfsd: server 0 357 353 155 4 0 1128 748 nfsd I ?? 0:00.00 nfsd: server 0 358 353 155 4 0 1128 748 nfsd I ?? 0:00.00 nfsd: server 0 374 1 0 96 0 1144 680 select Ss ?? 0:00.00 /usr/sbin/us 0 394 1 154 115 0 1196 808 select Is ?? 0:00.01 /usr/sbin/lp 0 454 1 153 115 0 3092 2200 select Is ?? 0:00.63 /usr/sbin/ss 0 460 1 0 96 0 3092 2544 select Ss ?? 0:00.01 sendmail: ac 25 463 1 153 20 0 2992 2500 pause Is ?? 0:00.00 sendmail: Qu 0 512 1 0 8 0 1236 956 nanslp Ss ?? 0:00.01 /usr/sbin/cr 0 522 1 0 8 0 1532 1236 wait Is v0 0:00.05 login [pam] 0 530 522 0 20 0 1504 1092 pause S v0 0:00.06 -csh (csh) 0 544 530 0 96 0 664 444 - R+ v0 0:00.00 ps axl 0 523 1 0 5 0 1184 864 ttyin Is+ v1 0:00.01 /usr/libexec 0 524 1 0 5 0 1184 864 ttyin Is+ v2 0:00.01 /usr/libexec 0 525 1 0 5 0 1184 864 ttyin Is+ v3 0:00.01 /usr/libexec 0 526 1 0 5 0 1184 864 ttyin Is+ v4 0:00.01 /usr/libexec 0 527 1 0 5 0 1184 864 ttyin Is+ v5 0:00.01 /usr/libexec 0 528 1 0 5 0 1184 864 ttyin Is+ v6 0:00.01 /usr/libexec 0 529 1 0 5 0 1184 864 ttyin Is+ v7 0:00.01 /usr/libexec 0 516 1 153 8 4 248 140 wait IN con- 0:00.01 fsck -B -p 0 517 1 153 -8 0 1112 564 piperd I con- 0:00.00 logger -p da 0 521 516 2 -8 4 632 376 getbuf DN con- 0:01.19 fsck_ufs -p After turning off bgfsck in rc.conf the system rebooted using fgfsck without further problems. Here is the dmesg from this booting: Copyright (c) 1992-2003 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.0-RELEASE #1: Mon Jan 27 17:43:54 CET 2003 root@comet.pmp.uni-hannover.de:/usr/obj/usr/src/sys/COMET Preloaded elf kernel "/boot/kernel/kernel" at 0xc0503000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc05030a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 930689508 Hz CPU: VIA C3 Samuel 2 (930.69-MHz 686-class CPU) Origin = "CentaurHauls" Id = 0x67a Stepping = 10 Features=0x803035 real memory = 125763584 (119 MB) avail memory = 116744192 (111 MB) Initializing GEOMetry subsystem npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 Using $PIR table, 6 entries at 0xc00fdcf0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-safe" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_cpu0: on acpi0 acpi_button0: on acpi0 acpi_button1: on acpi0 pcib0: port 0x6000-0x607f,0x5000-0x500f,0x4080-0x40ff,0x4000-0x407f,0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xea000000-0xea3fffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xd000-0xd00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd400-0xd41f irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ugen0: American Power Conversion Back-UPS 500 FW: 6.2.I USB FW: c1, rev 1.10/1.00, addr 2 uhci1: port 0xd800-0xd81f irq 11 at device 7.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pci0: at device 7.4 (no driver attached) pcm0: port 0xe400-0xe403,0xe000-0xe003,0xdc00-0xdcff irq 12 at device 7.5 on pci0 fwohci0: port 0xe800-0xe87f mem 0xea400000-0xea4007ff irq 12 at device 11.0 on pci0 fwohci0: PCI bus latency was changing to 250. fwohci0: OHCI version 1.0 (ROM=1) fwohci0: No. of Isochronous channel is 8. fwohci0: EUI64 00:30:1b:ab:00:00:55:b8 fwohci0: Phy 1394a available S400, 3 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 rl0: port 0xec00-0xecff mem 0xea401000-0xea4010ff irq 11 at device 12.0 on pci0 rl0: Realtek 8139B detected. Warning, this may be unstable in autoselect mode rl0: Ethernet address: 00:30:1b:ab:55:54 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 orm0: CepNews
TELSÝM'DEN TÜRKÝYE'YE BÝR ÝLK.

Telsim, dünyanýn en büyük uydu telekomünikasyon operatörü Globalstar ile yaptýðý iþbirliði sonucunda, Türkiye'nin uydu destekli hizmet veren ilk GSM operatörü olmuþtur. Kýsaca, Telsim-Globalstar birlikteliði, dünyanýn her noktasýndaki dað, açýk deniz, ova, orman gibi yerleþim merkezlerinden uzak olan ve GSM, yani hücresel telekomünikasyon sistemlerinin kapsama alaný dýþýnda kalan bölgelerde dahi mobil iletiþim olanaðý sunmaktadýr.
 
Ayrýntýlý bilgi için týklayýn...
 
Cep telefonunu cep televizyonu yaptýk!

Türkiye'de artýk cep telefonundan televizyon yayýnlarýný izleyebileceksiniz. Dünyada, Mobile Video Streaming (MVS) adý verilen "cepte televizyon yayýný" izleme imkânýný veren bu teknolojiyi, Türkiye'de, Türk bilgisayar mühendisleri yarattý. Telsim Teknolojisi'nin arkasýndaki, 150 bilgisayar mühendisi. Telsim'in Türkiye ve dünya üzerindeki rekabet gücünün ekonomik ve teknolojik boyutlarýný önemli ölçülerde artýran bu beyin gücü, Telsim'in üstünlüklerinden biri. Bu üstünlüðü sayesinde Telsim, dilediði zaman, dilediði teknolojik yenilikleri kendi yaratabiliyor. Kimseye baðýmlý olmadan devreye sokabiliyor. Ýþte bu ayrýcalýk, Telsim'le diðerleri arasýndaki farký yaratýyor. Telsim Teknolojisi, þimdi Türkiye'ye MVS, yani "cepte televizyon yayýný"ný sunuyor. MVS'ten yaralanarak, cep televizyonunuzdan pardon cep telefonunuzdan, 24 saat Star televizyonunu, haftanýn TOP 10 video kliplerini, futbolla ilgili haberleri, maç görüntülerini, Türkiye'den ve dünyadan önemli politik ve ekonomik haberleri, son dakika geliþmelerini, magazin haberlerini 1 Nisan 2003 tarihine kadar ücretsiz izleyebilirsiniz. Telsim'i diðerlerinden farklý kýlan mühendisler ordusunun, yani beyin gücünün Telsim'e ve Türkiye'ye getirdiði teknolojik yenilikler devam edecek. Bekleyin.

Ayrýntýlý bilgi için týklayýn...

 

Bu mesaj size Telsim Mobil Telekomünikasyon Hizmetleri A.Þ. tarafýndan
gönderilmiþtir. Bu tür mesajlarý almak istemiyorsanýz lütfen týklayýnýz

This message was sent to you by Telsim Mobile Telecommunications. To unsubscribe
from this service, please click here

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 20:16:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DECB37B401 for ; Sun, 9 Feb 2003 20:16:11 -0800 (PST) Received: from opiate.thirteenandtwo.org (CPE0030ab0ef2bb-CM014490123332.cpe.net.cable.rogers.com [24.103.202.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3079243F85 for ; Sun, 9 Feb 2003 20:15:19 -0800 (PST) (envelope-from munish@opiate.thirteenandtwo.org) Received: by opiate.thirteenandtwo.org (Postfix, from userid 1001) id 1EE08E6; Sun, 9 Feb 2003 23:15:18 -0500 (EST) Date: Sun, 9 Feb 2003 23:15:18 -0500 From: Munish Chopra To: freebsd-current@FreeBSD.ORG Subject: Re: C conformance. Message-ID: <20030210041518.GC19060@opiate.thirteenandtwo.org> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <3E46A15A.3090909@gmx.net> <3E4718C3.EB0A28E4@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E4718C3.EB0A28E4@mindspring.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2003-02-09 19:13 +0000, Terry Lambert wrote: > Marcin Dalecki wrote: > > Trying to use a compiler different from GCC I have found the folowing error > > > > "/usr/include/sys/syslimits.h", line 42: Error: > > [ISO 6.8]: Unknown preprocessing directive, '#warning'. > > > > I think that somthing like to above should not appear in system > > headers. > > It is an ANSI compliant preprocessor directive. Please use an ANSI > compliant compiler. > > Have you actually looked at the line? It's protected by > "#if __GNUC__", so your compiler shouldn't be trying to interpret > any directives other than "#else", "#elif", or "#endif" (or the > premature end of the file). > This is a known problem with the overaggressive preprocessor. Things like this will get fixed as time permits, or new volunteers pop up :) -- Munish Chopra To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 20:32: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1086D37B401 for ; Sun, 9 Feb 2003 20:31:59 -0800 (PST) Received: from opiate.thirteenandtwo.org (CPE0030ab0ef2bb-CM014490123332.cpe.net.cable.rogers.com [24.103.202.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48E6D43FBF for ; Sun, 9 Feb 2003 20:30:38 -0800 (PST) (envelope-from munish@opiate.thirteenandtwo.org) Received: by opiate.thirteenandtwo.org (Postfix, from userid 1001) id 77852E6; Sun, 9 Feb 2003 23:30:37 -0500 (EST) Date: Sun, 9 Feb 2003 23:30:37 -0500 From: Munish Chopra To: freebsd-current@freebsd.org Subject: Re: C conformance. Message-ID: <20030210043037.GA33669@opiate.thirteenandtwo.org> Mail-Followup-To: freebsd-current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Terry Lambert wrote: >Marcin Dalecki wrote: >> Trying to use a compiler different from GCC I have found the folowing >error >> >> "/usr/include/sys/syslimits.h", line 42: Error: >> [ISO 6.8]: Unknown preprocessing directive, '#warning'. >> >> I think that somthing like to above should not appear in system >> headers. > >It is an ANSI compliant preprocessor directive. Please use an ANSI >compliant compiler. I'd also be curious to know in which version of the ANSI standard you have found #warning. I certainly doesn't appear in mine. -- Munish Chopra To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 20:40:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 989BB37B401 for ; Sun, 9 Feb 2003 20:40:55 -0800 (PST) Received: from mx1.mail.ru (mx1.mail.ru [194.67.57.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 574B443FB1 for ; Sun, 9 Feb 2003 20:39:34 -0800 (PST) (envelope-from kan@mail.ru) Received: from [141.154.55.131] (helo=kan.dnsalias.net) by mx1.mail.ru with esmtp (Exim SMTP.1) id 18i5jA-000L3c-00 for current@FreeBSD.ORG; Mon, 10 Feb 2003 07:39:33 +0300 Received: from kan.dnsalias.net (localhost [IPv6:::1]) by kan.dnsalias.net (8.12.6/8.12.6) with ESMTP id h1A4dU7f062469 for ; Sun, 9 Feb 2003 23:39:31 -0500 (EST) (envelope-from kan@kan.dnsalias.net) Received: (from kan@localhost) by kan.dnsalias.net (8.12.7/8.12.6/Submit) id h1A4dPuV062468; Sun, 9 Feb 2003 23:39:25 -0500 (EST) Date: Sun, 9 Feb 2003 23:39:25 -0500 From: Alexander Kabaev To: current@FreeBSD.ORG Subject: HEADS UP: GCC 3.2.2 is coming Message-Id: <20030209233925.0bfae545.kabaev@bellatlantic.net> Reply-To: ak03@gte.com X-Mailer: Sylpheed version 0.8.9claws42 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I plan to upgrade GCC to the version 3.2.2. Please hold your updates for a while. -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 21: 0:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76A2237B401 for ; Sun, 9 Feb 2003 21:00:23 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86B0943F3F for ; Sun, 9 Feb 2003 20:59:00 -0800 (PST) (envelope-from DougB@freebsd.org) Received: from 12-234-22-23.client.attbi.com ([12.234.22.23]) by sccrmhc01.attbi.com (sccrmhc01) with SMTP id <2003021004584400100g380je>; Mon, 10 Feb 2003 04:58:48 +0000 Date: Sun, 9 Feb 2003 20:58:36 -0800 (PST) From: Doug Barton To: ticso@cicely.de Cc: David Schultz , Terry Lambert , Ray Kohler , freebsd-current@FreeBSD.ORG Subject: Re: Compiling with high optimization? In-Reply-To: <20030209174518.GD70234@cicely8.cicely.de> Message-ID: <20030209205820.O866@12-234-22-23.pyvrag.nggov.pbz> References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209174518.GD70234@cicely8.cicely.de> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Bernd Walter wrote: > I'm always compiling -current on alpha and i386 with -O2 since months. > I havn't noticed any compiler related problems lately. How do you know? -- "The last time France wanted more evidence, it rolled right through Paris with a German flag." - David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 22:18:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C57037B401 for ; Sun, 9 Feb 2003 22:18:18 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 8583243FE1 for ; Sun, 9 Feb 2003 22:17:33 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 29595 invoked by uid 1000); 10 Feb 2003 06:17:35 -0000 Date: Sun, 9 Feb 2003 22:17:35 -0800 (PST) From: Nate Lawson To: current@freebsd.org Subject: bus_setup_intr() vs. ether_ifattach() race Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Which is the correct order to do these two functions? If the irq is enabled before the device is attached, it seems a response cannot be sent if a packet arrives before the attach. The right way seems to be to attach the device before setting up an irq but does this have side effects? -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 22:22:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AC0037B401 for ; Sun, 9 Feb 2003 22:22:51 -0800 (PST) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52DB843FF9 for ; Sun, 9 Feb 2003 22:22:45 -0800 (PST) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (localhost [IPv6:::1]) by h132-197-179-27.gte.com (8.12.6/8.12.6) with ESMTP id h1A6MiQa047830 for ; Mon, 10 Feb 2003 01:22:44 -0500 (EST) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.6/8.12.6/Submit) id h1A6MiGd047829 for current@FreeBSD.ORG; Mon, 10 Feb 2003 01:22:44 -0500 (EST) Date: Mon, 10 Feb 2003 01:22:44 -0500 From: Alexander Kabaev To: current@FreeBSD.ORG Subject: Re: HEADS UP: GCC 3.2.2 is coming Message-ID: <20030210062244.GA47793@kanpc.gte.com> References: <20030209233925.0bfae545.kabaev@bellatlantic.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209233925.0bfae545.kabaev@bellatlantic.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The import should be complete now. Please let us know if you see any problems introduced with this GCC version. On Sun, Feb 09, 2003 at 11:39:25PM -0500, Alexander Kabaev wrote: > I plan to upgrade GCC to the version 3.2.2. Please hold your updates for > a while. -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 22:45: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93F5537B405 for ; Sun, 9 Feb 2003 22:44:59 -0800 (PST) Received: from 12-234-22-23.client.attbi.com (12-234-22-23.client.attbi.com [12.234.22.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE08A43FE9 for ; Sun, 9 Feb 2003 22:43:29 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from dougb.net (xf04kibq45kocugb@dougb.net [10.0.0.1]) by 12-234-22-23.client.attbi.com (8.12.6/8.12.6) with ESMTP id h1A6LoS8002697; Sun, 9 Feb 2003 22:21:56 -0800 (PST) (envelope-from DougB@FreeBSD.org) Date: Sun, 9 Feb 2003 22:21:50 -0800 (PST) From: Doug Barton To: "Coercitas Temet'Nosce" Cc: "'Don'" , current@FreeBSD.org Subject: Re: RE : IPFilter In-Reply-To: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> Message-ID: <20030209221702.I866@12-234-22-23.pyvrag.nggov.pbz> References: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Coercitas Temet'Nosce wrote: > Pardon my poor knowledge about IPFW 2 but if I remember well, IPFW > wasn't a SPI Firewall, which is what I need. Btw, previous Kernel allows > us to fine tune its building for IPF and now, it simply gone...was > really wondering where those features are. I think there is some confusion in this thread. Ipfilter is still part of -current, but the various kernel config options have been split into two files. /sys/conf/NOTES includes the various machine independent (MI) bits, including ipfilter. The NOTES file in /sys/i386/conf is restricted to things that are specific to the i386 platform, including pentium, amd, etc. We don't have a whole lot of ipfilter documentation in freebsd because ipfilter works the same way here as it does on other os'. See for example, http://www.obfuscation.org/ipf/ Hope this helps, Doug -- "The last time France wanted more evidence, it rolled right through Paris with a German flag." - David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23: 7:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1A737B401 for ; Sun, 9 Feb 2003 23:07:29 -0800 (PST) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id B710943FCB for ; Sun, 9 Feb 2003 23:06:07 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.130.35] (port=49200 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:4) id 18i810-00061p-00 for freebsd-current@freebsd.org; Mon, 10 Feb 2003 15:06:06 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1A765C1025267 for ; Mon, 10 Feb 2003 15:06:05 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1A7656f025238 for freebsd-current@freebsd.org; Mon, 10 Feb 2003 15:06:05 +0800 (CST) Date: Mon, 10 Feb 2003 15:06:04 +0800 From: leafy To: freebsd-current@freebsd.org Subject: Re: RE : IPFilter Message-ID: <20030210070604.GA22575@leafy.idv.tw> Mail-Followup-To: freebsd-current@freebsd.org References: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> <20030209221702.I866@12-234-22-23.pyvrag.nggov.pbz> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030209221702.I866@12-234-22-23.pyvrag.nggov.pbz> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 10:21:50PM -0800, Doug Barton wrote: > We don't have a whole lot of ipfilter documentation in freebsd because > ipfilter works the same way here as it does on other os'. See for example, > http://www.obfuscation.org/ipf/ > > Hope this helps, > > Doug > As a side note, is there any instruction on how to install the latest ipfilter on -current? Jiawei Ye -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:12:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD46C37B401; Sun, 9 Feb 2003 23:12:46 -0800 (PST) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE37043FBD; Sun, 9 Feb 2003 23:11:06 -0800 (PST) (envelope-from ticso@cicely5.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [IPv6:3ffe:400:8d0:301:200:92ff:fe9b:20e7]) by srv1.cosmo-project.de (8.12.5/8.12.5) with ESMTP id h1A7B1Uc040798 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Mon, 10 Feb 2003 08:11:02 +0100 (CET) (envelope-from ticso@cicely5.cicely.de) Received: from cicely5.cicely.de (localhost [IPv6:::1]) by cicely5.cicely.de (8.12.6/8.12.6) with ESMTP id h1A7AwFO052264 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 10 Feb 2003 08:10:59 +0100 (CET) (envelope-from ticso@cicely5.cicely.de) Received: (from ticso@localhost) by cicely5.cicely.de (8.12.6/8.12.6/Submit) id h1A7AuYU052263; Mon, 10 Feb 2003 08:10:56 +0100 (CET) (envelope-from ticso) Date: Mon, 10 Feb 2003 08:10:55 +0100 From: Bernd Walter To: Doug Barton Cc: ticso@cicely.de, David Schultz , Terry Lambert , Ray Kohler , freebsd-current@freebsd.org Subject: Re: Compiling with high optimization? Message-ID: <20030210071055.GA51728@cicely5.cicely.de> Reply-To: ticso@cicely.de References: <20030208173756.GA56030@arkadia.nv.cox.net> <20030208232724.GA20435@HAL9000.homeunix.com> <3E459BF3.BB3FC381@mindspring.com> <20030209002542.GA20812@HAL9000.homeunix.com> <20030209174518.GD70234@cicely8.cicely.de> <20030209205820.O866@12-234-22-23.pyvrag.nggov.pbz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030209205820.O866@12-234-22-23.pyvrag.nggov.pbz> X-Operating-System: FreeBSD cicely5.cicely.de 5.0-CURRENT i386 User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 08:58:36PM -0800, Doug Barton wrote: > On Sun, 9 Feb 2003, Bernd Walter wrote: > > > I'm always compiling -current on alpha and i386 with -O2 since months. > > I havn't noticed any compiler related problems lately. > > How do you know? It's not that I don't know about things that I have noticed. Of course I don't know if there are unnoticed problems, but there will be much more than just compiler bugs. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:14:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0245237B401 for ; Sun, 9 Feb 2003 23:14:16 -0800 (PST) Received: from puffin.mail.pas.earthlink.net (puffin.mail.pas.earthlink.net [207.217.120.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A34E43FD7 for ; Sun, 9 Feb 2003 23:12:55 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0103.cvx40-bradley.dialup.earthlink.net ([216.244.42.103] helo=mindspring.com) by puffin.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18i87W-0007gM-00; Sun, 09 Feb 2003 23:12:51 -0800 Message-ID: <3E47509D.EA90194A@mindspring.com> Date: Sun, 09 Feb 2003 23:11:25 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nate Lawson Cc: current@freebsd.org Subject: Re: bus_setup_intr() vs. ether_ifattach() race References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a41a1be98705b92b6c7f97a7b75f954ff0666fa475841a1c7a350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nate Lawson wrote: > Which is the correct order to do these two functions? If the irq is > enabled before the device is attached, it seems a response cannot be sent > if a packet arrives before the attach. The right way seems to be to > attach the device before setting up an irq but does this have side > effects? The main side effect is that probes that require IRQs in order to determine if the device is there (e.g. AMD Lance, etc.) will never be able to probe true, unless the interrupt is routed to an IRQ handler. On the other hand, it should probably not be the standard IRQ handler that gets invoked, as a result of the probe, but one that is specific to probing. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:26:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E77537B401 for ; Sun, 9 Feb 2003 23:26:47 -0800 (PST) Received: from puffin.mail.pas.earthlink.net (puffin.mail.pas.earthlink.net [207.217.120.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id E198F43FE9 for ; Sun, 9 Feb 2003 23:25:26 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0103.cvx40-bradley.dialup.earthlink.net ([216.244.42.103] helo=mindspring.com) by puffin.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18i8Je-0000rZ-00; Sun, 09 Feb 2003 23:25:23 -0800 Message-ID: <3E475391.942F01FA@mindspring.com> Date: Sun, 09 Feb 2003 23:24:01 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: leafy Cc: freebsd-current@freebsd.org Subject: Re: RE : IPFilter References: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> <20030209221702.I866@12-234-22-23.pyvrag.nggov.pbz> <20030210070604.GA22575@leafy.idv.tw> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a41a1be98705b92b6c50456a4415c5cf94350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG leafy wrote: > On Sun, Feb 09, 2003 at 10:21:50PM -0800, Doug Barton wrote: > > We don't have a whole lot of ipfilter documentation in freebsd because > > ipfilter works the same way here as it does on other os'. See for example, > > http://www.obfuscation.org/ipf/ > > As a side note, is there any instruction on how to install the latest > ipfilter on -current? Do you mean "How do I get the latest FreeBSD supported version of ipfilter to run on FreeBSD-current?"? If so, the answer is "The version that's in the source tree is the latest ipfilter supported by FreeBSD-current". Do you mean "How do I get the latest *vendor* supported version of ipfilter to run on FreeBSD-current?"? If so, the answer is "Replace the FreeBSD-current supplied source files with the vendor supplied source files, and recompile; if that doesn't work for you, contact the *vendor* for support of the vendor-supported code". You should probably contact the listed maintainer, if your question meant something other than one of those two. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:33: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D4AF37B401 for ; Sun, 9 Feb 2003 23:33:05 -0800 (PST) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46DC843FE1 for ; Sun, 9 Feb 2003 23:31:44 -0800 (PST) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) by alpha.siliconlandmark.com (8.12.6/8.12.6) with ESMTP id h1A7VhmF071416; Mon, 10 Feb 2003 02:31:43 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by alpha.siliconlandmark.com (8.12.6/8.12.6/Submit) with ESMTP id h1A7VgKT071413; Mon, 10 Feb 2003 02:31:42 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Mon, 10 Feb 2003 02:31:42 -0500 (EST) From: Andre Guibert de Bruet To: Simon Watson Cc: freebsd-current@FreeBSD.ORG Subject: Re: BuildKernel Error In-Reply-To: <20030209100512.GA80152@tomato.home> Message-ID: <20030210023040.G94708@alpha.siliconlandmark.com> References: <20030209100512.GA80152@tomato.home> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Simon Watson wrote: > I'm having some problems with buildkernel on the latest current from > CVS: (Apolgies if the formatting comes out slightly munged) > > ===> lib/libgeom > cc -O -pipe -mcpu=pentiumpro -Werror -Wall -Wno-format-y2k -W > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow > -Wcast-align -Wno-uninitialized -c > /usr/src/lib/libgeom/geom_stats.c -o geom_stats.o > In file included from > /usr/obj/usr/src/i386/usr/include/libgeom.h:34, > from /usr/src/lib/libgeom/geom_stats.c:38: > /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:44:field `it' has incomplete type > /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:45:field `wentidle' has incomplete type > /usr/obj/usr/src/i386/usr/include/geom/geom_stats.h:51:field `dt' has incomplete type > *** Error code 1 > > Stop in /usr/src/lib/libgeom. > *** Error code 1 > > Stop in /usr/src/lib. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > Any ideas what is the cause of this? Re-cvsup and rebuild world. Should be fixed. Regards, Andy > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:33:51 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA3D37B401 for ; Sun, 9 Feb 2003 23:33:50 -0800 (PST) Received: from flamingo.mail.pas.earthlink.net (flamingo.mail.pas.earthlink.net [207.217.120.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id D866143F85 for ; Sun, 9 Feb 2003 23:33:49 -0800 (PST) (envelope-from rsidd@papagena.rockefeller.edu) Received: from user-0cev12u.cable.mindspring.com ([24.239.132.94] helo=bluerondo.a.la.turk) by flamingo.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 18i8Rp-0007Tj-00 for current@freebsd.org; Sun, 09 Feb 2003 23:33:49 -0800 Received: (qmail 53312 invoked by uid 1001); 10 Feb 2003 07:33:48 -0000 Date: Mon, 10 Feb 2003 02:33:48 -0500 From: Rahul Siddharthan To: Alexander Kabaev Cc: current@freebsd.org Subject: Re: HEADS UP: GCC 3.2.2 is coming Message-ID: <20030210073347.GA53274@papagena.rockefeller.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030210062244.GA47793@kanpc.gte.com> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Kabaev wrote: > The import should be complete now. Please let us know if you > see any problems introduced with this GCC version. cc -O -pipe -mcpu=i686 -march=i686 -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr/obj/usr/src/i386/usr\" -I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/config -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp -I. -c /usr/src/contrib/gcc/cp/decl.c /usr/src/contrib/gcc/cp/decl.c: In function `cxx_init_decl_processing': /usr/src/contrib/gcc/cp/decl.c:6671: `c_size_type_node' undeclared (first use in this function) /usr/src/contrib/gcc/cp/decl.c:6671: (Each undeclared identifier is reported only once /usr/src/contrib/gcc/cp/decl.c:6671: for each function it appears in.) *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Feb 9 23:33:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F239537B405 for ; Sun, 9 Feb 2003 23:33:55 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FF3243FCB for ; Sun, 9 Feb 2003 23:32:35 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0103.cvx40-bradley.dialup.earthlink.net ([216.244.42.103] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18i8Qb-0006aZ-00; Sun, 09 Feb 2003 23:32:33 -0800 Message-ID: <3E475540.41AD46E4@mindspring.com> Date: Sun, 09 Feb 2003 23:31:12 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Munish Chopra Cc: freebsd-current@freebsd.org Subject: Re: C conformance. References: <20030210043037.GA33669@opiate.thirteenandtwo.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4882f40c813b5ea6af202451289ceb45493caf27dac41a8fd350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Munish Chopra wrote: > >It is an ANSI compliant preprocessor directive. Please use an ANSI > >compliant compiler. > > I'd also be curious to know in which version of the ANSI standard you > have found #warning. I certainly doesn't appear in mine. I said that the use of the directive was compliant, not that the directive was standardized. As to the version of the standard, try ANSI X3J11, unless you have a different online version of the standards document available for public use that you want to point me at to language-lawyer to prove that the preprocessor should not be doing syntax checking on statements that are indicated by preprocessor statements to not be compiled. What does the compiler you are using do when I say: #ifdef absurd_token absurd_token #endif or #ifdef absurd_token #absurd_token #endif Neither one of these should cause a warning with an ANSI X3J11 compliant compiler or preprocessor, or an ISO C-99 compliant compiler or preprocessor, for that matter. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 0:15:34 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3059037B401 for ; Mon, 10 Feb 2003 00:15:33 -0800 (PST) Received: from ephemeral.chemikals.org (cae57-161-024.sc.rr.com [66.57.161.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDB1C43FF2 for ; Mon, 10 Feb 2003 00:14:11 -0800 (PST) (envelope-from morganw@chemikals.org) Received: from volatile.chemikals.org (root@adsl-18-161-71.gsp.bellsouth.net [68.18.161.71]) by ephemeral.chemikals.org (8.12.6/8.12.6) with ESMTP id h1A8E2Qt049692; Mon, 10 Feb 2003 03:14:04 -0500 (EST) (envelope-from morganw@chemikals.org) Received: from localhost (morganw@localhost [127.0.0.1]) by volatile.chemikals.org (8.12.6/8.12.6) with ESMTP id h1A8E4RD046744; Mon, 10 Feb 2003 03:14:04 -0500 (EST) (envelope-from morganw@chemikals.org) Date: Mon, 10 Feb 2003 03:14:04 -0500 (EST) From: Wesley Morgan To: Rahul Siddharthan Cc: Alexander Kabaev , "" Subject: Re: HEADS UP: GCC 3.2.2 is coming In-Reply-To: <20030210073347.GA53274@papagena.rockefeller.edu> Message-ID: <20030210031300.L46205@volatile.chemikals.org> References: <20030210073347.GA53274@papagena.rockefeller.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Rahul Siddharthan wrote: > Alexander Kabaev wrote: > > The import should be complete now. Please let us know if you > > see any problems introduced with this GCC version. > > > cc -O -pipe -mcpu=i686 -march=i686 -DIN_GCC -DHAVE_CONFIG_H > -DPREFIX=\"/usr/obj/usr/src/i386/usr\" > -I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools > -I/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/config > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp -I. > -c /usr/src/contrib/gcc/cp/decl.c > /usr/src/contrib/gcc/cp/decl.c: In function > `cxx_init_decl_processing': > /usr/src/contrib/gcc/cp/decl.c:6671: `c_size_type_node' undeclared > (first use in this function) > /usr/src/contrib/gcc/cp/decl.c:6671: (Each undeclared identifier is > reported only once > /usr/src/contrib/gcc/cp/decl.c:6671: for each function it appears in.) > *** Error code 1 I just finished a make world after the import. No such problems here. -- Hi! I'm a .signature virus! Copy me into your ~/.signature to help me spread! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 0:22:46 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B067537B401 for ; Mon, 10 Feb 2003 00:22:44 -0800 (PST) Received: from ns.gfk.ru (ns.gfk.ru [195.16.45.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB74C43F85 for ; Mon, 10 Feb 2003 00:21:22 -0800 (PST) (envelope-from Yuriy.Tsibizov@gfk.ru) Received: from mx.gfk.ru ([10.0.0.30]) by ns.gfk.ru ([195.16.45.162]) with SMTP (MDaemon.PRO.v6.5.2.R) for ; Mon, 10 Feb 2003 11:20:53 +0300 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Subject: Ultra-fast Acer (Benq) ScanWit 2720S SCSI scanner X-MimeOLE: Produced By Microsoft Exchange V6.0.5762.3 Date: Mon, 10 Feb 2003 11:20:52 +0300 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: -current, IBM A30p & EPSON scanner Thread-Index: AcLOr/i4FGPmki+XSC+CNctdp9i0IwCJGkxw From: "Yuriy Tsibizov" To: "FreeBSD-Current" X-MDRemoteIP: 10.0.0.30 X-Return-Path: Yuriy.Tsibizov@gfk.ru X-MDaemon-Deliver-To: current@FreeBSD.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -CURRENT kernel seems to be too optimistic about my scanner speed... = from 3224652.361 to 3260358.656 MB/s (that's about 3TB/s), It's too fast = for any scanning device in the universe... especially for async SCSI-2 = device FreeBSD 5.0-CURRENT #4: Sun Feb 9 11:18:32 MSK 2003 root@free.home.local:/usr/obj/usr/src/sys/FREE Preloaded elf kernel "/boot/kernel/kernel" at 0xc0463000. Preloaded elf module "/boot/kernel/snd_emu10k1.ko" at 0xc04630a8. Preloaded elf module "/boot/kernel/snd_pcm.ko" at 0xc0463158. Preloaded elf module "/boot/kernel/firewire.ko" at 0xc0463204. Calibrating clock(s) ... TSC clock: 400897760 Hz, i8254 clock: 1193149 = Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method Timecounter "TSC" frequency 400911576 Hz CPU: AMD-K6(tm) 3D processor (400.91-MHz 586-class CPU) Origin =3D "AuthenticAMD" Id =3D 0x58c Stepping =3D 12 Features=3D0x8021bf AMD Features=3D0x80000800 [part of dmesg skipped] amd0: port 0xb000-0xb07f = irq 11 at device 12.0 on pci0 pass0 at amd0 bus 0 target 1 lun 0 pass0: Fixed Scanner SCSI-2 device=20 pass0: Serial Number I pass0: 3224652.361MB/s transfers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pass1 at amd0 bus 0 target 3 lun 0 pass1: Removable CD-ROM SCSI-2 device=20 pass1: Serial Number ' pass1: 10.000MB/s transfers (10.000MHz, offset 7) pass0 at amd0 bus 0 target 1 lun 0 pass0: Fixed Scanner SCSI-2 device=20 pass0: Serial Number I pass0: 3260358.656MB/s transfers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cd0 at amd0 bus 0 target 3 lun 0 cd0: Removable CD-ROM SCSI-2 device=20 cd0: Serial Number ' cd0: 10.000MB/s transfers (10.000MHz, offset 7) cd0: cd present [51814 x 2048 byte records] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 0:46:51 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1ACB37B401 for ; Mon, 10 Feb 2003 00:46:50 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 298F643F75 for ; Mon, 10 Feb 2003 00:46:50 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1A8knoH005267; Mon, 10 Feb 2003 00:46:49 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1A8kmf3005266; Mon, 10 Feb 2003 00:46:48 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Mon, 10 Feb 2003 00:46:48 -0800 From: David Schultz To: Poul-Henning Kamp Cc: current@FreeBSD.ORG Subject: Re: MSDOSFS wastes 256k when nothing is mounted! Message-ID: <20030210084648.GB5165@HAL9000.homeunix.com> Mail-Followup-To: Poul-Henning Kamp , current@FreeBSD.ORG References: <31456.1044819599@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <31456.1044819599@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Poul-Henning Kamp : > Somebody: please fix so this doesn't suck. Does msdosfs even have an active maintainer? There seem to be about half a dozen PRs open against it, one of which is a semi-obvious 4-line patch I submitted last April. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 0:55:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3070C37B406 for ; Mon, 10 Feb 2003 00:55:34 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E43643FD7 for ; Mon, 10 Feb 2003 00:54:13 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1A8sCoH005301; Mon, 10 Feb 2003 00:54:12 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1A8sCPD005300; Mon, 10 Feb 2003 00:54:12 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Mon, 10 Feb 2003 00:54:12 -0800 From: David Schultz To: David Leimbach Cc: freebsd-current@FreeBSD.ORG Subject: Re: Best method to produce patches? Message-ID: <20030210085412.GC5165@HAL9000.homeunix.com> Mail-Followup-To: David Leimbach , freebsd-current@FreeBSD.ORG References: <8A57567D-3C7E-11D7-8E7D-0003937E39E0@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8A57567D-3C7E-11D7-8E7D-0003937E39E0@mac.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake David Leimbach : > I am about to try to make some changes to FreeBSD current... > > Should I begin to use read-only CVS instead of CVSup for this work or > is it possible to generate diffs based on CVSup'd sources? > > What is the recommend method to use for playing with the source? > > I already found a small change in libc that should probably get > committed but I want to generate the patch properly for everyone's > approval. The best thing to do is to have a local copy of the entire repository, synced via cvsup. If you have multiple machines, you can even run a cvsup server on one of them, and sync them all from that. On older hardware that lacks sufficient disk space for the entire repo, I use anoncvs, but that's much more annoying. You need to hack up CVS/Entries manually to add and delete files, for instance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 1:37:37 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6732237B401; Mon, 10 Feb 2003 01:37:36 -0800 (PST) Received: from mailout09.sul.t-online.com (mailout09.sul.t-online.com [194.25.134.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8150643F85; Mon, 10 Feb 2003 01:37:35 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd10.sul.t-online.de by mailout09.sul.t-online.com with smtp id 18iANT-0005LV-0B; Mon, 10 Feb 2003 10:37:27 +0100 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[80.131.118.1]) by fmrl10.sul.t-online.com with esmtp id 18iANG-1881K4C; Mon, 10 Feb 2003 10:37:14 +0100 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) by Andro-Beta.Leidinger.net (8.12.6/8.12.6) with ESMTP id h1A9bD8Z003383; Mon, 10 Feb 2003 10:37:13 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.6/8.12.6) with SMTP id h1A9bDTV000750; Mon, 10 Feb 2003 10:37:13 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Mon, 10 Feb 2003 10:37:13 +0100 From: Alexander Leidinger To: Bruce Evans Cc: current@FreeBSD.ORG, phk@FreeBSD.ORG Subject: Re: Do we still have a FIFO / named pipe problem? Message-Id: <20030210103713.4ad1c810.Alexander@Leidinger.net> In-Reply-To: <20030210033714.O1731-100000@gamplex.bde.org> References: <20030209170616.2e4e3635.Alexander@Leidinger.net> <20030210033714.O1731-100000@gamplex.bde.org> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003 04:40:34 +1100 (EST) Bruce Evans wrote: > Untested fix for this and rev.1.79, and for a similar race in blocking > opens of named pipes for reading: Solves my problem. Bye, Alexander. -- Actually, Microsoft is sort of a mixture between the Borg and the Ferengi. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 2: 1:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9C9837B405 for ; Mon, 10 Feb 2003 02:01:47 -0800 (PST) Received: from disk.fnug.net (213.237.71.107.adsl.amb.worldonline.dk [213.237.71.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1161F43F75 for ; Mon, 10 Feb 2003 02:01:47 -0800 (PST) (envelope-from paul@fnug.net) Received: from fnug.net (unknown [192.168.0.3]) by disk.fnug.net (Postfix) with ESMTP id 79BC4449A; Mon, 10 Feb 2003 11:01:45 +0059 (CET) Message-ID: <3E477889.9060100@fnug.net> Date: Mon, 10 Feb 2003 11:01:45 +0100 From: "Paul A. Mayer" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030203 X-Accept-Language: en-us, en, da MIME-Version: 1.0 To: Rahul Siddharthan , freebsd-current@freebsd.org Subject: Re: Synaptics touchpad support References: <20030209220457.GA23187@papagena.rockefeller.edu> In-Reply-To: <20030209220457.GA23187@papagena.rockefeller.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Rahul, Well, it compiles on 5.0-Release-p1. The psm initialization gives some specs about the device and some of it's features. ... but I don't see any consequences of this in apps, like mozilla. And under gnome the pressure sensitivity of the touchpad (e.g., tap to click) is now gone. I have no great understanding of how any of this should work. Can you give some pointers. (How do I get touch sensitivity back? How should it be configured into X? Where should I be able to see the effects of the patch?) Thanks! /Paul Rahul Siddharthan wrote: > Lest this disappear, like so much else, into the black hole that is > GNATS, can some laptop user take a look at this? It works great for > me, I can now scroll using the "up" and "down" touchpad buttons which > were useless decorations earlier. Thanks to Marcin Dalecki. > PR kern/48116 > http://www.freebsd.org/cgi/query-pr.cgi?pr=48116 > > - Rahul > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 2: 6:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7337437B401 for ; Mon, 10 Feb 2003 02:06:25 -0800 (PST) Received: from scribble.fsn.hu (scribble.fsn.hu [193.224.40.95]) by mx1.FreeBSD.org (Postfix) with SMTP id ADD0A43FB1 for ; Mon, 10 Feb 2003 02:06:23 -0800 (PST) (envelope-from bra@fsn.hu) Received: (qmail 23959 invoked by uid 1000); 10 Feb 2003 10:06:21 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 10 Feb 2003 10:06:21 -0000 Date: Mon, 10 Feb 2003 11:06:21 +0100 (CET) From: Attila Nagy To: Gerrit =?iso-8859-1?Q?K=FChn?= Cc: Andre Guibert de Bruet , Vallo Kallaste , current@FreeBSD.ORG Subject: Re: Does bg fsck have problems with large filesystems? In-Reply-To: <20030209172437.GA59271@pmp.uni-hannover.de> Message-ID: References: <20030127174127.GD71664@pmp.uni-hannover.de> <20030128125432.GB4813@tiiu.internal> <20030128110546.L66869@alpha.siliconlandmark.com> <20030128173142.GF78630@pmp.uni-hannover.de> <20030209172437.GA59271@pmp.uni-hannover.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > > I'll try to reproduce the thing on my machine as soon as possible. > > Perhaps it was just because it was Monday, who knows... > Meanwhile I found out that my problem is 100% reproducible. Since then, I contacted Kirk McKusick, who told me that he will investigate this issue. I also gave him access to our machine, which has a 1.2 TB filesystem on it. I hope he can get in before I have to take that machine into production :) ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- Attila Nagy e-mail: Attila.Nagy@fsn.hu Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) cell.: +3630 306 6758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 2:20:29 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1967C37B401 for ; Mon, 10 Feb 2003 02:20:28 -0800 (PST) Received: from dart.sr.se (dart.sr.se [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7283443F75 for ; Mon, 10 Feb 2003 02:20:26 -0800 (PST) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.12.6/8.12.6) with ESMTP id h1AAKPRX039218 for ; Mon, 10 Feb 2003 11:20:25 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (oldie [134.25.200.100]) by honken.sr.se (8.12.3/8.12.3) with ESMTP id h1AAKP1j032475 for ; Mon, 10 Feb 2003 11:20:25 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.6/8.12.5) with ESMTP id h1AAKPn0057925 for ; Mon, 10 Feb 2003 11:20:25 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.6/8.12.6/Submit) id h1AAKOZK057924 for freebsd-current@freebsd.org; Mon, 10 Feb 2003 11:20:24 +0100 (CET) Date: Mon, 10 Feb 2003 11:20:24 +0100 From: Gunnar Flygt To: freebsd-current@freebsd.org Subject: Problems with Current & XFree86 Message-ID: <20030210102024.GA57755@sr.se> Reply-To: Gunnar Flygt Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Am I the only person having problems with a laptop with Current and XFree86? I have a Compaq Evo N800c witch runs with 4.7-STABLE and XFree86 with no problems. The exact same configuration for X and same version of XFree86-libs etc does not run on Current a few days old. The problems started a few weeks ago. just for a test i cvsup-ed to the lates XFree86 code. Same result. Since it works with 4.7-STABLE it must(?) be a current problem more than a XFree86 problem. Or? Any suggestions? -- Gunnar Flygt, SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 2:21:32 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B351F37B401 for ; Mon, 10 Feb 2003 02:21:30 -0800 (PST) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E6543F85 for ; Mon, 10 Feb 2003 02:21:29 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc03.attbi.com (sccrmhc03) with ESMTP id <2003021010212700300nl56fe>; Mon, 10 Feb 2003 10:21:28 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id CAA45668; Mon, 10 Feb 2003 02:21:27 -0800 (PST) Date: Mon, 10 Feb 2003 02:21:25 -0800 (PST) From: Julian Elischer To: Attila Nagy Cc: Gerrit =?iso-8859-1?Q?K=FChn?= , Andre Guibert de Bruet , Vallo Kallaste , current@FreeBSD.ORG Subject: Re: Does bg fsck have problems with large filesystems? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Attila Nagy wrote: > Hello, > > > > I'll try to reproduce the thing on my machine as soon as possible. > > > Perhaps it was just because it was Monday, who knows... > > Meanwhile I found out that my problem is 100% reproducible. > Since then, I contacted Kirk McKusick, who told me that he will > investigate this issue. > I also gave him access to our machine, which has a 1.2 TB filesystem on > it. I have a 1.9TB FS about 4 km from him.. > > I hope he can get in before I have to take that machine into production :) > > ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- > Attila Nagy e-mail: Attila.Nagy@fsn.hu > Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) > cell.: +3630 306 6758 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 2:24:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4B9437B401 for ; Mon, 10 Feb 2003 02:24:41 -0800 (PST) Received: from seed.net.tw (sn12.seed.net.tw [139.175.54.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBA1343F3F for ; Mon, 10 Feb 2003 02:24:40 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.131.202] (port=49170 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18iB79-000Nda-00 for freebsd-current@FreeBSD.ORG; Mon, 10 Feb 2003 18:24:39 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1AAOcgU014353 for ; Mon, 10 Feb 2003 18:24:39 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1AAOc1x014352 for freebsd-current@FreeBSD.ORG; Mon, 10 Feb 2003 18:24:38 +0800 (CST) Date: Mon, 10 Feb 2003 18:24:38 +0800 From: leafy To: freebsd-current@FreeBSD.ORG Subject: Re: Problems with Current & XFree86 Message-ID: <20030210102438.GA12706@leafy.idv.tw> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <20030210102024.GA57755@sr.se> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030210102024.GA57755@sr.se> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 10, 2003 at 11:20:24AM +0100, Gunnar Flygt wrote: > Since it works with 4.7-STABLE it must(?) be a current problem > more than a XFree86 problem. Or? > > Any suggestions? > > -- > Gunnar Flygt, SR Could you paste your /var/log/XFree86*.log with the error parts? Maybe some will be able to detemine the cause of the errors. JY -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 3:20: 9 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9942037B40A for ; Mon, 10 Feb 2003 03:20:07 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3729143FA3 for ; Mon, 10 Feb 2003 03:20:06 -0800 (PST) (envelope-from j@uriah.heep.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id MAA25087 for current@freebsd.org; Mon, 10 Feb 2003 12:20:05 +0100 (CET) Received: from uriah.heep.sax.de (localhost.heep.sax.de [127.0.0.1]) by uriah.heep.sax.de (8.12.6/8.12.6) with ESMTP id h1ABDl2X010572 for ; Mon, 10 Feb 2003 12:13:47 +0100 (MET) (envelope-from j@uriah.heep.sax.de) Received: (from j@localhost) by uriah.heep.sax.de (8.12.6/8.12.6/Submit) id h1ABDlDw010571 for current@freebsd.org; Mon, 10 Feb 2003 12:13:47 +0100 (MET) Date: Mon, 10 Feb 2003 12:13:47 +0100 From: Joerg Wunsch To: current@freebsd.org Subject: Abysmal performance for restore -r Message-ID: <20030210121347.A8577@uriah.heep.sax.de> Reply-To: Joerg Wunsch Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Since growfs still doesn't work, i needed to newfs & restore the following filesystem after expanding the volume: uriah # df -k -i /dev/vinum/home_cvs Filesystem 1K-blocks Used Avail Capacity iused ifree %iused Mounted on /dev/vinum/home_cvs 4125838 2911856 883916 77% 235970 305724 44% /home/cvs restore(8)ing it from tape took about 7.5 hours(!) in order to create the 34332 directory inodes on it; that's about 1.2 directory creations per second. The machine was basically grinding to a halt while this happened, iostat (when it was possible to report something at all) reported > 350 transactions per second for both participating disks (which doesn't sound all that bad to me, the disks are 10000 rpm not too old drives). In contrast, restoring the ~ 3 GB of contents (still > 250000 files) didn't even take an hour to complete. The filesystem has been newfs'ed with defaults + softupdates: uriah # newfs -N -U /dev/vinum/home_cvs /dev/vinum/home_cvs: 4096.0MB (8388608 sectors) block size 16384, fragment size 2048 using 23 cylinder groups of 183.69MB, 11756 blks, 23552 inodes. with soft updates Does anybody have an idea why this was so terrible slow? (The kernel is at 5.0-RCsomething, in case that matters.) -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 3:36:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4448137B401 for ; Mon, 10 Feb 2003 03:36:36 -0800 (PST) Received: from dart.sr.se (dart.sr.se [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72F1E43F85 for ; Mon, 10 Feb 2003 03:36:34 -0800 (PST) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.12.6/8.12.6) with ESMTP id h1ABaXiX044668 for ; Mon, 10 Feb 2003 12:36:33 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (oldie [134.25.200.100]) by honken.sr.se (8.12.3/8.12.3) with ESMTP id h1ABaX1j037336 for ; Mon, 10 Feb 2003 12:36:33 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.6/8.12.5) with ESMTP id h1ABaXn0059352 for ; Mon, 10 Feb 2003 12:36:33 +0100 (CET) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.6/8.12.6/Submit) id h1ABaXnG059351 for freebsd-current@freebsd.org; Mon, 10 Feb 2003 12:36:33 +0100 (CET) Date: Mon, 10 Feb 2003 12:36:33 +0100 From: Gunnar Flygt To: freebsd-current@freebsd.org Subject: Problems with Current & XFree86 Message-ID: <20030210113633.GA59322@sr.se> Reply-To: Gunnar Flygt Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Resending due to the fact that I didn' include the /var/log/XFree86.0.log I have a Compaq Evo N800c witch runs with 4.7-STABLE and XFree86 with no problems. The exact same configuration for X and same version of XFree86-libs etc does not run on Current a few days old. The problems started a few weeks ago. just for a test i cvsup-ed to the lates XFree86 code. Same result. Since it works with 4.7-STABLE it must(?) be a current problem more than a XFree86 problem. Or? Any suggestions? Attaching the log file -- Gunnar Flygt, Postmaster SR --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="XFree86.0.log" This is a pre-release version of XFree86, and is not supported in any way. Bugs may be reported to XFree86@XFree86.Org and patches submitted to fixes@XFree86.Org. Before reporting bugs in pre-release versions, please check the latest version in the XFree86 CVS repository (http://www.XFree86.Org/cvs). XFree86 Version 4.2.99.901 (4.3.0 RC 1) Release Date: 8 February 2003 X Protocol Version 11, Revision 0, Release 6.6 Build Operating System: FreeBSD 5.0-CURRENT i386 [ELF] Build Date: 10 February 2003 Before reporting problems, check http://www.XFree86.Org/ to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Mon Feb 10 11:15:19 2003 (==) Using config file: "/usr/X11R6/lib/X11/XF86Config-4" (==) ServerLayout "XFree86 Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "pc105" (**) XKB: model: "pc105" (**) Option "XkbLayout" "se" (**) XKB: layout: "se" (**) Option "XkbOptions" "compose:rwin" (**) XKB: options: "compose:rwin" (==) Keyboard: CustomKeycode disabled (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (**) ModulePath set to "/usr/X11R6/lib/modules" (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (II) Module ABI versions: XFree86 ANSI C Emulation: 0.2 XFree86 Video Driver: 0.6 XFree86 XInput driver : 0.4 XFree86 Server Extension : 0.2 XFree86 Font Renderer : 0.4 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.4 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.6 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,1a30 card 0e11,004a rev 04 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 04 class 06,04,00 hdr 01 (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev 42 class 06,04,00 hdr 01 (II) PCI: 00:1f:0: chip 8086,248c card 0000,0000 rev 02 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,248a card 0e11,004a rev 02 class 01,01,8a hdr 00 (II) PCI: 00:1f:5: chip 8086,2485 card 0e11,004a rev 02 class 04,01,00 hdr 00 (II) PCI: 01:00:0: chip 1002,4c57 card 0e11,004a rev 00 class 03,00,00 hdr 00 (II) PCI: 02:04:0: chip 11c1,0450 card 1468,0450 rev 02 class 07,80,00 hdr 00 (II) PCI: 02:06:0: chip 104c,ac50 card fffc,ffff rev 02 class 06,07,00 hdr 02 (II) PCI: 02:08:0: chip 8086,1031 card 0e11,0093 rev 42 class 02,00,00 hdr 00 (II) PCI: 02:0e:0: chip 1033,0035 card 0e11,004a rev 41 class 0c,03,10 hdr 80 (II) PCI: 02:0e:1: chip 1033,0035 card 0e11,004a rev 41 class 0c,03,10 hdr 00 (II) PCI: 02:0e:2: chip 1033,00e0 card 0e11,004a rev 02 class 0c,03,20 hdr 00 (II) PCI: End of PCI scan (II) Host-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (0,0,3), BCTRL: 0x0008 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] (II) PCI-to-PCI bridge: (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set) (II) Bus 1 I/O range: [0] -1 0 0x00003000 - 0x000030ff (0x100) IX[B] [1] -1 0 0x00003400 - 0x000034ff (0x100) IX[B] [2] -1 0 0x00003800 - 0x000038ff (0x100) IX[B] [3] -1 0 0x00003c00 - 0x00003cff (0x100) IX[B] (II) Bus 1 non-prefetchable memory range: [0] -1 0 0x80300000 - 0x803fffff (0x100000) MX[B] (II) Bus 1 prefetchable memory range: [0] -1 0 0x88000000 - 0x900fffff (0x8100000) MX[B] (II) PCI-to-PCI bridge: (II) Bus 2: bridge is at (0:30:0), (0,2,3), BCTRL: 0x0006 (VGA_EN is cleared) (II) Bus 2 I/O range: [0] -1 0 0x00002000 - 0x000020ff (0x100) IX[B] [1] -1 0 0x00002400 - 0x000024ff (0x100) IX[B] [2] -1 0 0x00002800 - 0x000028ff (0x100) IX[B] [3] -1 0 0x00002c00 - 0x00002cff (0x100) IX[B] (II) Bus 2 non-prefetchable memory range: [0] -1 0 0x80000000 - 0x803fffff (0x400000) MX[B] (II) PCI-to-ISA bridge: (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set) (II) PCI-to-CardBus bridge: (II) Bus 3: bridge is at (2:6:0), (2,3,3), BCTRL: 0x0744 (VGA_EN is cleared) (--) PCI:*(1:0:0) ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500] rev 0, Mem @ 0x88000000/27, 0x80380000/16, I/O @ 0x3000/8 (II) Addressable bus resource ranges are [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B] [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) OS-reported resource ranges: [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) PCI Memory resource overlap reduced 0xa0000000 from 0xbfffffff to 0x9fffffff (II) Active PCI resource ranges: [0] -1 0 0x80300000 - 0x803fffff (0x100000) MX[B]E [1] -1 0 0x80200000 - 0x803fffff (0x200000) MX[B]E [2] -1 0 0x80180000 - 0x801fffff (0x80000) MX[B]E [3] -1 0 0x80100000 - 0x801fffff (0x100000) MX[B]E [4] -1 0 0x80280000 - 0x802fffff (0x80000) MX[B]E [5] -1 0 0xa0000000 - 0x9fffffff (0x0) MX[B]EO [6] -1 0 0x80380000 - 0x8038ffff (0x10000) MX[B](B) [7] -1 0 0x88000000 - 0x8fffffff (0x8000000) MX[B](B) [8] -1 0 0x00002400 - 0x000024ff (0x100) IX[B]E [9] -1 0 0x00002000 - 0x000020ff (0x100) IX[B]E [10] -1 0 0x00002440 - 0x0000247f (0x40) IX[B]E [11] -1 0 0x00004400 - 0x000044ff (0x100) IX[B]E [12] -1 0 0x00004000 - 0x000040ff (0x100) IX[B]E [13] -1 0 0x00004440 - 0x0000447f (0x40) IX[B]E [14] -1 0 0x00003000 - 0x000030ff (0x100) IX[B](B) (II) PCI Memory resource overlap reduced 0x80300000 from 0x803fffff to 0x8037ffff (II) PCI Memory resource overlap reduced 0x80200000 from 0x803fffff to 0x8027ffff (II) PCI I/O resource overlap reduced 0x00002400 from 0x000024ff to 0x0000243f (II) PCI Memory resource overlap reduced 0x80100000 from 0x801fffff to 0x8017ffff (II) PCI I/O resource overlap reduced 0x00004400 from 0x000044ff to 0x0000443f (II) Active PCI resource ranges after removing overlaps: [0] -1 0 0x80300000 - 0x8037ffff (0x80000) MX[B]E [1] -1 0 0x80200000 - 0x8027ffff (0x80000) MX[B]E [2] -1 0 0x80180000 - 0x801fffff (0x80000) MX[B]E [3] -1 0 0x80100000 - 0x8017ffff (0x80000) MX[B]E [4] -1 0 0x80280000 - 0x802fffff (0x80000) MX[B]E [5] -1 0 0xa0000000 - 0x9fffffff (0x0) MX[B]EO [6] -1 0 0x80380000 - 0x8038ffff (0x10000) MX[B](B) [7] -1 0 0x88000000 - 0x8fffffff (0x8000000) MX[B](B) [8] -1 0 0x00002400 - 0x0000243f (0x40) IX[B]E [9] -1 0 0x00002000 - 0x000020ff (0x100) IX[B]E [10] -1 0 0x00002440 - 0x0000247f (0x40) IX[B]E [11] -1 0 0x00004400 - 0x0000443f (0x40) IX[B]E [12] -1 0 0x00004000 - 0x000040ff (0x100) IX[B]E [13] -1 0 0x00004440 - 0x0000447f (0x40) IX[B]E [14] -1 0 0x00003000 - 0x000030ff (0x100) IX[B](B) (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0 0x80300000 - 0x8037ffff (0x80000) MX[B]E [6] -1 0 0x80200000 - 0x8027ffff (0x80000) MX[B]E [7] -1 0 0x80180000 - 0x801fffff (0x80000) MX[B]E [8] -1 0 0x80100000 - 0x8017ffff (0x80000) MX[B]E [9] -1 0 0x80280000 - 0x802fffff (0x80000) MX[B]E [10] -1 0 0xa0000000 - 0x9fffffff (0x0) MX[B]EO [11] -1 0 0x80380000 - 0x8038ffff (0x10000) MX[B](B) [12] -1 0 0x88000000 - 0x8fffffff (0x8000000) MX[B](B) [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [15] -1 0 0x00002400 - 0x0000243f (0x40) IX[B]E [16] -1 0 0x00002000 - 0x000020ff (0x100) IX[B]E [17] -1 0 0x00002440 - 0x0000247f (0x40) IX[B]E [18] -1 0 0x00004400 - 0x0000443f (0x40) IX[B]E [19] -1 0 0x00004000 - 0x000040ff (0x100) IX[B]E [20] -1 0 0x00004440 - 0x0000447f (0x40) IX[B]E [21] -1 0 0x00003000 - 0x000030ff (0x100) IX[B](B) (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.2 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.2 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension FontCache (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "glx" (II) Loading /usr/X11R6/lib/modules/extensions/libglx.a (II) Module glx: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 ABI class: XFree86 Server Extension, version 0.2 (II) Loading sub module "GLcore" (II) LoadModule: "GLcore" (II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a (II) Module GLcore: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 ABI class: XFree86 Server Extension, version 0.2 (II) Loading extension GLX (II) LoadModule: "pex5" (II) Loading /usr/X11R6/lib/modules/extensions/libpex5.a (II) Module pex5: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension X3D-PEX (II) LoadModule: "record" (II) Loading /usr/X11R6/lib/modules/extensions/librecord.a (II) Module record: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.13.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.2 (II) Loading extension RECORD (II) LoadModule: "xie" (II) Loading /usr/X11R6/lib/modules/extensions/libxie.a (II) Module xie: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension XIE (II) LoadModule: "xtrap" (II) Loading /usr/X11R6/lib/modules/extensions/libxtrap.a (II) Module xtrap: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.2 (II) Loading extension DEC-XTRAP (II) LoadModule: "speedo" (II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a (II) Module speedo: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.1 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.4 (II) Loading font Speedo (II) LoadModule: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.2 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.4 (II) Loading font Type1 (II) Loading font CID (II) LoadModule: "ati" (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o (II) Module ati: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 6.4.18 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.6 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 Module class: XFree86 XInput Driver ABI class: XFree86 XInput driver, version 0.4 (II) ATI: ATI driver (version 6.4.18) for chipsets: ati, ativga (II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP), ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP), ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP), ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI), ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP), ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP), ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP), ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP), ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP), ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI), ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI), ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP), ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP), ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP), ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI), ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP), ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP), ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP), ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP), ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP), ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP), ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?), ATI Rage 128 Pro ULTRA TU (AGP?) (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI Radeon VE/7000 QY (AGP), ATI Radeon VE/7000 QZ (AGP), ATI Radeon Mobility M7 LW (AGP), ATI Mobility FireGL 7800 M7 LX (AGP), ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QI (AGP), ATI Radeon 8500 QJ (AGP), ATI Radeon 8500 QK (AGP), ATI Radeon 8500 QL (AGP), ATI Radeon 9100 QM (AGP), ATI Radeon 8500 QN (AGP), ATI Radeon 8500 QO (AGP), ATI Radeon 8500 Qh (AGP), ATI Radeon 8500 Qi (AGP), ATI Radeon 8500 Qj (AGP), ATI Radeon 8500 Qk (AGP), ATI Radeon 8500 Ql (AGP), ATI Radeon 8500 BB (AGP), ATI Radeon 7500 QW (AGP), ATI Radeon 7500 QX (AGP), ATI Radeon 9000 Id (AGP), ATI Radeon 9000 Ie (AGP), ATI Radeon 9000 If (AGP), ATI Radeon 9000 Ig (AGP), ATI Radeon Mobility M9 Ld (AGP), ATI Radeon Mobility M9 Le (AGP), ATI Radeon Mobility M9 Lf (AGP), ATI Radeon Mobility M9 Lg (AGP), ATI Radeon 9500 AD (AGP), ATI Radeon 9500 AE (AGP), ATI Radeon 9500 AF (AGP), ATI FireGL Z1/X1 AG (AGP), ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP), ATI FireGL X1 NG (AGP) (II) Primary Device is: PCI 01:00:0 (II) ATI: Candidate "Device" section "Card0". (--) Chipset ATI Radeon Mobility M7 LW (AGP) found (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0 0x80300000 - 0x8037ffff (0x80000) MX[B]E [6] -1 0 0x80200000 - 0x8027ffff (0x80000) MX[B]E [7] -1 0 0x80180000 - 0x801fffff (0x80000) MX[B]E [8] -1 0 0x80100000 - 0x8017ffff (0x80000) MX[B]E [9] -1 0 0x80280000 - 0x802fffff (0x80000) MX[B]E [10] -1 0 0xa0000000 - 0x9fffffff (0x0) MX[B]EO [11] -1 0 0x80380000 - 0x8038ffff (0x10000) MX[B](B) [12] -1 0 0x88000000 - 0x8fffffff (0x8000000) MX[B](B) [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [15] -1 0 0x00002400 - 0x0000243f (0x40) IX[B]E [16] -1 0 0x00002000 - 0x000020ff (0x100) IX[B]E [17] -1 0 0x00002440 - 0x0000247f (0x40) IX[B]E [18] -1 0 0x00004400 - 0x0000443f (0x40) IX[B]E [19] -1 0 0x00004000 - 0x000040ff (0x100) IX[B]E [20] -1 0 0x00004440 - 0x0000447f (0x40) IX[B]E [21] -1 0 0x00003000 - 0x000030ff (0x100) IX[B](B) (II) Loading sub module "radeon" (II) LoadModule: "radeon" (II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o (II) Module radeon: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 4.0.1 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.6 (II) resource ranges after probing: [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0 0x80300000 - 0x8037ffff (0x80000) MX[B]E [6] -1 0 0x80200000 - 0x8027ffff (0x80000) MX[B]E [7] -1 0 0x80180000 - 0x801fffff (0x80000) MX[B]E [8] -1 0 0x80100000 - 0x8017ffff (0x80000) MX[B]E [9] -1 0 0x80280000 - 0x802fffff (0x80000) MX[B]E [10] -1 0 0xa0000000 - 0x9fffffff (0x0) MX[B]EO [11] -1 0 0x80380000 - 0x8038ffff (0x10000) MX[B](B) [12] -1 0 0x88000000 - 0x8fffffff (0x8000000) MX[B](B) [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [18] -1 0 0x00002400 - 0x0000243f (0x40) IX[B]E [19] -1 0 0x00002000 - 0x000020ff (0x100) IX[B]E [20] -1 0 0x00002440 - 0x0000247f (0x40) IX[B]E [21] -1 0 0x00004400 - 0x0000443f (0x40) IX[B]E [22] -1 0 0x00004000 - 0x000040ff (0x100) IX[B]E [23] -1 0 0x00004440 - 0x0000447f (0x40) IX[B]E [24] -1 0 0x00003000 - 0x000030ff (0x100) IX[B](B) [25] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [26] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.6 (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (II) RADEON(0): PCI bus 1 card 0 func 0 (**) RADEON(0): Depth 24, (--) framebuffer bpp 32 (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) (==) RADEON(0): Default visual is TrueColor (==) RADEON(0): RGB weight 888 (II) RADEON(0): Using 8 bits per RGB (8 bit DAC) (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.6 (II) RADEON(0): initializing int10 (==) RADEON(0): Write-combining range (0xa0000,0x20000) was already clear (==) RADEON(0): Write-combining range (0xc0000,0x40000) (II) RADEON(0): Primary V_BIOS segment is: 0xc000 (==) RADEON(0): Write-combining range (0x0,0x1000) was already clear (--) RADEON(0): Chipset: "ATI Radeon Mobility M7 LW (AGP)" (ChipID = 0x4c57) (--) RADEON(0): Linear framebuffer at 0x88000000 (--) RADEON(0): MMIO registers at 0x80380000 (==) RADEON(0): Write-combining range (0x80380000,0x80000) was already clear (--) RADEON(0): VideoRAM: 65536 kByte (64-bit DDR SDRAM) (==) RADEON(0): Write-combining range (0x80380000,0x80000) was already clear (II) RADEON(0): CloneDisplay option not set -- defaulting to auto-detect (II) RADEON(0): Primary Display == Type 2 (II) RADEON(0): Panel ID string: LGP (II) RADEON(0): Panel Size from BIOS: 1600x1200 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.6 (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Loading /usr/X11R6/lib/modules/libi2c.a (II) Module i2c: vendor="The XFree86 Project" compiled for 4.2.99.901, module version = 1.2.0 ABI class: XFree86 Video Driver, version 0.6 (II) RADEON(0): I2C bus "DDC" initialized. (II) RADEON(0): PLL parameters: rf=2700 rd=12 min=12000 max=35000; xclk=18375 (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0) (II) RADEON(0): Validating modes on Primary head (DDCType: 2) --------- (==) RADEON(0): Write-combining range (0x80380000,0x80000) was already clear (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0. (II) RADEON(0): I2C device "DDC:ddc2" removed. (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0. (II) RADEON(0): I2C device "DDC:ddc2" removed. (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0. (II) RADEON(0): I2C device "DDC:ddc2" removed. (II) RADEON(0): Total number of valid DDC mode(s) found: 0 (II) RADEON(0): No valid mode specified, force to native mdoe (II) RADEON(0): Total number of valid FP mode(s) found: 0 (EE) RADEON(0): No valid mode found for this DFP/LCD (==) RADEON(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "ati" (II) UnloadModule: "i2c" (II) Unloading /usr/X11R6/lib/modules/libi2c.a (II) UnloadModule: "ddc" (II) Unloading /usr/X11R6/lib/modules/libddc.a (II) UnloadModule: "int10" (II) Unloading /usr/X11R6/lib/modules/libint10.a (II) UnloadModule: "vgahw" (II) Unloading /usr/X11R6/lib/modules/libvgahw.a (II) UnloadModule: "radeon" (II) Unloading /usr/X11R6/lib/modules/drivers/radeon_drv.o (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found When reporting a problem related to a server crash, please send the full server output, not just the last messages. This can be found in the log file "/var/log/XFree86.0.log". Please report problems to xfree86@xfree86.org. --LQksG6bCIzRHxTLp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4: 6:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C14CD37B401 for ; Mon, 10 Feb 2003 04:06:48 -0800 (PST) Received: from scribble.fsn.hu (scribble.fsn.hu [193.224.40.95]) by mx1.FreeBSD.org (Postfix) with SMTP id 4337643F85 for ; Mon, 10 Feb 2003 04:06:47 -0800 (PST) (envelope-from bra@fsn.hu) Received: (qmail 25157 invoked by uid 1000); 10 Feb 2003 12:06:46 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 10 Feb 2003 12:06:46 -0000 Date: Mon, 10 Feb 2003 13:06:46 +0100 (CET) From: Attila Nagy To: Julian Elischer Cc: Gerrit =?iso-8859-1?Q?K=FChn?= , Andre Guibert de Bruet , Vallo Kallaste , current@FreeBSD.ORG Subject: Re: Does bg fsck have problems with large filesystems? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > > I also gave him access to our machine, which has a 1.2 TB filesystem > > on it. > I have a 1.9TB FS about 4 km from him.. That's great! Could you please contact him? (do you also have this problem, BTW?) Thanks, ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- Attila Nagy e-mail: Attila.Nagy@fsn.hu Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) cell.: +3630 306 6758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4: 8:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EFC237B401 for ; Mon, 10 Feb 2003 04:08:55 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 903F443F3F for ; Mon, 10 Feb 2003 04:08:54 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0003.cvx22-bradley.dialup.earthlink.net ([209.179.198.3] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18iCjy-00005u-00; Mon, 10 Feb 2003 04:08:51 -0800 Message-ID: <3E4795FD.5B614232@mindspring.com> Date: Mon, 10 Feb 2003 04:07:25 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: "Paul A. Mayer" Cc: Rahul Siddharthan , freebsd-current@freebsd.org Subject: Re: Synaptics touchpad support References: <20030209220457.GA23187@papagena.rockefeller.edu> <3E477889.9060100@fnug.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4fd7664590b0d849029919aa735be81db350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Paul A. Mayer" wrote: > Well, it compiles on 5.0-Release-p1. The psm initialization gives some > specs about the device and some of it's features. ... but I don't see > any consequences of this in apps, like mozilla. And under gnome the > pressure sensitivity of the touchpad (e.g., tap to click) is now gone. > > I have no great understanding of how any of this should work. Can you > give some pointers. (How do I get touch sensitivity back? How should > it be configured into X? Where should I be able to see the effects of > the patch?) You actually lose the tap/tap-tap click and doubleclick button emulation with the new driver, and, as you note, the pressure sensitivity. Both of these issues were noted when the driver was posted for review. It semed the consensus at the time that until at least the tap/tap-tap was brought back (via software emulation), the driver would not be replaced, only optioned. You can check the list archives for details, I think. The "pressure sensitivity is, I think, really an area sensitivity and not a real pressure sensitivity (I can't imagine actually losing an axis of data!). That would mean, like the tap/tap-tap, it could be emulated in software. Probably the best thing to do would be to disassemble the BIOS on your box, knowing the difference between the older driver's interface, and use the same techniques that were hidden from the older driver (and "just built in" instead). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4:17:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D75C37B406 for ; Mon, 10 Feb 2003 04:17:08 -0800 (PST) Received: from beast.freebsd.org (beast.freebsd.org [216.136.204.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9761243FA3 for ; Mon, 10 Feb 2003 04:17:07 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from beast.freebsd.org (localhost [127.0.0.1]) by beast.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ACH77h099076 for ; Mon, 10 Feb 2003 04:17:07 -0800 (PST) (envelope-from des@beast.freebsd.org) Received: (from des@localhost) by beast.freebsd.org (8.12.7/8.12.6/Submit) id h1ACH7bp099074 for current@freebsd.org; Mon, 10 Feb 2003 04:17:07 -0800 (PST) Date: Mon, 10 Feb 2003 04:17:07 -0800 (PST) From: Dag-Erling Smorgrav Message-Id: <200302101217.h1ACH7bp099074@beast.freebsd.org> To: current@freebsd.org Subject: alpha tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- >>> Kernel build for GENERIC started on Mon Feb 10 03:14:59 PST 2003 -------------------------------------------------------------- >>> Kernel build for GENERIC completed on Mon Feb 10 03:46:44 PST 2003 -------------------------------------------------------------- >>> Kernel build for LINT started on Mon Feb 10 03:46:45 PST 2003 -------------------------------------------------------------- ===> vinum "Makefile", line 4458: warning: duplicate script for target "geom_bsd.o" ignored /h/des/src/sys/dev/lmc/if_lmc.c:32:2: warning: #warning "The lmc driver is broken and is not compiled with LINT" /h/des/src/sys/dev/pdq/pdq.c: In function `pdq_initialize': /h/des/src/sys/dev/pdq/pdq.c:1606: warning: cast discards qualifiers from pointer target type /h/des/src/sys/pci/meteor.c:149:2: warning: #warning "The meteor driver is broken and is not compiled with LINT" /h/des/src/sys/pci/simos.c:30:2: warning: #warning "The simos driver is broken and is not compiled with LINT" /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_open': /h/des/src/sys/dev/gfb/gfb_pci.c:268: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:268: (Each undeclared identifier is reported only once /h/des/src/sys/dev/gfb/gfb_pci.c:268: for each function it appears in.) cc1: warnings being treated as errors /h/des/src/sys/dev/gfb/gfb_pci.c:275: warning: passing arg 1 of `genfbopen' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_close': /h/des/src/sys/dev/gfb/gfb_pci.c:284: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:285: warning: passing arg 1 of `genfbclose' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_read': /h/des/src/sys/dev/gfb/gfb_pci.c:293: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:294: warning: passing arg 1 of `genfbread' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_write': /h/des/src/sys/dev/gfb/gfb_pci.c:302: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:303: warning: passing arg 1 of `genfbwrite' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_ioctl': /h/des/src/sys/dev/gfb/gfb_pci.c:311: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:312: warning: passing arg 1 of `genfbioctl' from incompatible pointer type /h/des/src/sys/dev/gfb/gfb_pci.c: In function `pcigfb_mmap': /h/des/src/sys/dev/gfb/gfb_pci.c:320: `gfb_devclass' undeclared (first use in this function) /h/des/src/sys/dev/gfb/gfb_pci.c:321: warning: passing arg 1 of `genfbmmap' from incompatible pointer type *** Error code 1 Stop in /h/des/obj/h/des/src/sys/LINT. *** Error code 1 Stop in /h/des/src. *** Error code 1 Stop in /h/des/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4:41:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A9F737B401 for ; Mon, 10 Feb 2003 04:41:56 -0800 (PST) Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B04E43F3F for ; Mon, 10 Feb 2003 04:41:55 -0800 (PST) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id h1ACfrJ36073 for ; Mon, 10 Feb 2003 21:41:53 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 39 From: Makoto Matsushita To: current@FreeBSD.org Subject: Comments welcome: 1-line patch: teach FTP_PASSIVE_MODE to ${CHROOT}/mk Date: Mon, 10 Feb 2003 21:41:51 +0900 Message-Id: <20030210214151H.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'd like to commit following patch to src/release/Makefile. Here's background: A user may want to build their own FreeBSD distribution. During the release build, pkg_add(1) runs within chroot sandbox to install mkisofs(8) iff MAKE_ISOS=YES. Imagine what's happen if the user is living behind the Internet firewall -- pkg_add(1) try to fetch the package from outside but it can't since firewall usually doesn't allow outer-to-inner connections. According to the pkg_add(1) manpage, FTP_PASSIVE_MODE environment variable enables passive ftp connections. You know there are many solutions about this issue. IIRC, it can be easily fixed with "passing FTP_PASSIVE_MODE variable to the chroot sandbox." Following patch was tested on FreeBSD/i386, and it should work on other archs since this is arch-independent code. If there's no problem around, I'll commit it later. Any comments and/or suggestions are welcome. -- - Makoto `MAR' Matsushita Index: Makefile =================================================================== RCS file: /home/ncvs/src/release/Makefile,v retrieving revision 1.749 diff -u -r1.749 Makefile --- Makefile 4 Feb 2003 16:07:20 -0000 1.749 +++ Makefile 10 Feb 2003 11:19:41 -0000 @@ -430,6 +430,7 @@ DOMINIMALDOCPORTS \ EXTRA_SRC \ FIXCRYPTO \ + FTP_PASSIVE_MODE \ KERNELS \ KERNEL_FLAGS \ MAKE_ISOS \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4:46:36 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C05B37B401 for ; Mon, 10 Feb 2003 04:46:33 -0800 (PST) Received: from mail.tcoip.com.br (erato.tco.net.br [200.220.254.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 228DB43FBF for ; Mon, 10 Feb 2003 04:46:30 -0800 (PST) (envelope-from dcs@tcoip.com.br) Received: from tcoip.com.br ([10.0.2.6]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id h1ACjee10615; Mon, 10 Feb 2003 10:45:40 -0200 Message-ID: <3E479EF4.4060008@tcoip.com.br> Date: Mon, 10 Feb 2003 10:45:40 -0200 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3a) Gecko/20030206 X-Accept-Language: en-us, en, pt-br, ja MIME-Version: 1.0 To: "Coercitas Temet'Nosce" Cc: "'Don'" , current@FreeBSD.ORG Subject: Re: RE : IPFilter References: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> In-Reply-To: <008e01c2d06e$72c1d200$bede1e0a@XG396.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Coercitas Temet'Nosce wrote: > Pardon my poor knowledge about IPFW 2 but if I remember well, IPFW > wasn't a SPI Firewall, which is what I need. Btw, previous Kernel allow= s > us to fine tune its building for IPF and now, it simply gone...was > really wondering where those features are. What, exactly, is a 'SPI' firewall? If you mean stateful firewall, you=20 haven't looking into ipfw for at least five years (making your remark=20 obsolete, not ipfw :). The only thing I couldn't do with the old ipfw was atomic replacement of = rules. With ipfw2 I can do that. ipfw2 is default on 5.0 and can be=20 turned on on 4.7 (options IPFW2 on kernel and WITH_IPFW2, iirc, on=20 make.conf). The '2' is the version, the binary, man pages etc still have = all the same names. >=20 > Is there any web place where I can find stuff about IPFW2 by chance ? >=20 > regards >=20 > -----Message d'origine----- > De : owner-freebsd-current@FreeBSD.ORG > [mailto:owner-freebsd-current@FreeBSD.ORG] De la part de Don > Envoy=E9 : dimanche 9 f=E9vrier 2003 19:47 > =C0 : Coercitas Temet'Nosce > Cc : current@freebsd.org > Objet : Re: TR : IPFilter >=20 >=20 >>Btw, I was looking for some docs on the FreeBSD website and didn't >=20 > found >=20 >>anything interesting, only firewall that FreeBSD seems to support >>nowadays >>is the old IPFW, which is quite obsolete now imo. Why are >=20 > documentation >=20 >>pages not dealing with IPF at all ? is there any reason ? >=20 > Try ipfw2 >=20 > -Don >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message --=20 Daniel C. Sobral (8-DCS) Gerencia de Operacoes Divisao de Comunicacao de Dados Coordenacao de Seguranca TCO Fones: 55-61-313-7654/Cel: 55-61-9618-0904 E-mail: Daniel.Capo@tco.net.br Daniel.Sobral@tcoip.com.br dcs@tcoip.com.br Outros: dcs@newsguy.com dcs@freebsd.org capo@notorious.bsdconspiracy.net The past always looks better than it was. It's only pleasant because it isn't here. -- Finley Peter Dunne (Mr. Dooley) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4:51:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8335237B401 for ; Mon, 10 Feb 2003 04:51:15 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81EFA43FBD for ; Mon, 10 Feb 2003 04:51:14 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6224F536E; Mon, 10 Feb 2003 13:51:11 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Makoto Matsushita Cc: current@FreeBSD.org Subject: Re: Comments welcome: 1-line patch: teach FTP_PASSIVE_MODE to ${CHROOT}/mk From: Dag-Erling Smorgrav Date: Mon, 10 Feb 2003 13:51:11 +0100 In-Reply-To: <20030210214151H.matusita@jp.FreeBSD.org> (Makoto Matsushita's message of "Mon, 10 Feb 2003 21:41:51 +0900") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030210214151H.matusita@jp.FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Makoto Matsushita writes: > You know there are many solutions about this issue. IIRC, it can be > easily fixed with "passing FTP_PASSIVE_MODE variable to the chroot > sandbox." Following patch was tested on FreeBSD/i386, and it should > work on other archs since this is arch-independent code. You may want to do the same thing with HTTP_PROXY and FTP_PROXY. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 4:52:45 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2930C37B401 for ; Mon, 10 Feb 2003 04:52:37 -0800 (PST) Received: from netmail01.services.quay.plus.net (netmail01.services.quay.plus.net [212.159.14.219]) by mx1.FreeBSD.org (Postfix) with SMTP id 64B1A43F75 for ; Mon, 10 Feb 2003 04:52:35 -0800 (PST) (envelope-from trent@limekiln.vcisp.net) Received: (qmail 21335 invoked from network); 10 Feb 2003 12:52:33 -0000 Received: from limekiln.vcisp.net (212.159.16.110) by netmail01.services.quay.plus.net with SMTP; 10 Feb 2003 12:52:33 -0000 Received: by limekiln.vcisp.net (Postfix, from userid 1001) id 5434C589; Mon, 10 Feb 2003 12:52:30 +0000 (GMT) Date: Mon, 10 Feb 2003 12:52:30 +0000 From: Trent Nelson To: David Leimbach Cc: freebsd-current@freebsd.org Subject: Re: Best method to produce patches? Message-ID: <20030210125230.GA70855@limekiln.vcisp.net> References: <8A57567D-3C7E-11D7-8E7D-0003937E39E0@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8A57567D-3C7E-11D7-8E7D-0003937E39E0@mac.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 04:33:41PM -0600, David Leimbach wrote: > I am about to try to make some changes to FreeBSD current... > > What is the recommend method to use for playing with the source? I've attached an e-mail from Matt Dillon that gives a very good de- scription for setting up a FreeBSD development environment. > Thanks! > > Dave Leimbach Date: Sat, 21 Dec 2002 16:41:23 -0800 (PST) From: Matthew Dillon To: Trent Nelson Subject: Re: Trying to chase up an old post. :Hi Matt, : : You posted something to current@freebsd.org (or hackers@ possibly) : just over a year ago describing how you set up your -stable and : -current environments for doing development. : : I've attempted to search for the post, but I'm coming up with false : hits left right and centre. Any idea which post I'm referring to, : or even better, can you point me to a URL where it's been archived? : : Much appreciated. : : Regards, : : Trent. : :-- :Trent Nelson -- Director, Alcyon Enterprises, Ltd. I remember making the post, but I don't remember when and I doubt I could find it in my archives. Hmm. This would be another good manual page. Maybe I will call it 'developer' or 'development'. Ok, here we go: ENVIRONMENT SETUP Basically I recommend having at least two machines. Run -stable on your main development system. Create a huge partition called /FreeBSD. Mine is 12GB (and currently holds 8G of junk in it, including portions of NetBSD, OpenBSD, and Linux as well as FreeBSD). REASON>> This way you can export /FreeBSD to any other machines you have via read-only NFS without exposing sensitive partitions on your main development machine. REASON>> You always want your main development environment to be on a stable, reliable platform, otherwise you might blow something up and then not be able to fix it. Use cvsup (once a night via cron) to keep a local copy of the FreeBSD CVS tree. mkdir /FreeBSD/FreeBSD-CVS ln -s /FreeBSD/FreeBSD-CVS /home/ncvs cron entry: 20 6 * * * /usr/local/bin/cvsup -g -r 20 -L 2 -h cvsup.freebsd.org /usr/share/examples/cvsup/cvs-supfile Then use cvs to checkout and maintain a -stable source tree and a -current source tree. I do this: mkdir /FreeBSD/FreeBSD-4.x mkdir /FreeBSD/FreeBSD-current cd /FreeBSD/FreeBSD-4.x cvs -d /home/ncvs checkout -rRELENG_4 src cd /FreeBSD/FreeBSD-current cvs -d /home/ncvs checkout src cvs -d /home/ncvs checkout ports cvs -d /home/ncvs checkout doc REASON>> Keeping the broken-out source in /FreeBSD allows you to export it to other machines along with the rest of the development environment. Now create a softlink for /usr/src and /usr/src2. I usually point /usr/src at -stable and /usr/src2 at -current: cd /usr rm -rf src src2 ln -s /FreeBSD/FreeBSD-4.x/src src ln -s /FreeBSD/FreeBSD-current/src src Put /usr/obj in /FreeBSD as well, or give it its own partition (at least 4GB is recommended). Example: mkdir /FreeBSD/obj cd /usr rm -rf obj ln -s /FreeBSD/obj obj ALTERNATIVE: (/usr/obj has its own partition) REASON>> you are going to want to export /usr/obj via read-only NFS to your other boxes, which I explain in the BUILDING section. If you want to be able to compile the world and kernels on the clients, rather then only compiling on your main development box, I recommend making /usr/obj its own partition to make it easier to give each client its own /usr/obj (for client-side compiling), or mounting /usr/obj on the client from the main development server via read-only NFS. I usually keep track of ports via CVS and, as you can see above, a checkedout version can be maintained in /FreeBSD/FreeBSD-current/ports. However, in order to be able to build ports on other machines you will need to change the distfiles subdirectory: cd /usr rm -rf ports ln -s /FreeBSD/FreeBSD-current/ports ports cd /usr/ports (this pushes into the softlink) rm -rf distfiles ln -s /usr/ports.distfiles distfiles mkdir /usr/ports.distfiles mkdir /usr/ports.workdir IN /etc/make.conf add -------------------------------------- WRKDIRPREFIX=/usr/ports.workdir -------------------------------------- REASON>> This allows you to export /usr/ports via a read-only NFS mount. In fact, just exporting /FreeBSD also gives you ports for free and on your other machines you can simply softlink /usr/ports to /FreeBSD/FreeBSD-current/ports. NOT!!! You may want to choose different directories for distfiles and workdir, but try to make it consistent across all machines because the softlink for /usr/ports/distfiles is in /FreeBSD and must be the same for all machines since it is exported from your master server. IN PARTICULAR, be aware that both the distfiles directory and the working directory for building ports might require hundred of megabytes of space in order to build certain ports, like the openoffice port or the mozilla port. EXPORTING VIA NFS FROM THE SERVER Your /etc/exports file should look something like this: -------------------------------------- /FreeBSD -ro -alldirs -maproot=root: -network YOURLAN -mask YOURLANMASK /usr/obj -ro -alldirs -maproot=root: -network YOURLAN -mask YOURLANMASK -------------------------------------- I strongly recommend only doing READ-ONLY exports. This is not only a security mechanism (nobody can mess with your development source without actually being on the development machine), but also a safety mechanism... it is not usually a good idea to accidently modify /FreeBSD via a client, especially if you are working on several clients at the same time. So keep the exports read-only. CLIENT ENVIRONMENT Other machines... for example, your -current box or any other machine you have, can import your development environment via a read-only NFS mount of /FreeBSD: An fstab entry looks like this: -------------------------------------- yourserver:/FreeBSD /FreeBSD nfs ro 0 0 -------------------------------------- Each client should create softlinks links for /usr/ports and /usr/src that point to the appropriate place. If the client is going to be a -current box, point the /usr/src on the client at /FreeBSD/FreeBSD-current/src. Otherwise point it at /FreeBSD/FreeBSD-4.x/src. (on client) cd /usr rm -rf ports src ln -s /FreeBSD/FreeBSD-current/ports ports ln -s /FreeBSD/FreeBSD-XXX/src src (XXX the type of environment you want on the client, either 4.x or current) If /usr/obj is its own partition on the server then create an NFS mount in your fstab for it. Again, it should be a read-only mount. -------------------------------------- yourserver:/usr/obj /usr/obj nfs ro 0 0 -------------------------------------- lf, instead, /usr/obj is a softlink on the server then create the same softlink on the client. cd /usr rm -rf obj ln -s obj Make sure the appropriate directories and make.conf entries exist to allow you to build ports on your client as well. Note that the ports distribution is not branched, it exists on the HEAD branch only (i.e. /FreeBSD/FreeBSD-current/ports). BUILDING AND INSTALLING THE WORLD On your main development server you can build a -stable world with: cd /usr/src make buildworld You can also build -current on your main development box, even though your main development box is running -stable (just don't install it accidently :-)): cd /usr/src2 make buildworld When upgrading your main development box, be sure to not accidently install -current. That's why I have the /usr/src softlink pointing at -stable INSTALLING THE WORLD AND INSTALLING KERNELS ON CLIENTS You can build on your main development server and install on clients. The main development server must export /FreeBSD and /usr/obj (if /usr/obj is its own partition) via read-only NFS to the clients. NOTE!!!>> If /usr/obj is a softlink on the main development server, it must also be the EXACT SAME softlink on each client. This is because the absolute paths are expected to be the same when building the world as when installing it, and you generally build it on your main development box and install it from a client. On the client, installing the world is easy if it has NFS mounted /FreeBSD and /usr/obj (or pointed /usr/obj as a softlink into /FreeBSD in the precisely the same manner as the softlink is on the main development box): (ON THE CLIENT) cd /usr/src make installworld BUILDING AND INSTALLING KERNELS Building a -stable kernel (on your main development box): cd /usr/src/sys/i386/conf config KERNELNAME cd /usr/src/sys/compile/KERNELNAME make depend; make Installing a -stable kernel (typically done on a client. Only do on your main development server if you want to install a new kernel for your main development server): cd /usr/src/sys/compile/KERNELNAME make install Building a -current kernel cd /usr/src make buildkernel KERNCONF=KERNELNAME Installing a -current kernerl (typically done on a client) cd /usr/src (on the client this is typically a softlink to /FreeBSD/FreeBSD-current/src, but if that confuses you too much just use the same /usr/src and /usr/src2 softlinks as you have on the main development server and then cd into /usr/src2) make installkernel KERNCONF=KERNELNAME DOING DEVELOPMENT ON A CLIENT, NOT JUST INSTALLING I strongly recommend that you only mess around with the source on your main development server. However, you may wish to do buildworlds and buildkernel's on the clients (instead of on the main development server) for testing or other reasons. If you want to be able to compile the world or kernels directly on a client, the client needs its own private /usr/obj. This could just be /usr/obj: cd /usr rm -rf obj mkdir obj Then you can build and install the world and kernels on a client the same way you would build them on the server. CVS UPDATING The advantage of using cvsup to maintain an uptodate copy of the CVS repository instead of using it to maintain source trees is that you can pick and choose when you bring your source tree (or pieces of your source tree) up to date. By using a cron job to maintain an uptodate copy of the CVS repository, you can update your source tree at any time as follows: (on the main development server) cd /usr/src cvs -d /home/ncvs update cd /usr/src2 cvs -d /home/ncvs update cd /usr/ports cvs -d /home/ncvs update It is that simple, and since you are exporting the whole lot to your clients, your clients have immediately visibility into the updated source. -Matt ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 5:32:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C91937B401 for ; Mon, 10 Feb 2003 05:32:09 -0800 (PST) Received: from mx7.mail.ru (mx7.mail.ru [194.67.57.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 195BA43FAF for ; Mon, 10 Feb 2003 05:32:08 -0800 (PST) (envelope-from kan@mail.ru) Received: from [141.154.55.131] (helo=kan.dnsalias.net) by mx7.mail.ru with esmtp (Exim SMTP.7) id 18iE2Y-000Mlw-00; Mon, 10 Feb 2003 16:32:06 +0300 Received: from kan.dnsalias.net (localhost [IPv6:::1]) by kan.dnsalias.net (8.12.6/8.12.6) with ESMTP id h1ADVn7f064134; Mon, 10 Feb 2003 08:31:49 -0500 (EST) (envelope-from kan@kan.dnsalias.net) Received: (from kan@localhost) by kan.dnsalias.net (8.12.7/8.12.6/Submit) id h1ADVh9n064133; Mon, 10 Feb 2003 08:31:43 -0500 (EST) Date: Mon, 10 Feb 2003 08:31:43 -0500 From: Alexander Kabaev To: Rahul Siddharthan Cc: current@freebsd.org Subject: Re: HEADS UP: GCC 3.2.2 is coming Message-Id: <20030210083143.179d9c15.kabaev@bellatlantic.net> In-Reply-To: <20030210073347.GA53274@papagena.rockefeller.edu> References: <20030210062244.GA47793@kanpc.gte.com> <20030210073347.GA53274@papagena.rockefeller.edu> Reply-To: ak03@gte.com X-Mailer: Sylpheed version 0.8.9claws42 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, you caught the src tree at the bad moment. See if another cvsup/buildworld changes anything. On Mon, 10 Feb 2003 02:33:48 -0500 Rahul Siddharthan wrote: > Alexander Kabaev wrote: > > The import should be complete now. Please let us know if you > > see any problems introduced with this GCC version. > > > cc -O -pipe -mcpu=i686 -march=i686 -DIN_GCC -DHAVE_CONFIG_H > -DPREFIX=\"/usr/obj/usr/src/i386/usr\" > -I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools > -I/usr/src/gnu/usr.bin/cc/cc1plus/../cc_tools > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/config > -I/usr/src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp -I. > -c /usr/src/contrib/gcc/cp/decl.c > /usr/src/contrib/gcc/cp/decl.c: In function > `cxx_init_decl_processing': > /usr/src/contrib/gcc/cp/decl.c:6671: `c_size_type_node' undeclared > (first use in this function) > /usr/src/contrib/gcc/cp/decl.c:6671: (Each undeclared identifier is > reported only once > /usr/src/contrib/gcc/cp/decl.c:6671: for each function it appears in.) > *** Error code 1 > > -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Feb 10 6: 0:14 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B370937B401 for ; Mon, 10 Feb 2003 06:00:09 -0800 (PST) Received: from gromit.dlib.vt.edu (gromit.dlib.vt.edu [128.173.49.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8240043FBF for ; Mon, 10 Feb 2003 06:00:08 -0800 (PST) (envelope-from paul@gromit.dlib.vt.edu) Received: from gromit.dlib.vt.edu (localhost.dlib.vt.edu [127.0.0.1]) by gromit.dlib.vt.edu (8.12.6/8.12.6) with ESMTP id h1AE071E047649 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 10 Feb 2003 09:00:07 -0500 (EST) (envelope-from paul@gromit.dlib.vt.edu) Received: (from paul@localhost) by gromit.dlib.vt.edu (8.12.6/8.12.6/Submit) id h1AE07Hu047648 for freebsd-current@freebsd.org; Mon, 10 Feb 2003 09:00:07 -0500 (EST) Date: Mon, 10 Feb 2003 09:00:07 -0500 From: Paul Mather To: freebsd-current@freebsd.org Subject: 5.0-RELEASE on Gateway 450 laptop Message-ID: <20030210140007.GB47394@gromit.dlib.vt.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline X-No-Archive: yes X-Operating-System: FreeBSD/i386 4.7-STABLE User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I recently installed 5.0-RELEASE on a Gateway 450 laptop. When booting I get various ACPI errors such as: ACPI-1287: *** Error: Method execution failed, AE_NOT_EXIST or ACPI-0432: *** Error: Handler for [EmbeddedControl] returned AE_ERROR ACPI-1287: *** Error: Method execution failed, AE_ERROR and ACPI-0432: *** Error: Handler for [EmbeddedControl] returned AE_ERROR ACPI-1287: *** Error: Method execution failed, AE_AML_NO_RETURN_VALUE The machine boots and seems to work okay on the whole, although sometimes under high load (e.g., doing a buildkernel or making a port like mozilla, java, or XFree86) the laptop will mysteriously and spontaneously power down. (Power off, not reboot.) In addition, power management doesn't seem to work (e.g., going into standby), but I've not used power management before, so maybe I'm not configuring everything properly. Also, on an unrelated note, has anyone managed to get the funny "mouse wheel" below the touch pad on a Gateway 450 to work in X? Appended to the end of this message is a copy of /var/run/dmesg.boot. If anyone can let me know how to cure the ACPI errors I'd be really happy. Cheers, Paul. e-mail: paul@gromit.dlib.vt.edu "Without music to decorate it, time is just a bunch of boring production deadlines or dates by which bills must be paid." --- Frank Vincent Zappa >>>>> Copyright (c) 1992-2003 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.0-RELEASE #0: Tue Feb 4 01:23:53 EST 2003 root@laptop.Chelsea-Ct.Org:/usr/obj/usr/src/sys/LAPTOP Preloaded elf kernel "/boot/kernel/kernel" at 0xc04f3000. Preloaded elf module "/boot/kernel/snd_maestro3.ko" at 0xc04f30a8. Preloaded elf module "/boot/kernel/snd_pcm.ko" at 0xc04f315c. Preloaded elf module "/boot/kernel/radeon.ko" at 0xc04f3208. Preloaded elf module "/boot/kernel/firewire.ko" at 0xc04f32b4. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc04f3364. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 1994126756 Hz CPU: Pentium 4 (1994.13-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf27 Stepping = 7 Features=0xffffffffbfebf9ff> real memory = 536346624 (511 MB) avail memory = 515608576 (491 MB) Initializing GEOMetry subsystem Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 ACPI-0625: *** Info: GPE Block1 defined as GPE16 to GPE31 Using $PIR table, 11 entries at 0xc00fdf10 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_cpu0: on acpi0 acpi_tz0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xec000000-0xefffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 drm0: port 0x3000-0x30ff mem 0xe8100000-0xe810ffff,0xf0000000-0xf7ffffff irq 10 at device 0.0 on pci1 info: [drm] AGP at 0xec000000 64MB info: [drm] Initialized radeon 1.1.1 20010405 on minor 0 uhci0: port 0x1800-0x181f irq 10 at device 29.0 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 uhci1: port 0x1820-0x183f irq 5 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pcib2: at device 30.0 on pci0 pci2: on pcib2 cbb0: irq 10 at device 2.0 on pci2 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: irq 10 at device 2.1 on pci2 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 pcm0: port 0x5000-0x50ff irq 5 at device 3.0 on pci2 fwohci0: vendor=104c, dev=8026 fwohci0: <1394 Open Host Controller Interface> mem 0xe8200000-0xe8203fff,0xe8207000-0xe82077ff irq 10 at device 5.0 on pci2 fwohci0: PCI bus latency was changing to 250. fwohci0: OHCI version 1.10 (ROM=1) fwohci0: No. of Isochronous channel is 4. fwohci0: EUI64 00:e0:b8:04:00:01:8d:16 fwohci0: Phy 1394a available S400, 1 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 fxp0: port 0x5400-0x543f mem 0xe8206000-0xe8206fff irq 10 at device 8.0 on pci2 fxp0: Ethernet address 00:e0:b8:4b:52:c5 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1860-0x186f,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 mem 0xe8000000-0xe80003ff at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 31.3 (no driver attached) pci0: at device 31.6 (no driver attached) acpi_lid0: on acpi0 ACPI-1287: *** Error: Method execution failed, AE_NOT_EXIST acpi_acad0: on acpi0 acpi_cmbat0: on acpi0 acpi_cmbat1: on acpi0 acpi_button0: 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 acpi_ec0: port 0x66,0x62 on acpi0 ppc0 port 0x778-0x77f,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 orm0: globalpromoter

Hi,

My name is Levi Lewis and I'm with GlobalPromoter.com,
a search engine optimization firm specializing in guaranteed
first page listings in the major search engines. I would like
to speak with someone from your company regarding possible
partnership opportunities.

GlobalPromoter is an industry leader in the website optimization
and search engine submission business and has partnerships with
search engines including Overture, Inktomi, LookSmart and Findwhat
just to name a few.

We guarantee first page listings in the major search engines on most
of our packages and guarantee those listings within 14 days of
placing your order. If you would like to view some sample before
and after ranking reports of our clients please contact us.

We also offer our partners generous commissions even if they never
use our service.

In addition to our paid services we also offer several FREE and Unique
online tools (link at the bottom of page) that your users would find quite powerful. If you have any
"do-it-yourself marketers" I think they'll be quite impressed with the
analysis and recommendation tools we offer. Here are just a few of
the free tools.

Keyword Suggestion Tool:
The user enters a keyword and receives every variance of that keyword
and the number of times it's been searched on so far this month on the
Overture network of search engines.

Site Readiness Tool:
The user enters a url and keyword phrase and gets a detailed report
with recommendations to improve their ranking on the major search
engines.

Spider Your Competition Tool:
User can enter a url and extract the contents of your competitions
pages.

Plus there are many more. And we would be more than happy to put
the free tools on your site at no charge if we come to an agreement.

Please contact us with any questions and or comments you might
have. We look forward to hearing from you.

Best Regards,
Levi Lewis
levi@globalpromoter.com

http://www.GlobalPromoter.com
"Guaranteed first page placement among the major search engines"
(321)459-5591

Our free unique online tools :     http://globalpromoter.com/free_search_engine_promotion_tools.cfm

Signup for a free account:     http://globalpromoter.com/directory/signup_form.cfm



 

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Feb 12 22:46:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A0DD37B401; Wed, 12 Feb 2003 22:46:09 -0800 (PST) Received: from puffin.mail.pas.earthlink.net (puffin.mail.pas.earthlink.net [207.217.120.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D57C43FCB; Wed, 12 Feb 2003 22:46:08 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0060.cvx21-bradley.dialup.earthlink.net ([209.179.192.60] helo=mindspring.com) by puffin.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18jD87-000797-00; Wed, 12 Feb 2003 22:45:56 -0800 Message-ID: <3E4B3ECE.94175119@mindspring.com> Date: Wed, 12 Feb 2003 22:44:30 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Lucky Green Cc: postfix_tls@aet.tu-cottbus.de, ports@freebsd.org, openssl-users@openssl.org, 'Vivek Khera' , freebsd-current@FreeBSD.ORG Subject: Re: OpenSSL 0.9.6/0.9.7 library version conflicts References: <003201c2d315$8d998e20$6601a8c0@VAIO650> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a495115c9b189d61253022c4a5bdb2928693caf27dac41a8fd350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Lucky Green wrote: > I just spent a few days trying to determine why postfix with STARTTLS > enabled is instantly dumping core on my new FreeBSD 5.0 machine. > > The problem was caused by a conflict between OpenSSL library versions > 0.9.6 and 0.9.7, both of which are installed on the machine. The former > as part of the FreeBSD base distribution, the latter as a Port. > > Unfortunately, the nature of the conflict, at least on my box, prevented > any meaningful gdb back trace. > > If you are seeing unexplained core dumps with SSL-using applications and > have both OpenSSL 0.9.6 and 0.9.7 installed, chances are you ran into > this problem. > > Fix: > no idea. Very easy. Make Postfix obey the port path, when obtaining header files and linking components. It should get everything from the system location, or it should get everything from the default location. The most likely scenario is that the include path is not being overridden, even when the library path is. This is most likely due to a bug in the GNU configure script. The best way around those bugs is "do not use GNU configure". > FYI, FreeBSD is not the only OS on which this problem has been found to > exist. Debian Linux is experience the same problem. See a post to > debian-devel-announce attached below. FWIW: this confirms that it's a Postfix problem. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Feb 12 23:44: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F292E37B401 for ; Wed, 12 Feb 2003 23:43:56 -0800 (PST) Received: from freebee.epages.net (freebee.epages.net [196.38.130.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAFF643F85 for ; Wed, 12 Feb 2003 23:43:52 -0800 (PST) (envelope-from Tony@epages.net) Received: from rabbit.epages.net ([192.168.0.221]) by freebee.epages.net with esmtp (Exim 3.16 #2) id 18jE27-0001gf-00; Thu, 13 Feb 2003 09:43:47 +0200 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01C2D333.A3E4D9A0" Subject: RE: shutdown / reboot causes filesystem-errors X-MIMEOLE: Produced By Microsoft Exchange V6.0.4712.0 Date: Thu, 13 Feb 2003 09:43:46 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: shutdown / reboot causes filesystem-errors Thread-Index: AcLS1jhYmx64NeBVSZqaSGK93uWcLQAWgBag From: "Tony Harverson" To: "Pascal Giannakakis" , Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------_=_NextPart_001_01C2D333.A3E4D9A0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Good morning, I'm noticing a problem which is probably related on my -current box. It seems to no longer be able to sync before shutting down. The config file for the kernel is attached to this message. When I shut it down, the final sync starts the buffer countdown, and never succeeds in counting down; it keeps the same number of unflushed buffers for as many times as it repeats the number, and then gives up on those buffers and shuts down. Is there anything I can do to help anyone diagnose this? Build is as of Midnight last night (22h00 GMT, 12/2/2003) Tony -----Original Message----- From: Pascal Giannakakis [mailto:capm@gmx.net]=20 Sent: 12 February 2003 22:34 To: freebsd-current@freebsd.org Subject: shutdown / reboot causes filesystem-errors LO, after I cvsupped the system to the most recent version, I found out what the reason of locking during boot was (at least for me): corrupt FS. It=20 seems like a shutdown / reboot leaves the filesystem dirty, which means=20 to get the server up I need to run fsck from the fixit-image. As usual this problem is somewhat beyond my knowledge, so i hope=20 somebody can tell me a) how to pinpoint the exact problem and b) fix it. Another thing that I have been struggeling for ages is how to make the=20 kernel boot verbose. Neither "boot -v" nor setting the variable or entry in /boot/loader.conf works. The syslog does not reveal any information.=20 What's the deal? TIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message ------_=_NextPart_001_01C2D333.A3E4D9A0 Content-Type: text/plain; name="Crashtest.txt" Content-Transfer-Encoding: base64 Content-Description: Crashtest.txt Content-Disposition: attachment; filename="Crashtest.txt" IyBDUkFTSFRFU1QgLSBUb255J3MgLWN1cnJlbnQga2VybmVsDQoNCm1hY2hpbmUJCWkzODYNCmNw dQkJSTY4Nl9DUFUNCm9wdGlvbnMgICAgICAgICBDUFVfRU5BQkxFX1NTRQ0KaWRlbnQJCUNSQVNI VEVTVA0KbWF4dXNlcnMJMA0KDQptYWtlb3B0aW9ucwlERUJVRz0tZwkJI2dkYiBkZWJ1ZyBzeW1i b2xzLg0Kb3B0aW9ucyAJSU5FVAkJCSNJbnRlck5FVHdvcmtpbmcNCm9wdGlvbnMgCUZGUwkJCSNC ZXJrZWxleSBGYXN0IEZpbGVzeXN0ZW0NCm9wdGlvbnMgCVNPRlRVUERBVEVTCQkjRW5hYmxlIEZG UyBzb2Z0IHVwZGF0ZXMgc3VwcG9ydA0Kb3B0aW9ucyAJVUZTX0FDTAkJCSNTdXBwb3J0IGZvciBh Y2Nlc3MgY29udHJvbCBsaXN0cw0Kb3B0aW9ucyAJVUZTX0RJUkhBU0gJCSNJbXByb3ZlIHBlcmZv cm1hbmNlIG9uIGJpZyBkaXJlY3Rvcmllcw0Kb3B0aW9ucyAJTURfUk9PVAkJCSNNRCBpcyBhIHBv dGVudGlhbCByb290IGRldmljZQ0Kb3B0aW9ucyAJTVNET1NGUwkJCSNNU0RPUyBGaWxlc3lzdGVt DQpvcHRpb25zIAlDRDk2NjAJCQkjSVNPIDk2NjAgRmlsZXN5c3RlbQ0Kb3B0aW9ucyAJUFJPQ0ZT CQkJI1Byb2Nlc3MgZmlsZXN5c3RlbSAocmVxdWlyZXMgUFNFVURPRlMpDQpvcHRpb25zIAlQU0VV RE9GUwkJI1BzZXVkby1maWxlc3lzdGVtIGZyYW1ld29yaw0Kb3B0aW9ucyAJQ09NUEFUXzQzCQkj Q29tcGF0aWJsZSB3aXRoIEJTRCA0LjMgW0tFRVAgVEhJUyFdDQpvcHRpb25zIAlDT01QQVRfRlJF RUJTRDQJCSNDb21wYXRpYmxlIHdpdGggRnJlZUJTRDQNCiNvcHRpb25zIAlTQ1NJX0RFTEFZPTE1 MDAJCSNEZWxheSAoaW4gbXMpIGJlZm9yZSBwcm9iaW5nIFNDU0kNCm9wdGlvbnMgCUtUUkFDRQkJ CSNrdHJhY2UoMSkgc3VwcG9ydA0Kb3B0aW9ucyAJU1lTVlNITQkJCSNTWVNWLXN0eWxlIHNoYXJl ZCBtZW1vcnkNCm9wdGlvbnMgCVNZU1ZNU0cJCQkjU1lTVi1zdHlsZSBtZXNzYWdlIHF1ZXVlcw0K b3B0aW9ucyAJU1lTVlNFTQkJCSNTWVNWLXN0eWxlIHNlbWFwaG9yZXMNCm9wdGlvbnMgCV9LUE9T SVhfUFJJT1JJVFlfU0NIRURVTElORyAjUG9zaXggUDEwMDNfMUIgcmVhbC10aW1lIGV4dGVuc2lv bnMNCm9wdGlvbnMgCUtCRF9JTlNUQUxMX0NERVYJIyBpbnN0YWxsIGEgQ0RFViBlbnRyeSBpbiAv ZGV2DQpvcHRpb25zCQlTQ0hFRF9VTEUJCSMgRXhwZXJpbWVudGFsIG5ldyBzY2hlZHVsZXIuDQoN CiMgRGVidWdnaW5nIGZvciB1c2UgaW4gLWN1cnJlbnQNCm9wdGlvbnMgCUREQgkJCSNFbmFibGUg dGhlIGtlcm5lbCBkZWJ1Z2dlcg0Kb3B0aW9ucyAJSU5WQVJJQU5UUwkJI0VuYWJsZSBjYWxscyBv ZiBleHRyYSBzYW5pdHkgY2hlY2tpbmcNCm9wdGlvbnMgCUlOVkFSSUFOVF9TVVBQT1JUCSNFeHRy YSBzYW5pdHkgY2hlY2tzIG9mIGludGVybmFsIHN0cnVjdHVyZXMsIHJlcXVpcmVkIGJ5IElOVkFS SUFOVFMNCm9wdGlvbnMgCVdJVE5FU1MJCQkjRW5hYmxlIGNoZWNrcyB0byBkZXRlY3QgZGVhZGxv Y2tzIGFuZCBjeWNsZXMNCm9wdGlvbnMgCVdJVE5FU1NfU0tJUFNQSU4JI0Rvbid0IHJ1biB3aXRu ZXNzIG9uIHNwaW5sb2NrcyBmb3Igc3BlZWQNCg0KZGV2aWNlCQlpc2ENCmRldmljZQkJZWlzYQ0K ZGV2aWNlCQlwY2kNCg0KIyBGbG9wcHkgZHJpdmVzDQpkZXZpY2UJCWZkYw0KDQojIEFUQSBhbmQg QVRBUEkgZGV2aWNlcw0KZGV2aWNlCQlhdGENCmRldmljZQkJYXRhZGlzawkJCSMgQVRBIGRpc2sg ZHJpdmVzDQpkZXZpY2UJCWF0YXBpY2QJCQkjIEFUQVBJIENEUk9NIGRyaXZlcw0KZGV2aWNlCQlh dGFwaWZkCQkJIyBBVEFQSSBmbG9wcHkgZHJpdmVzDQpkZXZpY2UJCWF0YXBpc3QJCQkjIEFUQVBJ IHRhcGUgZHJpdmVzDQpvcHRpb25zIAlBVEFfU1RBVElDX0lECQkjU3RhdGljIGRldmljZSBudW1i ZXJpbmcNCg0KIyBTQ1NJIHBlcmlwaGVyYWxzIChSZXF1aXJlZCBmb3IgVVNCIE1hc3Mgc3RvcmFn ZS4uKQ0KZGV2aWNlCQlzY2J1cwkJIyBTQ1NJIGJ1cyAocmVxdWlyZWQpDQpkZXZpY2UJCWRhCQkj IERpcmVjdCBBY2Nlc3MgKGRpc2tzKQ0KDQojIGF0a2JkYzAgY29udHJvbHMgYm90aCB0aGUga2V5 Ym9hcmQgYW5kIHRoZSBQUy8yIG1vdXNlDQpkZXZpY2UJCWF0a2JkYwkJIyBBVCBrZXlib2FyZCBj b250cm9sbGVyDQpkZXZpY2UJCWF0a2JkCQkjIEFUIGtleWJvYXJkDQpkZXZpY2UJCXBzbQkJIyBQ Uy8yIG1vdXNlDQoNCmRldmljZQkJdmdhCQkjIFZHQSB2aWRlbyBjYXJkIGRyaXZlcg0KZGV2aWNl CQlhZ3AJCSMgc3VwcG9ydCBzZXZlcmFsIEFHUCBjaGlwc2V0cw0KDQpkZXZpY2UJCXNwbGFzaAkJ IyBTcGxhc2ggc2NyZWVuIGFuZCBzY3JlZW4gc2F2ZXIgc3VwcG9ydA0KDQojIHN5c2NvbnMgaXMg dGhlIGRlZmF1bHQgY29uc29sZSBkcml2ZXIsIHJlc2VtYmxpbmcgYW4gU0NPIGNvbnNvbGUNCmRl dmljZQkJc2MNCg0KIyBGbG9hdGluZyBwb2ludCBzdXBwb3J0IC0gZG8gbm90IGRpc2FibGUuDQpk ZXZpY2UJCW5weA0KDQojIEFkZCBzdXNwZW5kL3Jlc3VtZSBzdXBwb3J0IGZvciB0aGUgaTgyNTQu DQpkZXZpY2UJCXBtdGltZXINCg0KIyBTZXJpYWwgKENPTSkgcG9ydHMNCmRldmljZQkJc2lvCQkj IDgyNTAsIDE2WzQ1XTUwIGJhc2VkIHNlcmlhbCBwb3J0cw0KDQojIFBhcmFsbGVsIHBvcnQNCmRl dmljZQkJcHBjDQpkZXZpY2UJCXBwYnVzCQkjIFBhcmFsbGVsIHBvcnQgYnVzIChyZXF1aXJlZCkN CmRldmljZQkJbHB0CQkjIFByaW50ZXINCmRldmljZQkJcHBpCQkjIFBhcmFsbGVsIHBvcnQgaW50 ZXJmYWNlIGRldmljZQ0KDQojIFBDSSBFdGhlcm5ldCBOSUNzIHRoYXQgdXNlIHRoZSBjb21tb24g TUlJIGJ1cyBjb250cm9sbGVyIGNvZGUuICMgTk9URTogQmUgc3VyZSB0byBrZWVwIHRoZSAnZGV2 aWNlIG1paWJ1cycgbGluZSBpbiBvcmRlciB0byB1c2UgdGhlc2UgTklDcyENCmRldmljZQkJbWlp YnVzCQkjIE1JSSBidXMgc3VwcG9ydA0KZGV2aWNlCQlybAkJIyBSZWFsVGVrIDgxMjkvODEzOQ0K ZGV2aWNlCQl4bAkJIyAzQzkweC4NCg0KI1NvdW5kIENhcmQNCmRldmljZQkJcGNtDQpkZXZpY2UJ CXNiYw0KZGV2aWNlCQltaWRpDQpkZXZpY2UJCXNlcQ0KDQoNCiMgUHNldWRvIGRldmljZXMgLSB0 aGUgbnVtYmVyIGluZGljYXRlcyBob3cgbWFueSB1bml0cyB0byBhbGxvY2F0ZS4NCmRldmljZQkJ cmFuZG9tCQkjIEVudHJvcHkgZGV2aWNlDQpkZXZpY2UJCWxvb3AJCSMgTmV0d29yayBsb29wYmFj aw0KZGV2aWNlCQlldGhlcgkJIyBFdGhlcm5ldCBzdXBwb3J0DQpkZXZpY2UJCXNsCQkjIEtlcm5l bCBTTElQDQpkZXZpY2UJCXBwcAkJIyBLZXJuZWwgUFBQDQpkZXZpY2UJCXR1bgkJIyBQYWNrZXQg dHVubmVsLg0KZGV2aWNlCQlwdHkJCSMgUHNldWRvLXR0eXMgKHRlbG5ldCBldGMpDQpkZXZpY2UJ CW1kCQkjIE1lbW9yeSAiZGlza3MiDQpkZXZpY2UJCWdpZgkJIyBJUHY2IGFuZCBJUHY0IHR1bm5l bGluZw0KZGV2aWNlCQlmYWl0aAkJIyBJUHY2LXRvLUlQdjQgcmVsYXlpbmcgKHRyYW5zbGF0aW9u KQ0KDQojIFRoZSBgYnBmJyBkZXZpY2UgZW5hYmxlcyB0aGUgQmVya2VsZXkgUGFja2V0IEZpbHRl ci4NCiMgQmUgYXdhcmUgb2YgdGhlIGFkbWluaXN0cmF0aXZlIGNvbnNlcXVlbmNlcyBvZiBlbmFi bGluZyB0aGlzIQ0KZGV2aWNlCQlicGYJIyBCZXJrZWxleSBwYWNrZXQgZmlsdGVyDQpkZXZpY2UJ CXNucAkjIHR0eSBzbmlmZmVyLg0KDQojIFVTQiBzdXBwb3J0DQpkZXZpY2UJCXVoY2kJCSMgVUhD SSBQQ0ktPlVTQiBpbnRlcmZhY2UNCmRldmljZQkJb2hjaQkJIyBPSENJIFBDSS0+VVNCIGludGVy ZmFjZQ0KZGV2aWNlCQl1c2IJCSMgVVNCIEJ1cyAocmVxdWlyZWQpDQojZGV2aWNlCQl1ZGJwCQkj IFVTQiBEb3VibGUgQnVsayBQaXBlIGRldmljZXMNCmRldmljZQkJdWdlbgkJIyBHZW5lcmljDQpk ZXZpY2UJCXVoaWQJCSMgIkh1bWFuIEludGVyZmFjZSBEZXZpY2VzIg0KZGV2aWNlCQl1a2JkCQkj IEtleWJvYXJkDQpkZXZpY2UJCXVscHQJCSMgUHJpbnRlcg0KZGV2aWNlCQl1bWFzcwkJIyBEaXNr cy9NYXNzIHN0b3JhZ2UgLSBSZXF1aXJlcyBzY2J1cyBhbmQgZGENCmRldmljZQkJdW1zCQkjIE1v dXNlDQpkZXZpY2UJCXVyaW8JCSMgRGlhbW9uZCBSaW8gNTAwIE1QMyBwbGF5ZXINCmRldmljZQkJ dXNjYW5uZXIJIyBTY2FubmVycw0K ------_=_NextPart_001_01C2D333.A3E4D9A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Feb 12 23:56: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A41C337B401 for ; Wed, 12 Feb 2003 23:55:58 -0800 (PST) Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id E595B43FD7 for ; Wed, 12 Feb 2003 23:55:56 -0800 (PST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: from zibbi.icomtek.csir.co.za (localhost [IPv6:::1]) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6) with ESMTP id h1D7tsbw027272 for ; Thu, 13 Feb 2003 09:55:55 +0200 (SAST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6/Submit) id h1D7tsZR027271 for current@FreeBSD.ORG; Thu, 13 Feb 2003 09:55:54 +0200 (SAST) Date: Thu, 13 Feb 2003 09:55:54 +0200 From: John Hay To: current@FreeBSD.ORG Subject: Re: dsp "device busy" (me too) vchans weirdness Message-ID: <20030213075554.GA26761@zibbi.icomtek.csir.co.za> References: <1045061169.91280.17.camel@owen1492.uf.corelab.com> <20030212183111.GA2342@zibbi.icomtek.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030212183111.GA2342@zibbi.icomtek.csir.co.za> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 12, 2003 at 08:31:11PM +0200, John Hay wrote: > On Wed, Feb 12, 2003 at 08:46:09AM -0600, Craig Boston wrote: > > I remember a couple of posts about this problem; but don't recall (and > > am unable to find in the archives) if there was ever any resolution. > > I have experienced the same thing. I have tried vchan sound on three > -current boxes and it works on all but the Dell. The Dell also have > the ICH2 sound while the other two have different sound chips. Maybe > it has something to do with the ICH driver or else I was just lucky > with the other machines. On the Dell have tried setting vchans > directly and maxautovchans, but neither did work for me. I did see > this on the console though: > > ###### > lock order reversal > 1st 0xc87d5b00 pcm0:virtual:0 (pcm channel) @ /usr/src/sys/dev/sound/pcm/sound.c:191 > 2nd 0xc5d99a80 pcm0 (sound cdev) @ /usr/src/sys/dev/sound/pcm/sound.c:163 > ###### > > Just switching vchans off on the Dell made the sound work again. > Looks like I have to take that back. I just tried a brand new -CURRENT kernel and vchans are now working. I have only tried it by setting hw.snd.maxautovchans. It does produce a lot of "could sleep with" messages though: ################## ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:163 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:163 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:163 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:378 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:378 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:378 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:378 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:378 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:434 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:434 ../../../vm/uma_core.c:1330: could sleep with "pcm0" locked from /usr/src/sys/dev/sound/pcm/sound.c:434 ################### John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 0: 4: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5512D37B401 for ; Thu, 13 Feb 2003 00:04:04 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BA9D43F3F for ; Thu, 13 Feb 2003 00:04:03 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk ([193.41.215.82]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1D8416E079454; Thu, 13 Feb 2003 08:04:01 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1D7xHhE005297; Thu, 13 Feb 2003 08:59:17 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: "tony" Cc: current@FreeBSD.ORG Subject: Re: Problems with timekeeping From: phk@phk.freebsd.dk In-Reply-To: Your message of "Wed, 12 Feb 2003 21:35:04 EST." Date: Thu, 13 Feb 2003 08:59:17 +0100 Message-ID: <5296.1045123157@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message , "tony" writes: >My time clock seems to do two ticks for every one that it should do. I'm not >sure where to start on fixing this. I had 4.7 installed and did a clean >install of 5.0 release thats when I noticed the time keeping weirdness.. it >always kept time perfectly before. I cvsuped to tag=RELENG_5_0 and built >installed built kernel installed. but no change... > >Any ideas? Please try: sysctl kern.timecounter.hardware=i8254 Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 1:32:59 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 252F037B401 for ; Thu, 13 Feb 2003 01:32:58 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E573E43FAF for ; Thu, 13 Feb 2003 01:32:55 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 574D7536E; Thu, 13 Feb 2003 10:32:54 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: current@freebsd.org Subject: panic in propagate_priority From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 10:32:53 +0100 Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG (panic string got lost because the serial console wasn't connected at the time) db> trace Debugger(c02f7be1,1,c412e8fc,2,c0351380) at Debugger+0x50 panic(c02f7160,4c,c0351380,c1502ee0,0) at panic+0x88 propagate_priority(c1502ee0,0,553,c02fb9d3,0) at propagate_priority+0x1ad _mtx_lock_sleep(c0351380,0,c02fb9d3,553) at _mtx_lock_sleep+0x111 _mtx_lock_flags(c0351380,0,c02fb9d3,553,0) at _mtx_lock_flags+0x4c brelse(ce6793c0) at brelse+0x15d bufdone(ce6793c0,d69bacac,c018e195,ce6793c0,c031fde0) at bufdone+0x237 biodone(ce6793c0,c031fde0,0,c02f317e,179) at biodone+0x14 g_dev_done(c4843e00,d69bacc4,c0190a18,c4843e00,d69bad1c) at g_dev_done+0x55 biodone(c4843e00,d69bad1c,c0190bc6,c1502ee0,c031fc40) at biodone+0x14 g_io_schedule_up(c1502ee0,c031fc40,c02f3b56,c02f3b56,30000) at g_io_schedule_up+ 0x18 g_up_procbody(0,d69bad48,c1502ee0,c0190b60,0) at g_up_procbody+0x66 fork_exit(c0190b60,0,d69bad48) at fork_exit+0x91 fork_trampoline() at fork_trampoline+0x1a --- trap 0x1, eip = 0, esp = 0xd69bad7c, ebp = 0 --- (kgdb) l *(propagate_priority+0x1ad) 0xc01b30ed is in propagate_priority (../../../kern/kern_mutex.c:134). 129 130 /* 131 * If lock holder is actually running, just bump priority. 132 */ 133 if (TD_IS_RUNNING(td)) { 134 td->td_priority = pri; 135 return; 136 } 137 138 #ifndef SMP Must be a race, because TD_IS_RUNNING would have bombed if td was NULL, so most likely td became NULL between lines 133 and 134. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 3: 0:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 689AB37B401 for ; Thu, 13 Feb 2003 03:00:15 -0800 (PST) Received: from mail.shorewood-epc.co.uk (mail.shorewood-epc.co.uk [195.10.240.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7079143F85 for ; Thu, 13 Feb 2003 03:00:14 -0800 (PST) (envelope-from bsd-current@epcdirect.co.uk) Received: from localhost (localhost [127.0.0.1]) by mail.shorewood-epc.co.uk (Postfix) with ESMTP id C53B066B30 for ; Thu, 13 Feb 2003 11:00:12 +0000 (GMT) Received: from lfarr (host-192.shorewood-epc.co.uk [192.168.15.192]) by mail.shorewood-epc.co.uk (Postfix) with ESMTP id 0C01E66B2F for ; Thu, 13 Feb 2003 11:00:11 +0000 (GMT) From: "Lawrence Farr" To: Subject: Wireless Problems Date: Thu, 13 Feb 2003 11:00:22 -0000 Message-ID: <001101c2d34f$1b1c1ea0$c00fa8c0@lfarr> 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.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal X-Virus-Scanned: by Shorewood EPC X-Razor-id: 231ffc03987d2d33f71a039a9faeeb8fad1d12b5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a hostap box that lives under my stairs with: wi0: mem 0xffbef000-0xffbeffff irq 11 at device 11.0 = on pci0 wi0: 802.11 address: 00:05:5d:ee:23:57 wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI) wi0: Intersil Firmware: Primary (1.0.7), Station (1.3.5) wi0: supported rates: 1Mbps 2Mbps 5.5Mbps 11Mbps ifpi0: port 0xff80-0xff9f mem 0xffbeec00-0xffbeec1f = irq 10 at device 17.0 on pci0 And I've also tried: wi0: mem 0xffbef000-0xffbeffff irq 11 at device 11.0 = on pci0 wi0: 802.11 address: 00:09:5b:11:fa:2d wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI) wi0: Intersil Firmware: Primary (1.0.7), Station (1.3.6) wi0: supported rates: 1Mbps 2Mbps 5.5Mbps 11Mbps Initialising with the line: ifconfig_wi0=3D"inet 192.168.10.254 netmask 255.255.255.0 media = DS/11Mbps mediaopt hostap ssid gate channel 6" The problem I have is that the most I can get out of it is 502k/sec on a laptop, and 192k on a P4 2.4Ghz next to it. Messages is full of: Feb 12 22:38:03 gate kernel: wi0: tx failed, retry limit exceeded Feb 12 22:38:04 gate last message repeated 7 times It's fairly recent: FreeBSD gate.bka.epcdirect.co.uk 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sat = Feb 8 11:31:01 GMT 2003 Any ideas anyone? Or am I expecting too much at 192k/second from hostap? The server is less than 6 feet away from the PC's. Lawrence Farr EPC Direct Limited=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 3:28:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8782037B401 for ; Thu, 13 Feb 2003 03:28:26 -0800 (PST) Received: from beast.freebsd.org (beast.freebsd.org [216.136.204.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0483643F85 for ; Thu, 13 Feb 2003 03:28:26 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from beast.freebsd.org (localhost [127.0.0.1]) by beast.freebsd.org (8.12.7/8.12.7) with ESMTP id h1DBSPbb082671 for ; Thu, 13 Feb 2003 03:28:25 -0800 (PST) (envelope-from des@beast.freebsd.org) Received: (from des@localhost) by beast.freebsd.org (8.12.7/8.12.7/Submit) id h1DBSP45082669 for current@freebsd.org; Thu, 13 Feb 2003 03:28:25 -0800 (PST) Date: Thu, 13 Feb 2003 03:28:25 -0800 (PST) From: Dag-Erling Smorgrav Message-Id: <200302131128.h1DBSP45082669@beast.freebsd.org> To: current@freebsd.org Subject: alpha tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- >>> Kernel build for GENERIC started on Thu Feb 13 03:11:40 PST 2003 -------------------------------------------------------------- ===> agp /h/des/src/sys/pci/agp_i810.c: In function `agp_i810_match': /h/des/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:112: (Each undeclared identifier is reported only once /h/des/src/sys/pci/agp_i810.c:112: for each function it appears in.) /h/des/src/sys/pci/agp_i810.c:113: `AGP_I855_GME' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:116: `AGP_I855_GM' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:119: `AGP_I852_GME' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:122: `AGP_I852_GM' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c: In function `agp_i810_attach': /h/des/src/sys/pci/agp_i810.c:342: `AGP_I855_GCC1' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:343: `AGP_I855_GCC1_GMS' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:344: `AGP_I855_GCC1_GMS_STOLEN_1M' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:347: `AGP_I855_GCC1_GMS_STOLEN_4M' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:350: `AGP_I855_GCC1_GMS_STOLEN_8M' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) /h/des/src/sys/pci/agp_i810.c:356: `AGP_I855_GCC1_GMS_STOLEN_32M' undeclared (first use in this function) *** Error code 1 Stop in /h/des/src/sys/modules/agp. *** Error code 1 Stop in /h/des/src/sys/modules. *** Error code 1 Stop in /h/des/obj/h/des/src/sys/GENERIC. *** Error code 1 Stop in /h/des/src. *** Error code 1 Stop in /h/des/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 4: 5:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 759F837B401; Thu, 13 Feb 2003 04:05:26 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72E3943F3F; Thu, 13 Feb 2003 04:05:25 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id AF8C1536E; Thu, 13 Feb 2003 13:05:23 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: alpha@freebsd.org, current@freebsd.org Subject: top-of-tree alpha kernel panics during boot From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 13:05:22 +0100 Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Booting [/boot/kernel/kernel]... Entering /boot/kernel/kernel at 0xfffffc000033a400... sio1: gdb debugging port Copyright (c) 1992-2003 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.0-CURRENT #32: Thu Feb 13 12:41:50 CET 2003 des@dsa.thinksec.com:/usr/src/sys/alpha/compile/DSA Preloaded elf kernel "/boot/kernel/kernel" at 0xfffffc0000756000. Digital Personal Workstation (Miata) Digital Personal WorkStation 600au, 598MHz 8192 byte page size, 1 processor. CPU: EV56 (21164A) major=7 minor=0 extensions=0x1 OSF PAL rev: 0x1000000020116 real memory = 266493952 (254 MB) avail memory = 251977728 (240 MB) Memory modified after free 0xfffffc00007b6000(8184) panic: Most recently used by none panic Stopped at Debugger+0x38: zapnot v0,#0xf,v0 db> trace Debugger() at Debugger+0x38 panic() at panic+0x118 mtrash_ctor() at mtrash_ctor+0x84 uma_zalloc_arg() at uma_zalloc_arg+0x160 malloc() at malloc+0x94 kobj_class_compile() at kobj_class_compile+0x2c devclass_add_driver() at devclass_add_driver+0x64 driver_module_handler() at driver_module_handler+0xb4 module_register_init() at module_register_init+0xa0 mi_startup() at mi_startup+0x144 locorestart() at locorestart+0x64 --- root of call graph --- des@dsa ~% gdb -k /sys/alpha/compile/DSA/kernel.debug GNU gdb 5.2.1 (FreeBSD) Copyright 2002 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 "alpha-undermydesk-freebsd"... (kgdb) list *(mtrash_ctor+0x84) 0xfffffc000056a684 is in mtrash_ctor (../../../vm/uma_dbg.c:138). 133 134 for (p = mem; cnt > 0; cnt--, p++) 135 if (*p != uma_junk) { 136 printf("Memory modified after free %p(%d)\n", 137 mem, size); 138 panic("Most recently used by %s\n", (*ksp == NULL)? 139 "none" : (*ksp)->ks_shortdesc); 140 } 141 } 142 (kgdb) list *(uma_zalloc_arg+0x160) 0xfffffc0000568bf0 is in uma_zalloc_arg (../../../vm/uma_core.c:1358). 1353 uma_dbg_alloc(zone, NULL, item); 1354 ZONE_UNLOCK(zone); 1355 #endif 1356 CPU_UNLOCK(zone, cpu); 1357 if (zone->uz_ctor) 1358 zone->uz_ctor(item, zone->uz_size, udata); 1359 if (flags & M_ZERO) 1360 bzero(item, zone->uz_size); 1361 return (item); 1362 } else if (cache->uc_freebucket) { DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 4:19:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1491437B401; Thu, 13 Feb 2003 04:19:57 -0800 (PST) Received: from mckinley.corp.yahoo.com (mckinley.corp.yahoo.com [216.145.62.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B26343FCB; Thu, 13 Feb 2003 04:19:56 -0800 (PST) (envelope-from peter@freebsd.org) Received: from mckinley.corp.yahoo.com (localhost [127.0.0.1]) by mckinley.corp.yahoo.com (8.12.6/8.12.6) with ESMTP id h1DCJuHB017217; Thu, 13 Feb 2003 04:19:56 -0800 (PST) (envelope-from peter@freebsd.org) Received: (from root@localhost) by mckinley.corp.yahoo.com (8.12.6/8.12.6/Submit) id h1DCJuAm017216; Thu, 13 Feb 2003 04:19:56 -0800 (PST) Message-Id: <200302131219.h1DCJuAm017216@mckinley.corp.yahoo.com> From: Peter Wemm Date: Thu, 13 Feb 2003 04:19:55 -0800 (PST) Subject: ia64 tinderbox failure To: current@freebsd.org, ia64@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 5: 0:33 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37B1437B401 for ; Thu, 13 Feb 2003 05:00:32 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2F9243FA3 for ; Thu, 13 Feb 2003 05:00:30 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1DD0Tg4041493 for current@freebsd.org; Thu, 13 Feb 2003 14:00:29 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302131300.h1DD0Tg4041493@spider.deepcore.dk> Subject: PLEASE TEST - ATA driver patch (ATANG)... To: current@freebsd.org Date: Thu, 13 Feb 2003 14:00:29 +0100 (CET) X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've prepared a patch that brings the ATA driver to the next level. This is mainly to prepare for other platforms which demanded some changes to the driver infrastructure. It also fixes lots of outstanding problems and adds support several new chipsets including SiS (thanks to Christoph Kukulies for sponsoring a brand new SiS648 based board making that possible!) Please test it out and remember that this is WIP, so use protective glasses and rubber gloves, you have been warned. I'd very much like reports on success/failure including a dmesg from the system, thanks! The patch can be fetched here: ftp://freebsd.dk/pub/ATA/ata-ng-diff-030213-1.gz Enjoy! -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 5: 6:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09EE337B401 for ; Thu, 13 Feb 2003 05:06:20 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACAB343F3F for ; Thu, 13 Feb 2003 05:06:17 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18jJ48-0004ZO-00; Thu, 13 Feb 2003 15:06:12 +0200 Date: Thu, 13 Feb 2003 15:06:11 +0200 From: Sheldon Hearn To: Soeren Schmidt Cc: current@freebsd.org Subject: Re: PLEASE TEST - ATA driver patch (ATANG)... Message-ID: <20030213130611.GF11609@starjuice.net> Mail-Followup-To: Soeren Schmidt , current@freebsd.org References: <200302131300.h1DD0Tg4041493@spider.deepcore.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302131300.h1DD0Tg4041493@spider.deepcore.dk> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On (2003/02/13 14:00), Soeren Schmidt wrote: > I've prepared a patch that brings the ATA driver to the next level. You've brought ata in under cam? ;-) *duck* Sorry, couldn't resist. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 5: 7:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2299637B401 for ; Thu, 13 Feb 2003 05:07:27 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1246B43FB1 for ; Thu, 13 Feb 2003 05:07:26 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1DD7PHE042697; Thu, 13 Feb 2003 14:07:25 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302131307.h1DD7PHE042697@spider.deepcore.dk> Subject: Re: PLEASE TEST - ATA driver patch (ATANG)... In-Reply-To: <20030213130611.GF11609@starjuice.net> To: Sheldon Hearn Date: Thu, 13 Feb 2003 14:07:25 +0100 (CET) Cc: current@freebsd.org X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Sheldon Hearn wrote: > On (2003/02/13 14:00), Soeren Schmidt wrote: > > > I've prepared a patch that brings the ATA driver to the next level. > > You've brought ata in under cam? ;-) That wouldn't be forward moving now would it ? > Sorry, couldn't resist. Ditto. -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 5:30:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64F9037B401 for ; Thu, 13 Feb 2003 05:30:39 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6A0543F93 for ; Thu, 13 Feb 2003 05:30:38 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1DDUbDm013775; Thu, 13 Feb 2003 05:30:37 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1DDUb9m013774; Thu, 13 Feb 2003 05:30:37 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Thu, 13 Feb 2003 05:30:37 -0800 From: David Schultz To: Soeren Schmidt Cc: current@FreeBSD.ORG Subject: Re: PLEASE TEST - ATA driver patch (ATANG)... Message-ID: <20030213133036.GA13666@HAL9000.homeunix.com> Mail-Followup-To: Soeren Schmidt , current@FreeBSD.ORG References: <200302131300.h1DD0Tg4041493@spider.deepcore.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302131300.h1DD0Tg4041493@spider.deepcore.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Soeren Schmidt : > I've prepared a patch that brings the ATA driver to the next level. > > This is mainly to prepare for other platforms which demanded > some changes to the driver infrastructure. > > It also fixes lots of outstanding problems and adds support several > new chipsets including SiS (thanks to Christoph Kukulies for > sponsoring a brand new SiS648 based board making that possible!) > > Please test it out and remember that this is WIP, so use protective > glasses and rubber gloves, you have been warned. Cool. I'll try these patches out this weekend. Is there a chance you could integrate the other half of the patch I sent you in January---the part that sends a FLUSH CACHE command to all disks at shutdown time? This measure should ensure that disks with large caches write out all data before the power to them is cut. Or are you working on a better way of solving this problem? There's also the problem jjramsey reported where some (perhaps broken) hardware required a small delay following the completion of an IDENTIFY command before the correct data are available to read, but that problem doesn't concern me directly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 5:32:33 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A22EF37B401 for ; Thu, 13 Feb 2003 05:32:31 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3633043F3F for ; Thu, 13 Feb 2003 05:32:30 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1DDWSuP047104; Thu, 13 Feb 2003 14:32:28 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302131332.h1DDWSuP047104@spider.deepcore.dk> Subject: Re: PLEASE TEST - ATA driver patch (ATANG)... In-Reply-To: <20030213133036.GA13666@HAL9000.homeunix.com> To: David Schultz Date: Thu, 13 Feb 2003 14:32:28 +0100 (CET) Cc: current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems David Schultz wrote: > Thus spake Soeren Schmidt : > > I've prepared a patch that brings the ATA driver to the next level. > > > > This is mainly to prepare for other platforms which demanded > > some changes to the driver infrastructure. > > > > It also fixes lots of outstanding problems and adds support several > > new chipsets including SiS (thanks to Christoph Kukulies for > > sponsoring a brand new SiS648 based board making that possible!) > > > > Please test it out and remember that this is WIP, so use protective > > glasses and rubber gloves, you have been warned. > > Cool. I'll try these patches out this weekend. Is there a chance > you could integrate the other half of the patch I sent you in > January---the part that sends a FLUSH CACHE command to all disks > at shutdown time? This measure should ensure that disks with > large caches write out all data before the power to them is cut. > Or are you working on a better way of solving this problem? > > There's also the problem jjramsey reported where some (perhaps > broken) hardware required a small delay following the completion > of an IDENTIFY command before the correct data are available to > read, but that problem doesn't concern me directly. I have a list a mile long of fixes/suggestions/hacks, I'll get to them but this needes to be done first to move along... -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 6: 2:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AB0937B401 for ; Thu, 13 Feb 2003 06:02:21 -0800 (PST) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 908C043FB1 for ; Thu, 13 Feb 2003 06:02:17 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.135.229] (port=49257 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:4) id 18jJwO-000HjN-00 for freebsd-current@freebsd.org; Thu, 13 Feb 2003 22:02:17 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1DE2F0c051903 for ; Thu, 13 Feb 2003 22:02:16 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1DE2EnZ051483 for freebsd-current@freebsd.org; Thu, 13 Feb 2003 22:02:14 +0800 (CST) Date: Thu, 13 Feb 2003 22:02:14 +0800 From: leafy To: freebsd-current@freebsd.org Subject: ld-elf.so.1 weird behaviour Message-ID: <20030213140213.GA37330@leafy.idv.tw> Mail-Followup-To: freebsd-current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I built world with the new gcc3.2.2, and trid to upgrade my kdelibs. It's producing the following errors regarding ld-elf.so.1 rm -f htmlpageinfo.cc.temp ;\ if test "$ret" = 0; then echo '#include "htmlpageinfo.moc"' >> htmlpageinfo.cc; else rm -f htmlpageinfo.cc ; exit $ret ; fi /usr/libexec/ld-elf.so.1: /usr/X11R6/plugins/designer/libwizards.so: Undefined s ymbol "_Z22qCleanupImages_wizardsv" gmake[3]: *** [htmlpageinfo.cc] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1/khtml' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1/khtml' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/x11/kdelibs3. *** Error code 1 But the symbol actually exists: leafy@leafy:~$ nm /usr/X11R6/plugins/designer/libwizards.so |grep Z22 000256f0 T _Z22qCleanupImages_wizardsv Is ld-elf.so.1 faulty? Jiawei Ye -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 6:13: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACCFD37B405 for ; Thu, 13 Feb 2003 06:13:01 -0800 (PST) Received: from web11407.mail.yahoo.com (web11407.mail.yahoo.com [216.136.131.237]) by mx1.FreeBSD.org (Postfix) with SMTP id 1A97443F75 for ; Thu, 13 Feb 2003 06:13:01 -0800 (PST) (envelope-from shizukakudo_99@yahoo.com) Message-ID: <20030213141300.55579.qmail@web11407.mail.yahoo.com> Received: from [218.102.195.175] by web11407.mail.yahoo.com via HTTP; Thu, 13 Feb 2003 06:13:00 PST Date: Thu, 13 Feb 2003 06:13:00 -0800 (PST) From: Shizuka Kudo Subject: RE: shutdown / reboot causes filesystem-errors To: Tony Harverson , Pascal Giannakakis , freebsd-current@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Tony Harverson wrote: > Good morning, > > I'm noticing a problem which is probably related on my -current box. It > seems to no longer be able to sync before shutting down. The config > file for the kernel is attached to this message. When I shut it down, > the final sync starts the buffer countdown, and never succeeds in > counting down; it keeps the same number of unflushed buffers for as many > times as it repeats the number, and then gives up on those buffers and > shuts down. > > Is there anything I can do to help anyone diagnose this? > > Build is as of Midnight last night (22h00 GMT, 12/2/2003) > > Tony > You may try changing your options SCHED_ULE to SCHED_4BSD. I had the same problem before but it vanished after using SCHED_4BSD. __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 6:59:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59C2437B401; Thu, 13 Feb 2003 06:59:57 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 720EF43FB1; Thu, 13 Feb 2003 06:59:56 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1DExk8I003295 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 13 Feb 2003 09:59:46 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1DExfB33667; Thu, 13 Feb 2003 09:59:41 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15947.45789.100492.921127@grasshopper.cs.duke.edu> Date: Thu, 13 Feb 2003 09:59:41 -0500 (EST) To: Dag-Erling Smorgrav Cc: alpha@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: top-of-tree alpha kernel panics during boot In-Reply-To: References: X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Memory modified after free 0xfffffc00007b6000(8184) > panic: Most recently used by none It might be interesting to add some printfs to see what the value is currently, vs what was expected, and where in the zone the modification happened.. This is a UP box right? Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 7: 2:18 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBAA37B401; Thu, 13 Feb 2003 07:02:17 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD05043F75; Thu, 13 Feb 2003 07:02:16 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6D7B4536E; Thu, 13 Feb 2003 16:02:14 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Andrew Gallatin Cc: alpha@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: top-of-tree alpha kernel panics during boot From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 16:02:13 +0100 In-Reply-To: <15947.45789.100492.921127@grasshopper.cs.duke.edu> (Andrew Gallatin's message of "Thu, 13 Feb 2003 09:59:41 -0500 (EST)") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <15947.45789.100492.921127@grasshopper.cs.duke.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Andrew Gallatin writes: > This is a UP box right? Yes, a PWS 600au. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 7: 3:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 753A237B401; Thu, 13 Feb 2003 07:03:40 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7C3543FA3; Thu, 13 Feb 2003 07:03:39 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1DF3d8I003983 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 13 Feb 2003 10:03:39 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1DF3YB33678; Thu, 13 Feb 2003 10:03:34 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15947.46022.16599.381827@grasshopper.cs.duke.edu> Date: Thu, 13 Feb 2003 10:03:34 -0500 (EST) To: Dag-Erling Smorgrav Cc: alpha@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: top-of-tree alpha kernel panics during boot In-Reply-To: References: <15947.45789.100492.921127@grasshopper.cs.duke.edu> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Andrew Gallatin writes: > > This is a UP box right? > > Yes, a PWS 600au. > OK, good.. ;) There had been SMP problems with the UMA debug code a long time ago. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 7:59:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6322637B401 for ; Thu, 13 Feb 2003 07:59:26 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B91AE43FA3 for ; Thu, 13 Feb 2003 07:59:24 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1DFxNI2042586 for ; Thu, 13 Feb 2003 16:59:23 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Thu, 13 Feb 2003 16:59:23 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: Invalid realloc size of 0: Unable to install CURRENT on a IBM x-series 305 Server Message-ID: <20030213165522.H44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I've tested 5.0R and CURRENT from today on this server and it crashes in sysinstall. Message is: Fatal error: invalid realloc size of 0! Press key to reboot. I can prepare the install fine, newfs works and the box begins to install packets. After a while the message appears. It happens on UFS1 and UFS2. The drive is a 120GB big ata ar softraid mirror. Any ideas ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8: 3:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CEA37B401 for ; Thu, 13 Feb 2003 08:03:28 -0800 (PST) Received: from sentry.gw.tislabs.com (sentry.gw.tislabs.com [192.94.214.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD91543FB1 for ; Thu, 13 Feb 2003 08:03:27 -0800 (PST) (envelope-from amigus@tislabs.com) Received: by sentry.gw.tislabs.com; id LAA08646; Thu, 13 Feb 2003 11:04:07 -0500 (EST) Received: from raven.gw.tislabs.com(10.33.1.50) by sentry.gw.tislabs.com via smap (V5.5) id xma008630; Thu, 13 Feb 03 11:03:09 -0500 Received: (from amigus@localhost) by raven.gw.tislabs.com (8.11.6/8.11.6) id h1DG2Tt09999 for current@FreeBSD.org; Thu, 13 Feb 2003 11:02:29 -0500 (EST) Date: Thu, 13 Feb 2003 11:02:29 -0500 From: Adam Migus To: current@FreeBSD.org Subject: usbd patch (MAXUSBDEV no more) Message-ID: <20030213160229.GA9742@raven.gw.tislabs.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline User-Agent: Mutt/1.3.27i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline This patch makes usbd track a dynamic number of devices using a list instead of the static array of 4 devices. It's implemented as a list but it's very easy to change. -- Adam Migus - Research Scientist Network Associates Laboratories (http://www.nailabs.com) TrustedBSD (http://www.trustedbsd.org) FreeBSD (http://www.freebsd.org) --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="usbd.diff" --- ../../../../freebsd/src/usr.sbin/usbd/usbd.c Thu Jan 23 05:36:35 2003 +++ usbd.c Tue Feb 11 21:21:55 2003 @@ -74,11 +74,6 @@ */ #define USBDEV "/dev/usb" -/* Maximum number of USB busses expected to be in a system - * XXX should be replaced by dynamic allocation. - */ -#define MAXUSBDEV 4 - /* Sometimes a device does not respond in time for interrupt * driven explore to find it. Therefore we run an exploration * at regular intervals to catch those. @@ -95,9 +90,13 @@ char *configfile = CONFIGFILE; /* name of configuration file */ -char *devs[MAXUSBDEV]; /* device names */ -int fds[MAXUSBDEV]; /* file descriptors for USBDEV\d+ */ -int ndevs = 0; /* number of entries in fds / devs */ +struct usb_dev { + char *ud_name; + int ud_fd; + LIST_ENTRY(usb_dev) ud_list; +}; +LIST_HEAD(usb_dev_list, usb_dev) _usb_devs; +struct usb_dev_list *uds = &_usb_devs; int fd = -1; /* file descriptor for USBDEV */ int lineno; @@ -758,6 +757,7 @@ pid_t pid; struct sigaction ign, intact, quitact; sigset_t newsigblock, oldsigblock; + struct usb_dev *ud; int status; int i; @@ -789,8 +789,9 @@ /* child here */ /* close all open file handles for USBDEV\d* devices */ - for (i = 0; i < ndevs; i++) - close(fds[i]); /* USBDEV\d+ */ + LIST_FOREACH(ud, uds, ud_list) { + close(ud->ud_fd); /* USBDEV\d+ */ + } close(fd); /* USBDEV */ /* Restore original signal dispositions and exec the command. */ @@ -936,6 +937,9 @@ fd_set r,w; int itimeout = TIMEOUT; /* timeout for select */ struct timeval tv; + struct usb_dev *ud = NULL, *ud0 = NULL; + int fds; + LIST_INIT(uds); if (modfind(USB_UHUB) < 0) { if (kldload(USB_KLD) < 0 || modfind(USB_UHUB) < 0) { @@ -960,8 +964,18 @@ explore_once = 1; break; case 'f': - if (ndevs < MAXUSBDEV) - devs[ndevs++] = optarg; + ud0 = ud; + ud = (struct usb_dev *)malloc(sizeof(*ud)); + if (ud == NULL) { + fprintf(stderr, + "can't alloc space for %s\n", buf); + return 1; + } + ud->ud_name = optarg; + if (ud0 != NULL && !(LIST_EMPTY(uds))) + LIST_INSERT_AFTER(ud0, ud, ud_list); + else + LIST_INSERT_HEAD(uds, ud, ud_list); break; case 'n': handle_events = 0; @@ -981,51 +995,64 @@ argv += optind; maxfd = 0; - if (ndevs == 0) { + if (LIST_EMPTY(uds)) { /* open all the USBDEVS\d+ devices */ - for (i = 0; i < MAXUSBDEV; i++) { + for (i = 0;; i++) { sprintf(buf, "%s%d", USBDEV, i); - fds[ndevs] = open(buf, O_RDWR); - if (fds[ndevs] >= 0) { - devs[ndevs] = strdup(buf); - if (devs[ndevs] == NULL) { - fprintf(stderr, "strdup returned NULL\n"); - return 1; - } - if (verbose) - printf("%s: opened %s\n", - __progname, devs[ndevs]); - if (fds[ndevs] > maxfd) - maxfd = fds[ndevs]; - ndevs++; - } else if (errno != ENXIO && errno != ENOENT) { - /* there was an error, on a device that does - * exist (device is configured) - */ - fprintf(stderr, "%s: Could not open %s, %s\n", - __progname, buf, strerror(errno)); - exit(1); + fds = open(buf, O_RDWR); + if (fds < 0) { + if (errno != ENXIO && errno != ENOENT) { + /* there was an error, on a device + that does exist */ + fprintf(stderr, "%s: could not open %s," " %s\n", __progname, buf, + strerror(errno)); + exit(1); + } else + break; + } + ud0 = ud; + ud = (struct usb_dev *)malloc(sizeof(*ud)); + if (ud == NULL) { + fprintf(stderr, + "can't alloc space for %s\n", buf); + return 1; } + ud->ud_name = strdup(buf); + if (ud->ud_name == NULL) { + fprintf(stderr, + "strdup failed for %s\n", buf); + return 1; + } + ud->ud_fd = fds; + if (verbose) + printf("%s: opened %s\n", + __progname, ud->ud_name); + if (fds > maxfd) + maxfd = fds; + if (ud0 != NULL && !(LIST_EMPTY(uds))) + LIST_INSERT_AFTER(ud0, ud, ud_list); + else + LIST_INSERT_HEAD(uds, ud, ud_list); } } else { /* open all the files specified with -f */ - for (i = 0; i < ndevs; i++) { - fds[i] = open(devs[i], O_RDWR); - if (fds[i] < 0) { + LIST_FOREACH(ud, uds, ud_list) { + ud->ud_fd = open(ud->ud_name, O_RDWR); + if (ud->ud_fd < 0) { fprintf(stderr, "%s: Could not open %s, %s\n", - __progname, devs[i], strerror(errno)); + __progname, ud->ud_name, strerror(errno)); exit(1); } else { if (verbose) printf("%s: opened %s\n", - __progname, devs[i]); - if (fds[i] > maxfd) - maxfd = fds[i]; + __progname, ud->ud_name); + if (ud->ud_fd > maxfd) + maxfd = ud->ud_fd; } } } - if (ndevs == 0) { + if (LIST_EMPTY(uds)) { fprintf(stderr, "No USB host controllers found\n"); exit(1); } @@ -1033,12 +1060,12 @@ /* Do the explore once and exit */ if (explore_once) { - for (i = 0; i < ndevs; i++) { - error = ioctl(fds[i], USB_DISCOVER); + LIST_FOREACH(ud, uds, ud_list) { + error = ioctl(ud->ud_fd, USB_DISCOVER); if (error < 0) { fprintf(stderr, "%s: ioctl(%s, USB_DISCOVER) " - "failed, %s\n", - __progname, devs[i], strerror(errno)); + "failed, %s\n", __progname, ud->ud_name, + strerror(errno)); exit(1); } } @@ -1075,8 +1102,9 @@ FD_ZERO(&w); if (handle_events) FD_SET(fd, &r); /* device USBDEV */ - for (i = 0; i < ndevs; i++) - FD_SET(fds[i], &w); /* device USBDEV\d+ */ + LIST_FOREACH(ud, uds, ud_list) { + FD_SET(ud->ud_fd, &w); /* device USBDEV\d+ */ + } tv.tv_usec = 0; tv.tv_sec = itimeout; error = select(maxfd+1, &r, &w, 0, itimeout ? &tv : 0); @@ -1087,16 +1115,16 @@ } /* USBDEV\d+ devices have signaled change, do a usb_discover */ - for (i = 0; i < ndevs; i++) { - if (error == 0 || FD_ISSET(fds[i], &w)) { + LIST_FOREACH(ud, uds, ud_list) { + if (error == 0 || FD_ISSET(ud->ud_fd, &w)) { if (verbose >= 2) printf("%s: doing %sdiscovery on %s\n", __progname, - (error? "":"timeout "), devs[i]); - if (ioctl(fds[i], USB_DISCOVER) < 0) { + (error? "":"timeout "), ud->ud_name); + if (ioctl(ud->ud_fd, USB_DISCOVER) < 0) { fprintf(stderr, "%s: ioctl(%s, " "USB_DISCOVER) failed, %s\n", - __progname, devs[i], + __progname, ud->ud_name, strerror(errno)); exit(1); } --k+w/mQv8wyuph6w0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8:13:46 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 098ED37B405 for ; Thu, 13 Feb 2003 08:13:45 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B2E743F75 for ; Thu, 13 Feb 2003 08:13:42 -0800 (PST) (envelope-from arr@watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.6/8.12.5) with ESMTP id h1DGDVP3026576; Thu, 13 Feb 2003 11:13:32 -0500 (EST) (envelope-from arr@watson.org) Received: from localhost (arr@localhost) by fledge.watson.org (8.12.6/8.12.6/Submit) with SMTP id h1DGDVKx026573; Thu, 13 Feb 2003 11:13:31 -0500 (EST) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Thu, 13 Feb 2003 11:13:31 -0500 (EST) From: "Andrew R. Reiter" To: Adam Migus Cc: current@FreeBSD.ORG Subject: Re: usbd patch (MAXUSBDEV no more) In-Reply-To: <20030213160229.GA9742@raven.gw.tislabs.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003, Adam Migus wrote: :This patch makes usbd track a dynamic number of devices using a list :instead of the static array of 4 devices. It's implemented as a list :but it's very easy to change. Does this list want a lock to protect it? I am unfamiliar with usb locking at the moment, so ignore if stupid. Cheers, Andrew -- Andrew R. Reiter arr@watson.org arr@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8:18:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9381F37B401 for ; Thu, 13 Feb 2003 08:18:38 -0800 (PST) Received: from sentry.gw.tislabs.com (sentry.gw.tislabs.com [192.94.214.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C769B43F85 for ; Thu, 13 Feb 2003 08:18:37 -0800 (PST) (envelope-from amigus@tislabs.com) Received: by sentry.gw.tislabs.com; id LAA09067; Thu, 13 Feb 2003 11:19:17 -0500 (EST) Received: from raven.gw.tislabs.com(10.33.1.50) by sentry.gw.tislabs.com via smap (V5.5) id xma008999; Thu, 13 Feb 03 11:18:13 -0500 Received: (from amigus@localhost) by raven.gw.tislabs.com (8.11.6/8.11.6) id h1DGHWi10543; Thu, 13 Feb 2003 11:17:32 -0500 (EST) Date: Thu, 13 Feb 2003 11:17:32 -0500 From: Adam Migus To: "Andrew R. Reiter" Cc: current@FreeBSD.org Subject: Re: usbd patch (MAXUSBDEV no more) Message-ID: <20030213161732.GA10500@raven.gw.tislabs.com> References: <20030213160229.GA9742@raven.gw.tislabs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.27i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Me too, so if it does require one someone please tell me. I obviously read the code and from my understanding no locking is fine but I could be wrong. On Thu, Feb 13, 2003 at 11:13:31AM -0500, Andrew R. Reiter wrote: > On Thu, 13 Feb 2003, Adam Migus wrote: > > :This patch makes usbd track a dynamic number of devices using a list > :instead of the static array of 4 devices. It's implemented as a list > :but it's very easy to change. > > Does this list want a lock to protect it? I am unfamiliar with usb > locking at the moment, so ignore if stupid. > > Cheers, > Andrew > > -- > Andrew R. Reiter > arr@watson.org > arr@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8:20: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2125E37B401 for ; Thu, 13 Feb 2003 08:20:02 -0800 (PST) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44E0C43FBF for ; Thu, 13 Feb 2003 08:20:01 -0800 (PST) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (localhost [IPv6:::1]) by h132-197-179-27.gte.com (8.12.6/8.12.6) with ESMTP id h1DGK0Qa031085; Thu, 13 Feb 2003 11:20:00 -0500 (EST) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.6/8.12.6/Submit) id h1DGK02v031084; Thu, 13 Feb 2003 11:20:00 -0500 (EST) Date: Thu, 13 Feb 2003 11:20:00 -0500 From: Alexander Kabaev To: "Andrew R. Reiter" Cc: amigus@tislabs.com, current@FreeBSD.ORG Subject: Re: usbd patch (MAXUSBDEV no more) Message-Id: <20030213112000.77d20ae1.ak03@gte.com> In-Reply-To: References: <20030213160229.GA9742@raven.gw.tislabs.com> Organization: Verizon Data Services X-Mailer: Sylpheed version 0.8.10claws8 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003 11:13:31 -0500 (EST) "Andrew R. Reiter" wrote: > On Thu, 13 Feb 2003, Adam Migus wrote: > > :This patch makes usbd track a dynamic number of devices using a list > :instead of the static array of 4 devices. It's implemented as a list > :but it's very easy to change. > > Does this list want a lock to protect it? I am unfamiliar with usb > locking at the moment, so ignore if stupid. There is nothing to be familiar with at the moment. UBS stack relies on spls on -stable and Giant on -current to protect the data access. -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8:33:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6956037B401; Thu, 13 Feb 2003 08:33:47 -0800 (PST) Received: from green.bikeshed.org (ddgocwiue4q8f0w6@green.bikeshed.org [10.0.0.1] (may be forged)) by green.bikeshed.org (8.12.7/8.12.6) with ESMTP id h1DGXkPw011008; Thu, 13 Feb 2003 11:33:46 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.12.7/8.12.6/Submit) with ESMTP id h1DGXfJY011004; Thu, 13 Feb 2003 11:33:46 -0500 (EST) Message-Id: <200302131633.h1DGXfJY011004@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: John Hay Cc: current@FreeBSD.ORG Subject: Re: dsp "device busy" (me too) vchans weirdness In-Reply-To: Your message of "Thu, 13 Feb 2003 09:55:54 +0200." <20030213075554.GA26761@zibbi.icomtek.csir.co.za> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Feb 2003 11:33:40 -0500 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Hay wrote: > On Wed, Feb 12, 2003 at 08:31:11PM +0200, John Hay wrote: > > Just switching vchans off on the Dell made the sound work again. > > > > Looks like I have to take that back. I just tried a brand new -CURRENT > kernel and vchans are now working. I have only tried it by setting > hw.snd.maxautovchans. It does produce a lot of "could sleep with" > messages though: Yeah. I found and fixed that a few days ago. It's been around for at least a month, but for some reason I'm getting a lot of ENODEV errors in dsp_reset() which is what made it known. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 8:57:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FBAB37B401 for ; Thu, 13 Feb 2003 08:57:25 -0800 (PST) Received: from smtp1.usadatanet.net (smtp1.usadatanet.net [66.218.0.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC12943F75 for ; Thu, 13 Feb 2003 08:57:24 -0800 (PST) (envelope-from klmac@usadatanet.net) Received: from localhost (localhost [127.0.0.1]) by smtp1.usadatanet.net (Postfix) with ESMTP id 333FAA4741 for ; Thu, 13 Feb 2003 11:57:33 -0500 (EST) Received: from usadatanet.net (nat-66-218-1-221.usadatanet.com [66.218.1.221]) by smtp1.usadatanet.net (Postfix) with ESMTP id 98B84A4656 for ; Thu, 13 Feb 2003 11:57:32 -0500 (EST) Date: Thu, 13 Feb 2003 11:57:43 -0500 Subject: FreeBSD 5 not working with Linux Virtual Server Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) From: Ken McKittrick To: current@FreeBSD.ORG Content-Transfer-Encoding: 7bit In-Reply-To: <200302131633.h1DGXfJY011004@green.bikeshed.org> Message-Id: <44DA7EC5-3F74-11D7-A349-000393B2B0EE@usadatanet.net> X-Mailer: Apple Mail (2.551) X-Virus-Scanned: by amavisd-new amavisd-new-20020630 X-Razor-id: 14c9a8e3862bd6ea2940bbc211708f2ec220ec6c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello I've got a FreeBSD5.0-R machine that doesn't work with Linux Virtual Server. This is for SMTP and WWW services. I'm using LVS-Direct Routing. The LVS machine has the 66.218.0.54 Real IP and 66.218.0.58 and 66.218.0.59 as Virtual IP's. The FreeBSD machine has 66.218.0.28 and a Real IP on fxp0 and 66.218.0.58/59 on lo0 with -arp. Running tcpdump host 66.218.0.54 I can see the requests come in, but nothing is going back out. When you telnet into port 25 the connection times out. I've running Linux LVS with FreeBSD4-STABLE SMTP machines in production so I'm confident that it's a FreeBSD 5.0 issue. Thanks Ken McKittrick Network Engineer USADatanet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 9: 2:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 181D137B401 for ; Thu, 13 Feb 2003 09:02:39 -0800 (PST) Received: from genius.tao.org.uk (genius.tao.org.uk [212.135.162.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5212A43FB1 for ; Thu, 13 Feb 2003 09:02:38 -0800 (PST) (envelope-from joe@genius.tao.org.uk) Received: by genius.tao.org.uk (Postfix, from userid 100) id 1E058422C; Thu, 13 Feb 2003 17:01:28 +0000 (GMT) Date: Thu, 13 Feb 2003 17:01:28 +0000 From: Josef Karthauser To: Adam Migus Cc: current@FreeBSD.org Subject: Re: usbd patch (MAXUSBDEV no more) Message-ID: <20030213170128.GB2502@genius.tao.org.uk> Mail-Followup-To: Josef Karthauser , Adam Migus , current@FreeBSD.org References: <20030213160229.GA9742@raven.gw.tislabs.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="O5XBE6gyVG5Rl6Rj" Content-Disposition: inline In-Reply-To: <20030213160229.GA9742@raven.gw.tislabs.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --O5XBE6gyVG5Rl6Rj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 13, 2003 at 11:02:29AM -0500, Adam Migus wrote: > This patch makes usbd track a dynamic number of devices using a list > instead of the static array of 4 devices. It's implemented as a list > but it's very easy to change. Thanks, although I'm not clear as to the future of usbd. With the advent of devd most of usbd's functionality will probably me implemented over there instead. I've not spent a great deal of time looking at devd yet to be sure. Joe --=20 Josef Karthauser (joe@tao.org.uk) http://www.josef-k.net/ FreeBSD (cvs meister, admin and hacker) http://www.uk.FreeBSD.org/ Physics Particle Theory (student) http://www.pact.cpes.sussex.ac.uk/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D An eclectic mix of fact an= d theory. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --O5XBE6gyVG5Rl6Rj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iEYEARECAAYFAj5Lz2cACgkQXVIcjOaxUBboxACg4DqFGOWwdwPg+41L9R2Qg3Zr 8hAAoNREekwI17KXn9UdvzApH9YDGwhj =LqQq -----END PGP SIGNATURE----- --O5XBE6gyVG5Rl6Rj-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 9:26:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAAF837B401; Thu, 13 Feb 2003 09:26:20 -0800 (PST) Received: from sentry.gw.tislabs.com (sentry.gw.tislabs.com [192.94.214.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C044643FBD; Thu, 13 Feb 2003 09:26:19 -0800 (PST) (envelope-from amigus@tislabs.com) Received: by sentry.gw.tislabs.com; id MAA11303; Thu, 13 Feb 2003 12:26:59 -0500 (EST) Received: from raven.gw.tislabs.com(10.33.1.50) by sentry.gw.tislabs.com via smap (V5.5) id xma011262; Thu, 13 Feb 03 12:26:23 -0500 Received: (from amigus@localhost) by raven.gw.tislabs.com (8.11.6/8.11.6) id h1DHHRB14350; Thu, 13 Feb 2003 12:17:27 -0500 (EST) Date: Thu, 13 Feb 2003 12:17:27 -0500 From: Adam Migus To: Josef Karthauser Cc: current@FreeBSD.org Subject: Re: usbd patch (MAXUSBDEV no more) Message-ID: <20030213171727.GA14216@raven.gw.tislabs.com> References: <20030213160229.GA9742@raven.gw.tislabs.com> <20030213170128.GB2502@genius.tao.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030213170128.GB2502@genius.tao.org.uk> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joe, funny you should mention. I actually tried posting this patch three times. The first two times I actually said in the (more elaborate) explanation of the patch that I as well am moving toward devd. So, I see your point and it's why I didn't bother spending more than 30 minutes doing this patch. I'd like to see usbd go away. I'd like to help devd take it's place. Adam On Thu, Feb 13, 2003 at 05:01:28PM +0000, Josef Karthauser wrote: > On Thu, Feb 13, 2003 at 11:02:29AM -0500, Adam Migus wrote: > > This patch makes usbd track a dynamic number of devices using a list > > instead of the static array of 4 devices. It's implemented as a list > > but it's very easy to change. > > Thanks, although I'm not clear as to the future of usbd. With the > advent of devd most of usbd's functionality will probably me implemented > over there instead. I've not spent a great deal of time looking at devd > yet to be sure. > > Joe > -- > Josef Karthauser (joe@tao.org.uk) http://www.josef-k.net/ > FreeBSD (cvs meister, admin and hacker) http://www.uk.FreeBSD.org/ > Physics Particle Theory (student) http://www.pact.cpes.sussex.ac.uk/ > ================ An eclectic mix of fact and theory. ================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 9:30:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9159637B401; Thu, 13 Feb 2003 09:30:26 -0800 (PST) Received: from yertle.int.kciLink.com (yertle.kcilink.com [216.194.193.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0AD343F3F; Thu, 13 Feb 2003 09:30:25 -0800 (PST) (envelope-from khera@kcilink.com) Received: from onceler.int.kciLink.com (onceler.int.kcilink.com [192.168.7.2]) by yertle.int.kciLink.com (Postfix) with ESMTP id 529302178A; Thu, 13 Feb 2003 10:30:13 -0500 (EST) Received: by onceler.int.kciLink.com (Postfix, from userid 100) id 223BD3D17; Thu, 13 Feb 2003 10:30:13 -0500 (EST) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15947.47620.997086.28966@onceler.int.kciLink.com> Date: Thu, 13 Feb 2003 10:30:12 -0500 To: Terry Lambert Cc: Lucky Green , postfix_tls@aet.tu-cottbus.de, ports@freebsd.org, openssl-users@openssl.org, freebsd-current@FreeBSD.ORG Subject: Re: OpenSSL 0.9.6/0.9.7 library version conflicts In-Reply-To: <3E4B3ECE.94175119@mindspring.com> References: <003201c2d315$8d998e20$6601a8c0@VAIO650> <3E4B3ECE.94175119@mindspring.com> X-Mailer: VM 7.07 under 21.4 (patch 12) "Portable Code" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >>>>> "TL" == Terry Lambert writes: TL> not being overridden, even when the library path is. This is TL> most likely due to a bug in the GNU configure script. The best TL> way around those bugs is "do not use GNU configure". >> FYI, FreeBSD is not the only OS on which this problem has been found to >> exist. Debian Linux is experience the same problem. See a post to >> debian-devel-announce attached below. TL> FWIW: this confirms that it's a Postfix problem. Postfix does not use GNU configure. I'm not sure how to fix it, but will gladly accept patches that work both with and without the openssl port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 10:19:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9ADB37B401; Thu, 13 Feb 2003 10:19:55 -0800 (PST) Received: from mckinley.corp.yahoo.com (mckinley.corp.yahoo.com [216.145.62.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AB6B43F93; Thu, 13 Feb 2003 10:19:55 -0800 (PST) (envelope-from peter@freebsd.org) Received: from mckinley.corp.yahoo.com (localhost [127.0.0.1]) by mckinley.corp.yahoo.com (8.12.6/8.12.6) with ESMTP id h1DIJsHB029087; Thu, 13 Feb 2003 10:19:54 -0800 (PST) (envelope-from peter@freebsd.org) Received: (from root@localhost) by mckinley.corp.yahoo.com (8.12.6/8.12.6/Submit) id h1DIJshp029086; Thu, 13 Feb 2003 10:19:54 -0800 (PST) Message-Id: <200302131819.h1DIJshp029086@mckinley.corp.yahoo.com> From: Peter Wemm Date: Thu, 13 Feb 2003 10:19:54 -0800 (PST) Subject: ia64 tinderbox failure To: current@freebsd.org, ia64@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 10:31:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6344C37B401 for ; Thu, 13 Feb 2003 10:31:40 -0800 (PST) Received: from tao.xtaz.co.uk (pc-62-30-69-139-az.blueyonder.co.uk [62.30.69.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id B558043F3F for ; Thu, 13 Feb 2003 10:31:38 -0800 (PST) (envelope-from matt@xtaz.co.uk) Received: from webmail.xtaz.co.uk (matt@localhost.xtaz.co.uk [127.0.0.1]) by tao.xtaz.co.uk (8.12.7/8.12.7) with ESMTP id h1DIVZ81006939 for ; Thu, 13 Feb 2003 18:31:36 GMT (envelope-from matt@xtaz.co.uk) From: "Matt" To: freebsd-current@freebsd.org Subject: buildkernel error on latest cvs src's Date: Thu, 13 Feb 2003 18:31:35 +0000 Message-Id: <20030213182950.M17985@xtaz.co.uk> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 192.168.1.10 (matt) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Trying a buildworld/buildkernel of today's latest cvs code and the buildworld has compiled fine but the kernel is giving the error below. I thought it would be something missing from my kernel file that has been added to GENERIC so I tried compiling GENERIC and get exactly the same error. Nothing in src/UPDATING about this so any suggestions? cc -O -pipe -mcpu=pentiumpro -D_KERNEL -Wall -Wredundant-decls -Wnested- externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ - I@/dev -I@/../include -fno-common -mno-align-long-strings -mpreferred-stack- boundary=2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict- prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual - fformat-extensions -ansi -c /usr/src/sys/pci/agp_i810.c /usr/src/sys/pci/agp_i810.c: In function `agp_i810_match': /usr/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:112: (Each undeclared identifier is reported only once /usr/src/sys/pci/agp_i810.c:112: for each function it appears in.) /usr/src/sys/pci/agp_i810.c:113: `AGP_I855_GME' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:116: `AGP_I855_GM' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:119: `AGP_I852_GME' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:122: `AGP_I852_GM' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c: In function `agp_i810_attach': /usr/src/sys/pci/agp_i810.c:342: `AGP_I855_GCC1' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:343: `AGP_I855_GCC1_GMS' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:344: `AGP_I855_GCC1_GMS_STOLEN_1M' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:347: `AGP_I855_GCC1_GMS_STOLEN_4M' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:350: `AGP_I855_GCC1_GMS_STOLEN_8M' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) /usr/src/sys/pci/agp_i810.c:356: `AGP_I855_GCC1_GMS_STOLEN_32M' undeclared (first use in this function) *** Error code 1 Stop in /usr/src/sys/modules/agp. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/obj/usr/src/sys/TAO. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. --- Matt (matt@xtaz.co.uk) http://www.xtaz.co.uk/ --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 11:27:18 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A7337B405 for ; Thu, 13 Feb 2003 11:27:17 -0800 (PST) Received: from haystack.lclark.edu (haystack.lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id CDFB843FB1 for ; Thu, 13 Feb 2003 11:27:16 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021311271628154 for ; Thu, 13 Feb 2003 11:27:16 -0800 Subject: Re: alpha tinderbox failure From: Eric Anholt To: current@FreeBSD.ORG In-Reply-To: <200302131128.h1DBSP45082669@beast.freebsd.org> References: <200302131128.h1DBSP45082669@beast.freebsd.org> Content-Type: text/plain Organization: Message-Id: <1045164567.698.3.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 13 Feb 2003 11:29:28 -0800 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 03:28, Dag-Erling Smorgrav wrote: > ===> agp > /h/des/src/sys/pci/agp_i810.c: In function `agp_i810_match': > /h/des/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:112: (Each undeclared identifier is reported only once > /h/des/src/sys/pci/agp_i810.c:112: for each function it appears in.) > /h/des/src/sys/pci/agp_i810.c:113: `AGP_I855_GME' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:116: `AGP_I855_GM' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:119: `AGP_I852_GME' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:122: `AGP_I852_GM' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c: In function `agp_i810_attach': > /h/des/src/sys/pci/agp_i810.c:342: `AGP_I855_GCC1' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:343: `AGP_I855_GCC1_GMS' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:344: `AGP_I855_GCC1_GMS_STOLEN_1M' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:347: `AGP_I855_GCC1_GMS_STOLEN_4M' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:350: `AGP_I855_GCC1_GMS_STOLEN_8M' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) > /h/des/src/sys/pci/agp_i810.c:356: `AGP_I855_GCC1_GMS_STOLEN_32M' undeclared (first use in this function) > *** Error code 1 I'm very sorry about this, I committed only one of the two files. It should be fixed now. As a side note, do any of these AGP chipsets apply to sparc64, alpha, ia64? -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 11:35: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA8B37B401 for ; Thu, 13 Feb 2003 11:35:06 -0800 (PST) Received: from dmz2.unixjunkie.com (adsl-65-70-175-249.dsl.rcsntx.swbell.net [65.70.175.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id D55C043FB1 for ; Thu, 13 Feb 2003 11:35:04 -0800 (PST) (envelope-from strgout@unixjunkie.com) Received: from mail.unixjunkie.com (mail [10.253.254.36]) by dmz2.unixjunkie.com (8.12.6/8.12.6) with ESMTP id h1DJjGeA074625 for ; Thu, 13 Feb 2003 13:45:17 -0600 (CST) (envelope-from strgout@mail.unixjunkie.com) Received: from mail.unixjunkie.com (mail [10.253.254.36]) by mail.unixjunkie.com (8.12.6/8.12.6) with ESMTP id h1DJjGZC074622 for ; Thu, 13 Feb 2003 13:45:16 -0600 (CST) (envelope-from strgout@mail.unixjunkie.com) Received: (from strgout@localhost) by mail.unixjunkie.com (8.12.6/8.12.6/Submit) id h1DJjGc1074621 for freebsd-current@freebsd.org; Thu, 13 Feb 2003 13:45:16 -0600 (CST) (envelope-from strgout) Date: Thu, 13 Feb 2003 13:45:16 -0600 From: John To: freebsd-current@freebsd.org Subject: compaq smart array 5312 Message-ID: <20030213194515.GA74604@mail.unixjunkie.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG did this patch get added to current? http://people.freebsd.org/~ps/ciss.diff any chance to get this added to 4.8 also? I've had no problems with it, everything is working just fine in 5.0R and 4.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 11:49:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD1AF37B401 for ; Thu, 13 Feb 2003 11:49:26 -0800 (PST) Received: from tao.xtaz.co.uk (pc-62-30-69-139-az.blueyonder.co.uk [62.30.69.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5D0843FAF for ; Thu, 13 Feb 2003 11:49:24 -0800 (PST) (envelope-from matt@xtaz.co.uk) Received: from webmail.xtaz.co.uk (matt@localhost.xtaz.co.uk [127.0.0.1]) by tao.xtaz.co.uk (8.12.7/8.12.7) with ESMTP id h1DJnM81043043 for ; Thu, 13 Feb 2003 19:49:23 GMT (envelope-from matt@xtaz.co.uk) From: "Matt" To: freebsd-current@freebsd.org Subject: Re: buildkernel error on latest cvs src's Date: Thu, 13 Feb 2003 19:49:22 +0000 Message-Id: <20030213194823.M47950@xtaz.co.uk> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 192.168.1.10 (matt) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I'm very sorry about this, I committed only one of the two files. It > should be fixed now. Excellent. Not me doing something stupid then! Cheers ;-) --- Matt (matt@xtaz.co.uk) http://www.xtaz.co.uk/ --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 11:51:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1703037B401 for ; Thu, 13 Feb 2003 11:51:09 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A4A43FBD for ; Thu, 13 Feb 2003 11:51:07 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1DJp68I028743 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 13 Feb 2003 14:51:06 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1DJp1t33905; Thu, 13 Feb 2003 14:51:01 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15947.63269.412296.626616@grasshopper.cs.duke.edu> Date: Thu, 13 Feb 2003 14:51:01 -0500 (EST) To: Eric Anholt Cc: current@FreeBSD.ORG Subject: Re: alpha tinderbox failure In-Reply-To: <1045164567.698.3.camel@leguin> References: <200302131128.h1DBSP45082669@beast.freebsd.org> <1045164567.698.3.camel@leguin> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Eric Anholt writes: > As a side note, do any of these AGP chipsets apply to sparc64, alpha, > ia64? The alpha UP1000 has an amd-751 chipset and should be able to use the amd agp module. I tried it shortly after it was brought into the tree a few years ago, and it locked the box solid. I was never motivated to debug it. That machine is now headless. I'd be quite happy, from a compile-time and disk-space perspective to have you not build these on alpha. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 12: 3: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9320137B401; Thu, 13 Feb 2003 12:03:01 -0800 (PST) Received: from tomts25-srv.bellnexxia.net (tomts25.bellnexxia.net [209.226.175.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AEB443FA3; Thu, 13 Feb 2003 12:03:00 -0800 (PST) (envelope-from mike@sparc64.style9.org) Received: from sparc64.style9.org ([65.93.76.77]) by tomts25-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030213200259.SURF7180.tomts25-srv.bellnexxia.net@sparc64.style9.org>; Thu, 13 Feb 2003 15:02:59 -0500 Received: (from mike@localhost) by sparc64.style9.org (8.12.6/8.12.6/Submit) id h1DK3XTU062102; Thu, 13 Feb 2003 15:03:33 -0500 (EST) Date: Thu, 13 Feb 2003 15:03:33 -0500 (EST) From: Mike Barcroft Message-Id: <200302132003.h1DK3XTU062102@sparc64.style9.org> To: current@FreeBSD.org, sparc64@FreeBSD.org Subject: sparc64 tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tinderbox FAQ: http://people.FreeBSD.org/~mike/tinderbox.html -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /tinderbox/sparc64/obj/tinderbox/sparc64/src/sparc64/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- >>> Kernel build for GENERIC started on Thu Feb 13 14:30:47 EST 2003 -------------------------------------------------------------- ===> agp /tinderbox/sparc64/src/sys/pci/agp_i810.c: In function `agp_i810_match': /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: (Each undeclared identifier is reported only once /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: for each function it appears in.) /tinderbox/sparc64/src/sys/pci/agp_i810.c:113: `AGP_I855_GME' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:116: `AGP_I855_GM' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:119: `AGP_I852_GME' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:122: `AGP_I852_GM' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c: In function `agp_i810_attach': /tinderbox/sparc64/src/sys/pci/agp_i810.c:342: `AGP_I855_GCC1' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:343: `AGP_I855_GCC1_GMS' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:344: `AGP_I855_GCC1_GMS_STOLEN_1M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:347: `AGP_I855_GCC1_GMS_STOLEN_4M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:350: `AGP_I855_GCC1_GMS_STOLEN_8M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:356: `AGP_I855_GCC1_GMS_STOLEN_32M' undeclared (first use in this function) *** Error code 1 Stop in /tinderbox/sparc64/src/sys/modules/agp. *** Error code 1 Stop in /tinderbox/sparc64/src/sys/modules. *** Error code 1 Stop in /tinderbox/sparc64/obj/tinderbox/sparc64/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 13: 8:32 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B541037B401 for ; Thu, 13 Feb 2003 13:08:31 -0800 (PST) Received: from jive.SoftHome.net (jive.SoftHome.net [66.54.152.27]) by mx1.FreeBSD.org (Postfix) with SMTP id F389443FAF for ; Thu, 13 Feb 2003 13:08:30 -0800 (PST) (envelope-from lattera@softhome.net) Received: (qmail 12233 invoked by uid 417); 13 Feb 2003 21:08:30 -0000 Received: from slide-.softhome.net (HELO softhome.net) (172.16.2.21) by shunt-smtp-out-0 with SMTP; 13 Feb 2003 21:08:30 -0000 Received: from localhost (localhost [127.0.0.1]) (uid 417) by softhome.net with local; Thu, 13 Feb 2003 14:08:30 -0700 From: lattera@softhome.net To: freebsd-current@freebsd.org Subject: mdconfig problems Date: Thu, 13 Feb 2003 14:08:30 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Sender: lattera@softhome.net X-Originating-IP: [204.113.120.200] Message-ID: Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -su-2.05b# mdconfig -a -t vnode -f filesys mdconfig: ioctl(/dev/mdctl): No such file or directory -su-2.05b# ls /dev/md* /dev/mdctl -su-2.05b# why does that happen? I'm doing everything the handbook says to... However, -su-2.05b# mdconfig -a -t malloc -s 4m md0 -su-2.05b# Thanks, lattera FreeBSD my.hostname 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 GMT 2003 root@hollin.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 13:15:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 730E737B401 for ; Thu, 13 Feb 2003 13:15:19 -0800 (PST) Received: from tntpro.com (dsl-207-5-188-75.gwi.net [207.5.188.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D2AB43F85 for ; Thu, 13 Feb 2003 13:15:18 -0800 (PST) (envelope-from tony@tntpro.com) Received: from lappy (lappy.tntpro.com [192.168.0.16]) by tntpro.com (8.12.6/8.12.6) with SMTP id h1DLFG7n012805; Thu, 13 Feb 2003 16:15:17 -0500 (EST) (envelope-from tony@tntpro.com) From: "tony" To: Cc: Subject: RE: Problems with timekeeping Date: Thu, 13 Feb 2003 16:16:55 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <5296.1045123157@critter.freebsd.dk> Importance: Normal Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG as you can see below that fixed it! before every time I did an nptdate command it would be a second off at least. Thank you for the help! Tony root:~# sysctl kern.timecounter.hardware=i8254 kern.timecounter.hardware: ACPI-safe -> i8254 root:~# ntpdate ntp.nasa.gov 13 Feb 16:07:05 ntpdate[12753]: step time server 198.123.30.132 offset -75.755911 sec root:~# ntpdate ntp.nasa.gov 13 Feb 16:07:07 ntpdate[12754]: adjust time server 198.123.30.132 offset -0.002553 sec root:~# ntpdate ntp.nasa.gov 13 Feb 16:07:09 ntpdate[12757]: adjust time server 198.123.30.132 offset 0.001302 sec root:~# ntpdate ntp.nasa.gov 13 Feb 16:07:10 ntpdate[12758]: adjust time server 198.123.30.132 offset -0.003793 sec root:~# ntpdate ntp.nasa.gov 13 Feb 16:07:12 ntpdate[12759]: adjust time server 198.123.30.132 offset 0.003071 sec root:~# -----Original Message----- From: owner-freebsd-current@FreeBSD.ORG [mailto:owner-freebsd-current@FreeBSD.ORG]On Behalf Of phk@phk.freebsd.dk Sent: Thursday, February 13, 2003 2:59 AM To: tony Cc: current@FreeBSD.ORG Subject: Re: Problems with timekeeping In message , "tony" writes: >My time clock seems to do two ticks for every one that it should do. I'm not >sure where to start on fixing this. I had 4.7 installed and did a clean >install of 5.0 release thats when I noticed the time keeping weirdness.. it >always kept time perfectly before. I cvsuped to tag=RELENG_5_0 and built >installed built kernel installed. but no change... > >Any ideas? Please try: sysctl kern.timecounter.hardware=i8254 Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 14:15:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA9BA37B40C for ; Thu, 13 Feb 2003 14:15:16 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06E1D43F93 for ; Thu, 13 Feb 2003 14:15:16 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1DMF9Rj087566 for ; Thu, 13 Feb 2003 14:15:09 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1DMDoiU087558 for freebsd-current@freebsd.org; Thu, 13 Feb 2003 14:13:50 -0800 (PST) Date: Thu, 13 Feb 2003 14:13:49 -0800 From: "David O'Brien" To: freebsd-current@freebsd.org Subject: What is the use of FB_INSTALL_CDEV in today's 5-CURRENT? Message-ID: <20030213221349.GA87545@dragon.nuxi.com> Reply-To: freebsd-current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What is the use of options FB_INSTALL_CDEV # install a CDEV entry in /dev for in 5-CURRENT? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 14:47:25 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5387B37B401 for ; Thu, 13 Feb 2003 14:47:24 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E0E43FDD for ; Thu, 13 Feb 2003 14:47:23 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.7/8.12.1) with ESMTP id h1DMlKeG001601; Thu, 13 Feb 2003 17:47:20 -0500 (EST) Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.7/8.12.1/Submit) id h1DMlJoU001600; Thu, 13 Feb 2003 17:47:19 -0500 (EST) (envelope-from hiten) Date: Thu, 13 Feb 2003 17:47:19 -0500 From: Hiten Pandya To: lattera@softhome.net Cc: freebsd-current@FreeBSD.ORG Subject: Re: mdconfig problems Message-ID: <20030213224719.GB93611@unixdaemons.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 02:08:30PM -0700, lattera@softhome.net wrote the words in effect of: > -su-2.05b# mdconfig -a -t vnode -f filesys > mdconfig: ioctl(/dev/mdctl): No such file or directory > -su-2.05b# ls /dev/md* > /dev/mdctl > -su-2.05b# > > why does that happen? I'm doing everything the handbook says to... Do you actually have the file, 'filesys'? The argument to -f is meant to be the name of a file used as a backing store. Something like thse might help you: # dd if=/dev/zero of=/tmp/mdstore bs=1m count=50 (50M zero'd file created) # mdconfig -a -t vnode -f /tmp/mdstore (used file for backing...) # ls /dev/md* /dev/mdctl /dev/md0 ... Cheers. -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 14:49:40 2003 Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id 3BB6937B401; Thu, 13 Feb 2003 14:49:39 -0800 (PST) Date: Thu, 13 Feb 2003 16:49:39 -0600 From: Juli Mallett To: Hiten Pandya Cc: lattera@softhome.net, freebsd-current@FreeBSD.ORG Subject: Re: mdconfig problems Message-ID: <20030213164939.A70606@FreeBSD.org> References: <20030213224719.GB93611@unixdaemons.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030213224719.GB93611@unixdaemons.com>; from hiten@unixdaemons.com on Thu, Feb 13, 2003 at 05:47:19PM -0500 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Hiten Pandya [ Data: 2003-02-13 ] [ Subjecte: Re: mdconfig problems ] > On Thu, Feb 13, 2003 at 02:08:30PM -0700, lattera@softhome.net wrote the words in effect of: > > -su-2.05b# mdconfig -a -t vnode -f filesys > > mdconfig: ioctl(/dev/mdctl): No such file or directory > > -su-2.05b# ls /dev/md* > > /dev/mdctl > > -su-2.05b# > > > > why does that happen? I'm doing everything the handbook says to... > > Do you actually have the file, 'filesys'? The argument to -f is meant > to be the name of a file used as a backing store. Something like thse > might help you: Making it './filesys' should work. I don't have the OP's message, in my inbox, so I'll just reply here. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 15:37:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39FE537B401 for ; Thu, 13 Feb 2003 15:37:14 -0800 (PST) Received: from puffin.mail.pas.earthlink.net (puffin.mail.pas.earthlink.net [207.217.120.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90FED43FAF for ; Thu, 13 Feb 2003 15:37:13 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0247.cvx22-bradley.dialup.earthlink.net ([209.179.198.247] helo=mindspring.com) by puffin.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18jSul-0001Ic-00; Thu, 13 Feb 2003 15:37:12 -0800 Message-ID: <3E4C2BD4.258DA525@mindspring.com> Date: Thu, 13 Feb 2003 15:35:48 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Ken McKittrick Cc: current@FreeBSD.ORG Subject: Re: FreeBSD 5 not working with Linux Virtual Server References: <44DA7EC5-3F74-11D7-A349-000393B2B0EE@usadatanet.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a412773a47d96d366f88442d843d6c9771350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ken McKittrick wrote: > I've got a FreeBSD5.0-R machine that doesn't work with Linux Virtual > Server. This is for SMTP and WWW services. > > I'm using LVS-Direct Routing. The LVS machine has the 66.218.0.54 Real > IP and 66.218.0.58 and 66.218.0.59 as Virtual IP's. The FreeBSD machine > has 66.218.0.28 and a Real IP on fxp0 and 66.218.0.58/59 on lo0 with > -arp. > > Running tcpdump host 66.218.0.54 I can see the requests come in, but > nothing is going back out. When you telnet into port 25 the connection > times out. > > I've running Linux LVS with FreeBSD4-STABLE SMTP machines in production > so I'm confident that it's a FreeBSD 5.0 issue. I'm guessing this is some LVS specific terminology that someone made up because they did not read the literature before writing their code? Is this the DSR or "Direct Server Return" configuration? If so, the answer is that you need to specify the LVS as the default return route, and not answer locally, even though it appears to be a local net. This can be handled using explicit routes for the alias IP addresses. You *did* put the alias IP addresses on the loopback interface, and turn of ARP'ing for them, right? If you need more help, probably the correct place to ask is not the -current list, but the -net list (after you replace the terminology "LVS-Direct" with it's real name; I'm only guessing you meant DSR here). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 15:59:34 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E276337B401 for ; Thu, 13 Feb 2003 15:59:32 -0800 (PST) Received: from 3jane.math.ualberta.ca (3jane.math.ualberta.ca [129.128.206.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 391D643FA3 for ; Thu, 13 Feb 2003 15:59:32 -0800 (PST) (envelope-from bvowk@math.ualberta.ca) Received: from 3jane.math.ualberta.ca (localhost.math.ualberta.ca [127.0.0.1]) by 3jane.math.ualberta.ca (8.12.6/8.12.6) with ESMTP id h1DNxNR3027783 for ; Thu, 13 Feb 2003 16:59:23 -0700 (MST) (envelope-from bvowk@math.ualberta.ca) Received: from localhost (bvowk@localhost) by 3jane.math.ualberta.ca (8.12.6/8.12.6/Submit) with ESMTP id h1DNxNq4027780 for ; Thu, 13 Feb 2003 16:59:23 -0700 (MST) X-Authentication-Warning: 3jane.math.ualberta.ca: bvowk owned process doing -bs Date: Thu, 13 Feb 2003 16:59:23 -0700 (MST) From: Barkley Vowk To: freebsd-current@freebsd.org Subject: FEC with ng_fec.ko on 5.0-RELEASE Message-ID: <20030213165436.L26074-100000@3jane.math.ualberta.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG So I've upgraded my cluster to 5.0-RELEASE, everything is running fine, so I move the fileserver to 5.0-RELEASE, everything is fine. I attempt to configure the fileserver to use the 4 network cards in a fec bundle, this blows up unhappily. I can create the interface, I can add the other interfaces, and I can ifconfig it as before. But no traffic goes through the interface (ping and the like don't work but it doesn't panic), and if I try to use tcpdump the box panics. I've had this working for a few years in 4.X so I'm sure my configuration is correct. Any ideas? ----------------------------------------------------------- Barkley C. Vowk -- Systems Analyst -- University of Alberta Math Sciences Department - Barkley.Vowk@math.ualberta.ca Office: CAB642A, 780-492-4064 Opinions expressed are the responsibility of the author and may not reflect the opinions of others or reality. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 16:30:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45AD237B401; Thu, 13 Feb 2003 16:30:09 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0A4743F93; Thu, 13 Feb 2003 16:30:08 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0247.cvx22-bradley.dialup.earthlink.net ([209.179.198.247] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18jTjp-0004cG-00; Thu, 13 Feb 2003 16:29:58 -0800 Message-ID: <3E4C3834.4383B0F2@mindspring.com> Date: Thu, 13 Feb 2003 16:28:36 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Vivek Khera Cc: Lucky Green , postfix_tls@aet.tu-cottbus.de, ports@freebsd.org, openssl-users@openssl.org, freebsd-current@FreeBSD.ORG Subject: Re: OpenSSL 0.9.6/0.9.7 library version conflicts References: <003201c2d315$8d998e20$6601a8c0@VAIO650> <3E4B3ECE.94175119@mindspring.com> <15947.47620.997086.28966@onceler.int.kciLink.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a42009c34daf08d416680d27bab59f83e3666fa475841a1c7a350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Vivek Khera wrote: > >>>>> "TL" == Terry Lambert writes: > TL> not being overridden, even when the library path is. This is > TL> most likely due to a bug in the GNU configure script. The best > TL> way around those bugs is "do not use GNU configure". > > >> FYI, FreeBSD is not the only OS on which this problem has been found to > >> exist. Debian Linux is experience the same problem. See a post to > >> debian-devel-announce attached below. > > TL> FWIW: this confirms that it's a Postfix problem. > > Postfix does not use GNU configure. I'm not sure how to fix it, but > will gladly accept patches that work both with and without the openssl > port. Then whatever it uses instead to determine platform dependencies isn't working. The issue is that there should be a way to specify use of a preferred -I for include files during compilation, and a preferred -L for library files, during linking, and that one or both of these is missing. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 16:36:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4544C37B401 for ; Thu, 13 Feb 2003 16:36:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D38A43FB1 for ; Thu, 13 Feb 2003 16:36:20 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from freefall.freebsd.org (scottl@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E0aKNS071052 for ; Thu, 13 Feb 2003 16:36:20 -0800 (PST) (envelope-from scottl@freefall.freebsd.org) Received: (from scottl@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1E0aK3q071051 for current@freebsd.org; Thu, 13 Feb 2003 16:36:20 -0800 (PST) Date: Thu, 13 Feb 2003 16:36:20 -0800 (PST) From: Scott Long Message-Id: <200302140036.h1E0aK3q071051@freefall.freebsd.org> To: current@freebsd.org Subject: 5-STABLE Roadmap Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG All, Thanks to the hard work of everyone, FreeBSD 5.0 became a reality and is working better than most even hoped. However, there is still a lot of work to be done before we can create the RELENG_5/5-STABLE branch and declare success. Below is a document that I have drafted with the input and review of the Release Engineering Team, the Technical Review Board, and the Core Team that defines what needs to be done in order to reach 5-STABLE. I'm happy to take further input into this, and I will also mark it up and make it available online. The Roadmap for 5-STABLE 1. Introduction and background After nearly three years of work, FreeBSD 5.0 was released in January of 2003. Features like the GEOM block layer, Mandatory Access Controls, ACPI, sparc64 and ia64 platform support, and UFS snapshots, background filesystem checks, and 64-bit inode sizes make it an exciting operating system for both desktop and production users. However, some important features are not complete. The foundations for fine-grained locking and preemption in the kernel exist, but much more work is left to be done. Work on Kernel Schedulable Entities, also known as Scheduler Activations, has been ongoing but needs a push to realize its benefit. Performance compared to FreeBSD 4.x has declined and must be restored and surpassed. This is somewhat similar to the situation that FreeBSD faced in the 3.x series. Work on 3-CURRENT trudged along seemingly forever, and finally a cry was made to 'just ship it' and clean up later. This decision resulted in the 3.0 and 3.1 releases being very unsatisfying for most, and it wasn't until 3.2 that the series was considered 'stable'. To make matters worse, the RELENG_3 branch was created along with the 3.0 release, and the HEAD branch was allowed to advance immediately towards 4-CURRENT. This resulted in a quick divergence between HEAD and RELENG_3, making maintenance of the RELENG_3 branch very difficult. FreeBSD 2.2.8 was left for quite a while as the last production-quality version of FreeBSD. Our intent is to avoid repeating that scenario with FreeBSD 5.x. Delaying the RELENG_5 branch until it is stable and production quality will ensure that it stays maintainable and provides a compelling reason to upgrade from 4.x, To do this, we must identify the current areas of weakness and set clear goals for resolving them. This document contains what we as the release engineering team feel are the milestones and issues that must be resolved for the RELENG_5 branch. It does not dictate every aspect of FreeBSD development, and we welcome further input. Nothing that follows is meant to be a sleight against any person or group, or to trivialize any work that has been done. There are some significant issues, though, that need decisive and unbiased action. 2. Major issues The state of SMPng and kernel lockdown is the biggest concern for 5.x. To date, few major systems have come out from under the kernel-wide mutex known as 'Giant'. The SMP status page at http://www.FreeBSD.org/smp provides a comprehensive breakdown of the overall SMPng status. Status specific to SMPng progress in deivce drivers can be found at at httP//www.FreeBSD.org/projects/busdma. In summary: - VM - the kmem_malloc(M_NOWAIT) path no longer needs Giant held. The kmem_malloc(M_WAITOK) path is in progress and is expected to be finished in the coming weeks. Other facets of the VM system, like the vfs interface, buffer/cache, etc, are largely untouched. - GEOM - The GEOM block layer was designed to run free of Giant, but at this time no block drivers can run without Giant. Additionally, it has the potential to suffer performance loss due to its upcall/downcall data paths happening in kernel threads. Lightweight context switches might help this. - Network - Work is in progress to lock the TCP and UDP portions of the stack. This also includes locking the routing tree, ARP code, and ifaddr and inet data structures. RawIP, IPv6, Appletalk, etc, have not been touched. Locking the socket layer is in progress but is largely untested. None of the hardware drivers have been locked. - VFS - Initial pre-cleanup started. - buffer/cache - Initial work complete. - Proc - Work on locking the proc structure was ongoing for a while but seems to have stalled. - CAM - No significant work has occurred on the CAM SCSI layer. - Newbus - some work has started on locking down the device_t structure. - Pipes - complete with the exception of VM-related optimizations. - File descriptors - complete. - Process accounting - jails, credentials, MAC labels, and scheduler are out from under Giant. - MAC Framework - complete - Timekeeping - complete - kernel encryption - crypto drivers and core crypto framework are Giant-free. KAME IPsec and FAST IPSec have not been locked. - Sound subsystem - complete - kernel preemption - preemption for interrupt threads is enabled. However, contention due to Giant covering much of the kernel and most of the device driver interrupt routines causes excessive context switches and might actually be hurting performance. Work is underway to explore ways to make preemption be conditional. Another issue with SMPng is interrupt latency. The overhead of doing a complete context switch to a kernel interrupt thread is high and shows noticeable latency. Work is ongoing to implement lazy context switching on all platforms. Fine grained locking of drivers will also help this, as will converting drivers to be as efficient as possible in their interrupt routines. Next, the state of KSE must resolved for RELENG_5. Work on it has slowed noticeably in the past 6 months but appears to be picking up again. There are a number of issues that must be addressed: - Signal delivery to threads is not defined. Signals are delivered to the process, but which thread actually receives it is random. - There is confusion over whether upcalls are generated on every system call or when a thread blocks. The former is highly undesirable and needs to be investigated. - The userland threading library, currently called libkse, is incomplete and has not been used for any significant threaded application. - KSE has the potential to uncover latent race conditions and create new ones. An audit needs to be performed to ensure that no obvious problems exist. According to the release schedule below, KSE kernel and userland components must be functionality complete by June 2003 in order to be included in the RELENG_5 branch. For security and stability reasons, if KSE cannot be finished in time then, by default, all KSE-specific syscalls should be modified to return ENOSYS and all other KSE-specific interfaces disabled. Deprecating KSE from RELENG_5 but keeping it in the HEAD branch will pose problems in porting bugfixes and features between the two branches, so every effort should be made to finish it on time. 3. Goals for 5-STABLE The goals for the RELENG_5 branch point are: - All subsystems and interfaces must be mature enough to be maintainable for improvements and bug fixes - equal or better stability from FreeBSD 4.8. - no functional regressions from 4.8. It is important to make sure that users do not avoid upgrading to 5.x because of lost functionality. - performance on par with FreeBSD 4.8 for most common operations. Both UP and SMP configurations should be evaluated. SMP has the potential to perform much better than 4.x, though for the purposes of creating the RELENG_5 branch, comparable performance between the two should be acceptable. It is unrealistic to expect that the SMPng project will be fully complete by RELENG_5, or that performance will be significantly better than 4.x. However, focusing on a subset of the outstanding tasks will give enough benefit for the branch to be viable and maintainable. To break it down: - ABI/API/Infrastructure stability - Enough infrastructure must be in place and stable to allow fixes from HEAD to easily and safely be merged into RELENG_5. Also, we must draw a line as to what subsystems are to be locked down when we go into 5-STABLE. - SMPng - VM - Most codepaths, others than the ones that interact with VFS, should be Giant-free for RELENG_5. - Network - Taking the network stack out from under Giant poses the risk of uncovering latent bugs and races. Locking it down but not removing Giant imposes further performance penalties. A decision on whether to continue with locking the network layers, and whether they should be free from Giant for RELENG_5 should be made no later than March 15. If the decision is made to allow the locking to go forward, the IPv4, UDP, and TCP layers should be free of Giant. IPv6 and the socket layers would be nice to have also, though it should be investigated whether they can be safely locked down in 5.x after the RELENG_5 branch. If the decision is to keep the network stack under Giant for the branch, then an investigation should be made to determine if the present locking work can be reverted and deferred to 6-CURRENT. Having a Giant-free path from the the TCP/IP layers to the hardware should be investigated as it could allow significant performance gains in the network benchmarks. If this can be achieved then the hardware interface layer needs to allow for drivers to incrementally become free of Giant. Locking down at least two Ethernet drivers would be highly desirable. If the semantics are too complex to have the stack free of Giant but not the hardware drivers, investigation should be done into making it configurable. Lesser-used network stacks like netatlk, netipx, etc, should not break while this work is going on. However, locking them is not a high priority. - GEOM - At least 2 block drivers should be locked in order to demonstrate that others can also be locked without changing the interface to GEOM. The ATA driver is a good candidate for this, though caution should be taken as it is also extremely high-profile and any problems with it will affect nearly all users of FreeBSD. - Lazy context switching - sparc64 is the only platform that performs lazy context switching when entering the kernel. The performance gains promised by this are significant enough to require that it be implemented for all other Tier 1 platforms. - KSE - The kernel side of KSE must be functionally complete and have undergone a security audit. libkse must be complete enough to demonstrate a real-world application running correctly on it using the standard POSIX Threads API. Examples would be apache 2.0, squid, and/or mozilla. A functional regression test suite is also a requirement for RELENG_5 and should test signal delivery, scheduling, performance, and process security/credentials for both KSE and non- KSE processes. KSE kernel and userland components must also reach the same level of functionality for all Tier-1 platforms in both UP and SMP configurations. The definition of 'Tier-1 platforms' can be found at http://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/archs.html. - busdma interface and drivers - architectures like PAE/i386 and sparc64 which don't have a direct mapping between host memory address space and expansion bus address space require the elimination for vtophys() and friends. The busdma interface was created to handle exactly this problem, but many drivers do not use it yet. The busdma project at http://www.FreeBSD.org/projects/busdma/index.html tracks the progress of this and should be used to determine which drivers must be converted for RELENG_5 and which can be left behind. Also, there has been talk by several developers and the original author to give the busdma interface a minor overhaul. If this is to happen, it needs to happen before RELENG_5. Otherwise, differences between the old and new API will make driver maintenance difficult. - PCI resource allocation - PC2003 compliance requires that x86 systems no longer configure PCI devices from the system BIOS, leaving this task soley to the OS. FreeBSD must gain the ability to manage and allocate PCI memory resources on its own. Implementing this should take into account cardbus, PCI-HotPlug, and laptop dockstation requirements. This feature will become increasingly critical through the lifetime of RELENG_5, and therefore is a requirement for the RELENG_5 branch. - Performance - most performance gains hinge on the progress of SMPng Areas that should be concentrated on are: - Storage I/O - I/O performance suffers from two problems, too many expensive context switches, and too much work being done in interrupt threads. Specifically, it takes 3 context switches for most drivers to get from the hardware completion interrupt to unblocking the user process: one for the interrupt thread, one for the GEOM g_up thread, and one to get back to the user thread. Drivers that attempt to be efficient and quick in their interrupt handlers (as all should be) usually also schedule a taskqueue, which adds a context switch in between the interrupt thread and the g_up thread and brings the total up to 4. Two things need to be done to attack this: - make all drivers defer most of their processing out of their interrupt thread. Significant performance gains have been shown recently in the aac(4) driver by making its interrupt handler be 'INTR_MPSAFE' and moving all processing to a taskqueue. - investigate eliminating the taskqueue context switch by adding a callback to the g_up thread that allows a driver to do its interrupt processing there instead of in the taskqueue. - Network - Network drivers suffer from the interrupt latency previously mentioned as well as from the network stack being partially locked down but not free from Giant. Possible strategies for addressing this are described in the previous section. - Other locking - XXX ? - Benchmarks and performance testing - Having a source of reliable and useful benchmarks is essential to identifying performance problems and guarding against performance regressions. A 'performance team' that is made up of people and resources for formulating, developing, and executing benchmark tests should be put into place soon. Comparisons should be made against both FreeBSD 4.x and Linux 2.4.x. Tests to consider are: - the classic 'worldstone' - webstone - /usr/ports/www/webstone - Fstress - http://www.cs.duke.edu/ari/fstress - ApacheBench - /usr/ports/www/p5-ApacheBench - netperf - /usr/ports/benchmarks/netperf - Features: - ACPI - Intel's ACPI power management and device configuration subsystem has become an integral part of FreeBSD's x86 and ia64 device configuration model. However, many bugs exist in Intel's vendor code, our OS-specific code, and motherboard BIOSes, causing many ACPI-enabled systems to fail to boot, misdetect drivers, and/or have many other problems. Fixing these problems seems to be an uphill battle and is often times causing a poor first-impression of FreeBSD 5.0. Most x86 systems can function with ACPI disabled, and logic should be added to the bootloader and sysinstall to allow users to easily and intuitively turn it off. Turning off ACPI by default is prone to problems also as many newer systems rely on it to provide correct interrupt routing information. Also, a centralized resource should be created to track ACPI problems and solutions. Linux uses the same Intel vendor sources as FreeBSD, so we should investigate how they have handled some of the known problems. - NEWCARD/OLDCARD - The NEWCARD subsystem was made the default for 5.0. Unfortunately, it contains no support for non-Cardbus bridges and falls victim to interrupt routine problems on some laptops. The classic 16-bit bridge support, OLDCARD, still exists and can be compiled in, but this is highly inconvenient for users of older laptops. If OLDCARD cannot be completely deprecated for RELENG_5, then provisions must be made to allow users to easily install an OLDCARD-enabled kernel. Documentation should be written to help trasition users from OLDCARD to NEWCARD and from 'pccardd' to 'devd'. The power management and 'dumpcis' functionality of pccardc(1) needs to be brought forward to work with NEWCARD, along with the ability to load CIS quirk entries. Most of this functionality can be integrated into devd and devctl. - New scheduler framework - The new scheduler framework is in place, and users can select between the classic 44bsd scheduler and the new ULE scheduler. A scheduler that demonstrates processor affinity, HyperThreading and KSE awareness, and no regressions in performance or interactivity characteristics must be available for RELENG_5. - sparc64 local console - neither syscons nor vt work on sparc64, leaving it with only serial and 'fake' OFW console support. This is a major support hole for what is a Tier 1 platform. Whether syscons can be shoe-horned in or wscons be adopted from NetBSD is up for debate. However, sparc64 must have local console support for RELENG_5. Having this will also allow the XFree86 server to run, which is also a requirement for RELENG_5. - gcc/toolchain - gcc 3.3 might be available in time for RELENG_5 and might offer some attractive benefits, but also likely to introduce ABI incompatibility with prior gcc versions. ABI compatibility should be locked down for the RELENG_5 branch. There has also been a request to move /usr/include/g++ to /usr/include/g++-v3 to be more compliant with the stock behavior of gcc. This should be investigated for RELENG_5 also. - gdb - gdb from the base system should work for sparc64. It should also understand KSE thread semantics, assuming that KSE is included in the RELENG_5 branch. gdb 5.3 is available and there are reports that it should address the sparc64 issue. - disklabel(8) regressions - The biggest casualty of the introduction of GEOM appears to be the disklabel utility. The '-r' option gives unpredictable results in most cases now and should be removed or fixed. Work is planned for a new unified interface for modifying labels and slices, however this should not preclude disklabel from being fixed. - Documentation: - The manual pages, Handbook, and FAQ should be free from content specific to FreeBSD 4.x, i.e. all text should be equally applicable to FreeBSD 5.x. The installation section of the handbook needs the most work in this area. - The release documentation needs to be complete and accurate for all Tier 1 architectures. The hardware notes and installation guides need specific attention. - If FreeBSD 5.1 is not the branch point for RELENG_5 then the Early Adopters Guide needs to be updated. This document should then be removed just before the release closest to the RELENG_5 branch point. 4. Schedule If branching RELENG_5 at the 5.1 release is paramount, 5.1 will probably need to move out by at least 3 months. The schedule would be: - Jun 30, 2003 - KSE and SMPng feature freeze - Aug 4, 2003 - 5.1-BETA, general code freeze - Aug 18, 2003 - 5.1-RC1, RELENG_5 and RELENG_5_1 branched - Aug 25, 2003 - 5.1-RC2 - Sept 1, 2003 - 5.1-RELEASE Taking an incremental approach might be more beneficial. Releasing 5.1 in time for USENIX ATC 2003 will provide a wide audience for productive feedback and will keep FreeBSD visible. In this scenario, 5.1 should offer a significant improvement over 5.0 in terms of bug fixes and performance. Lockdowns and improvements to the storage subsystem and scheduler should be expected, the NEWCARD/OLDCARD issues should be addressed, and all known bugs and regressions from the 5.0 errata list should be fixed. KSE and other SMPng tasks that cannot finish in time for 5.1 should also not reduce the stability of the release. The schedule for this would be: - May 5, 2003 - 5.1-BETA, general code freeze - May 19, 2003 - 5.1-RC1, RELENG_5_1 branched - May 27, 2003 - 5.1-RC2 - Jun 2, 2003 - 5.1-RELEASE - Jun 30, 2003 - KSE and SMPng feature freeze - Sept 1, 2003 - 5.2-BETA, general code freeze - Sept 15, 2003 - 5.2-RC1, RELENG_5 and RELENG_5_2 branched - Sept 22, 2003 - 5.2-RC2 - Sept 29, 2003 - 5.2-RELEASE 5. Post RELENG_5 direction As with all -STABLE development streams, the focus should be bug fixes and incremental improvements. Just like normal, everything should be vetted through the HEAD branch first and committed to RELENG_5 with caution. As before, new device drivers, incremental features, etc, will be welcome in the branch once they have been proven in HEAD. Further SMPng lockdowns will be divided into two categories, driver and subsystem. The only subsystem that will be sufficiently locked down for RELENG_5 will be GEOM, so incrementally locking down device drivers under it is a worthy goal for the branch. Full subsystem lockdowns will have to be fully tested and proven in HEAD before consideration will be given to merging them into RELENG_5. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 17:19: 1 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65F2737B401 for ; Thu, 13 Feb 2003 17:19:00 -0800 (PST) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB66643FB1 for ; Thu, 13 Feb 2003 17:18:59 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by rwcrmhc51.attbi.com (rwcrmhc51) with ESMTP id <20030214011859051007ck6ee>; Fri, 14 Feb 2003 01:18:59 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id RAA79954; Thu, 13 Feb 2003 17:18:57 -0800 (PST) Date: Thu, 13 Feb 2003 17:18:56 -0800 (PST) From: Julian Elischer To: Barkley Vowk Cc: freebsd-current@freebsd.org Subject: Re: FEC with ng_fec.ko on 5.0-RELEASE In-Reply-To: <20030213165436.L26074-100000@3jane.math.ualberta.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003, Barkley Vowk wrote: > So I've upgraded my cluster to 5.0-RELEASE, everything is running fine, so > I move the fileserver to 5.0-RELEASE, everything is fine. I attempt to > configure the fileserver to use the 4 network cards in a fec bundle, this > blows up unhappily. > > I can create the interface, I can add the other interfaces, and I can > ifconfig it as before. But no traffic goes through the interface (ping and > the like don't work but it doesn't panic), and if I try to use tcpdump the > box panics. I've had this working for a few years in 4.X so I'm sure my > configuration is correct. Any ideas? I know this is broken. It's on my list of things to fix unfortunatly the list is extending faster than this item is moving up it. If you have an environment where it han be tested than that would be good. One thing I noticed is that you must NOT have the ng_ether node type loaded or configured in. I guess the first thing to fix is the tcpdump problem.. can you get a coredump? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 17:39:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72DFD37B401 for ; Thu, 13 Feb 2003 17:39:20 -0800 (PST) Received: from ms-smtp-03.nyroc.rr.com (ms-smtp-03.nyroc.rr.com [24.92.226.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E4C343FB1 for ; Thu, 13 Feb 2003 17:39:19 -0800 (PST) (envelope-from klmac@twcny.rr.com) Received: from twcny.rr.com (syr-24-95-174-30.twcny.rr.com [24.95.174.30]) by ms-smtp-03.nyroc.rr.com (8.12.5/8.12.2) with ESMTP id h1E1dHbF002768; Thu, 13 Feb 2003 20:39:18 -0500 (EST) Date: Thu, 13 Feb 2003 20:39:37 -0500 Subject: Re: FreeBSD 5 not working with Linux Virtual Server Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: current@FreeBSD.ORG To: Terry Lambert From: Ken McKittrick In-Reply-To: <3E4C2BD4.258DA525@mindspring.com> Message-Id: <2D64B0A4-3FBD-11D7-A349-000393B2B0EE@twcny.rr.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Terry I meant to say LVS/DR. Not LVS/Nat or LVS/Tun. The RealServers/Back-End machines reply directly back to the client. As I said, works fine with 4.7. I'm sure it's something 5.0-current specific. I'm currently processing 500K emails per day with this setup. :) Hmmm, I think I need to run tcpdump on a the client too. I'm only looking at the traffic between the LVS machine and the Real Server. Thanks Ken On Thursday, February 13, 2003, at 06:35 PM, Terry Lambert wrote: > Ken McKittrick wrote: >> I've got a FreeBSD5.0-R machine that doesn't work with Linux Virtual >> Server. This is for SMTP and WWW services. >> >> I'm using LVS-Direct Routing. The LVS machine has the 66.218.0.54 Real >> IP and 66.218.0.58 and 66.218.0.59 as Virtual IP's. The FreeBSD >> machine >> has 66.218.0.28 and a Real IP on fxp0 and 66.218.0.58/59 on lo0 with >> -arp. >> >> Running tcpdump host 66.218.0.54 I can see the requests come in, but >> nothing is going back out. When you telnet into port 25 the connection >> times out. >> >> I've running Linux LVS with FreeBSD4-STABLE SMTP machines in >> production >> so I'm confident that it's a FreeBSD 5.0 issue. > > > I'm guessing this is some LVS specific terminology that someone > made up because they did not read the literature before writing > their code? > > Is this the DSR or "Direct Server Return" configuration? > > If so, the answer is that you need to specify the LVS as the > default return route, and not answer locally, even though it > appears to be a local net. This can be handled using explicit > routes for the alias IP addresses. > > You *did* put the alias IP addresses on the loopback interface, > and turn of ARP'ing for them, right? > > If you need more help, probably the correct place to ask is not > the -current list, but the -net list (after you replace the > terminology "LVS-Direct" with it's real name; I'm only guessing > you meant DSR here). > > -- Terry > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 17:59:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAA0737B401; Thu, 13 Feb 2003 17:59:52 -0800 (PST) Received: from tomts22-srv.bellnexxia.net (tomts22.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA73243FBD; Thu, 13 Feb 2003 17:59:51 -0800 (PST) (envelope-from mike@sparc64.style9.org) Received: from sparc64.style9.org ([65.93.76.77]) by tomts22-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030214015951.IPNE7091.tomts22-srv.bellnexxia.net@sparc64.style9.org>; Thu, 13 Feb 2003 20:59:51 -0500 Received: (from mike@localhost) by sparc64.style9.org (8.12.6/8.12.6/Submit) id h1E20dkN070356; Thu, 13 Feb 2003 21:00:39 -0500 (EST) Date: Thu, 13 Feb 2003 21:00:39 -0500 (EST) From: Mike Barcroft Message-Id: <200302140200.h1E20dkN070356@sparc64.style9.org> To: current@FreeBSD.org, sparc64@FreeBSD.org Subject: sparc64 tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tinderbox FAQ: http://people.FreeBSD.org/~mike/tinderbox.html -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /tinderbox/sparc64/obj/tinderbox/sparc64/src/sparc64/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- >>> stage 4: building everything.. -------------------------------------------------------------- >>> Kernel build for GENERIC started on Thu Feb 13 20:28:04 EST 2003 -------------------------------------------------------------- ===> agp /tinderbox/sparc64/src/sys/pci/agp_i810.c: In function `agp_i810_match': /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: (Each undeclared identifier is reported only once /tinderbox/sparc64/src/sys/pci/agp_i810.c:112: for each function it appears in.) /tinderbox/sparc64/src/sys/pci/agp_i810.c:113: `AGP_I855_GME' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:116: `AGP_I855_GM' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:119: `AGP_I852_GME' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:122: `AGP_I852_GM' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c: In function `agp_i810_attach': /tinderbox/sparc64/src/sys/pci/agp_i810.c:342: `AGP_I855_GCC1' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:343: `AGP_I855_GCC1_GMS' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:344: `AGP_I855_GCC1_GMS_STOLEN_1M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:347: `AGP_I855_GCC1_GMS_STOLEN_4M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:350: `AGP_I855_GCC1_GMS_STOLEN_8M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) /tinderbox/sparc64/src/sys/pci/agp_i810.c:356: `AGP_I855_GCC1_GMS_STOLEN_32M' undeclared (first use in this function) *** Error code 1 Stop in /tinderbox/sparc64/src/sys/modules/agp. *** Error code 1 Stop in /tinderbox/sparc64/src/sys/modules. *** Error code 1 Stop in /tinderbox/sparc64/obj/tinderbox/sparc64/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 18: 9:25 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A021E37B405 for ; Thu, 13 Feb 2003 18:09:24 -0800 (PST) Received: from picard.dyn.newmillennium.net.au (ppp46.act.padsl.internode.on.net [150.101.200.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5B2F43FA3 for ; Thu, 13 Feb 2003 18:09:22 -0800 (PST) (envelope-from deece@newmillennium.net.au) Received: from newmillennium.net.au (www@localhost [127.0.0.1]) by picard.dyn.newmillennium.net.au (8.12.6/8.12.6) with SMTP id h1ED8vp3016268 for ; Fri, 14 Feb 2003 13:08:58 GMT (envelope-from deece@newmillennium.net.au) Received: from 203.13.13.69 (proxying for unknown, 203.13.13.59) (SquirrelMail authenticated user deece) by www.nmn.cafn with HTTP; Fri, 14 Feb 2003 13:08:58 -0000 (GMT) Message-ID: <62294.203.13.13.69.1045228138.squirrel@www.nmn.cafn> Date: Fri, 14 Feb 2003 13:08:58 -0000 (GMT) Subject: TI ACX100 (AKA Dlink DWL520+) driver From: "Alastair D'Silva" To: X-Priority: 3 Importance: Normal X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Theres a binary only Linux driver for these things linked to from: http://www.seattlewireless.net/index.cgi/DlinkDwl650Plus I'm currently testing the driver found at http://vilos.com/650_plus/ under Debian, but I would rather not contaminate the Freenet with Linux if I can help it ;) Would someone be able to write a shim for the FreeBSD kernel (much like the one available for WinModems)? -- Alastair D'Silva mob: 0413 485 733 Networking Consultant New Millennium Networking To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 18:25:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CBFE37B401 for ; Thu, 13 Feb 2003 18:25:11 -0800 (PST) Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7619B43FBD for ; Thu, 13 Feb 2003 18:25:10 -0800 (PST) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-a125.otenet.gr [212.205.215.125]) by mailsrv.otenet.gr (8.12.6/8.12.6) with ESMTP id h1E2P74A016639; Fri, 14 Feb 2003 04:25:08 +0200 (EET) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.7/8.12.7) with ESMTP id h1E2P7qm004398; Fri, 14 Feb 2003 04:25:07 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.12.7/8.12.7/Submit) id h1E2P0XX004394; Fri, 14 Feb 2003 04:25:00 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 14 Feb 2003 04:25:00 +0200 From: Giorgos Keramidas To: Matt Cc: freebsd-current@FreeBSD.ORG Subject: Re: buildkernel error on latest cvs src's Message-ID: <20030214022500.GB4200@gothmog.gr> References: <20030213182950.M17985@xtaz.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030213182950.M17985@xtaz.co.uk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2003-02-13 18:31, Matt wrote: > Trying a buildworld/buildkernel of today's latest cvs code and the > buildworld has compiled fine but the kernel is giving the error below. [...] > cc -O -pipe -mcpu=pentiumpro -D_KERNEL -Wall -Wredundant-decls -Wnested- > externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ - > I@/dev -I@/../include -fno-common -mno-align-long-strings -mpreferred-stack- > boundary=2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict- > prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual - > fformat-extensions -ansi -c /usr/src/sys/pci/agp_i810.c > /usr/src/sys/pci/agp_i810.c: In function `agp_i810_match': > /usr/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) Revert sys/pci/agp_i810.c to revision 1.16 and it will all build fine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 18:57:20 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93DD037B401 for ; Thu, 13 Feb 2003 18:57:19 -0800 (PST) Received: from haystack.lclark.edu (lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id D286243FBF for ; Thu, 13 Feb 2003 18:57:18 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021318561024356 ; Thu, 13 Feb 2003 18:56:10 -0800 Subject: Re: buildkernel error on latest cvs src's From: Eric Anholt To: Giorgos Keramidas Cc: Matt , freebsd-current@FreeBSD.ORG In-Reply-To: <20030214022500.GB4200@gothmog.gr> References: <20030213182950.M17985@xtaz.co.uk> <20030214022500.GB4200@gothmog.gr> Content-Type: text/plain Organization: Message-Id: <1045191505.11981.42.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 18:58:25 -0800 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 18:25, Giorgos Keramidas wrote: > On 2003-02-13 18:31, Matt wrote: > > Trying a buildworld/buildkernel of today's latest cvs code and the > > buildworld has compiled fine but the kernel is giving the error below. > [...] > > cc -O -pipe -mcpu=pentiumpro -D_KERNEL -Wall -Wredundant-decls -Wnested- > > externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > > Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ - > > I@/dev -I@/../include -fno-common -mno-align-long-strings -mpreferred-stack- > > boundary=2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict- > > prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual - > > fformat-extensions -ansi -c /usr/src/sys/pci/agp_i810.c > > /usr/src/sys/pci/agp_i810.c: In function `agp_i810_match': > > /usr/src/sys/pci/agp_i810.c:112: `AGP_I85X_CAPID' undeclared (first use in this function) > > Revert sys/pci/agp_i810.c to revision 1.16 and it will all build fine. Or cvsup as of 7 hours ago. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 19:10:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0945637B401 for ; Thu, 13 Feb 2003 19:10:42 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35B1D43F3F for ; Thu, 13 Feb 2003 19:10:41 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id h1E3Adbs041401 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Thu, 13 Feb 2003 22:10:39 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id h1E3Adq0041398; Thu, 13 Feb 2003 22:10:39 -0500 (EST) (envelope-from wollman) Date: Thu, 13 Feb 2003 22:10:39 -0500 (EST) From: Garrett Wollman Message-Id: <200302140310.h1E3Adq0041398@khavrinen.lcs.mit.edu> To: Bruce Evans Cc: current@FreeBSD.ORG Subject: Re: _fpathconf() and __semctl() prototypes In-Reply-To: <20030209224319.C25436-100000@gamplex.bde.org> References: <20030208230626.GA31434@rot13.obsecurity.org> <20030209224319.C25436-100000@gamplex.bde.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > _fpathconf() is quite different from __semctl. It is not a syscall. > It is a weak alias for fpathconf() which is prototyped normally in > . The prototype for fpathconf() should be turned into > a prototype for _fpathconf() by "namespace.h", but statvfs.c is missing > theinclude of so this doesn't happen. It's there in the version on my machine (rev. 1.2 by tjr dated 2002/09/06). -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 19:30:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0549837B401; Thu, 13 Feb 2003 19:30:18 -0800 (PST) Received: from excalibur.skynet.be (excalibur.skynet.be [195.238.3.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25CE543F93; Thu, 13 Feb 2003 19:30:17 -0800 (PST) (envelope-from brad.knowles@skynet.be) Received: from [10.0.1.2] (ip-26.shub-internet.org [194.78.144.26] (may be forged)) by excalibur.skynet.be (8.12.7/8.12.7/Skynet-OUT-2.21) with ESMTP id h1E3TjtZ012812; Fri, 14 Feb 2003 04:30:06 +0100 (MET) (envelope-from ) Mime-Version: 1.0 X-Sender: bs663385@pop.skynet.be Message-Id: In-Reply-To: <200302140036.h1E0aK3q071051@freefall.freebsd.org> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> Date: Fri, 14 Feb 2003 04:26:55 +0100 To: Scott Long From: Brad Knowles Subject: Re: 5-STABLE Roadmap Cc: current@freebsd.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 4:36 PM -0800 2003/02/13, Scott Long wrote: > - the classic 'worldstone' > - webstone - /usr/ports/www/webstone > - Fstress - http://www.cs.duke.edu/ari/fstress > - ApacheBench - /usr/ports/www/p5-ApacheBench > - netperf - /usr/ports/benchmarks/netperf Are there any other benchmarks that are being considered? What about LMBench? RawIO? Bonnie++? Other disk benchmarks? Do we care about application-layer benchmarks for other protocols, such as SMTP, POP3, or IMAP? Just curious. Thanks! -- Brad Knowles, "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. GCS/IT d+(-) s:+(++)>: a C++(+++)$ UMBSHI++++$ P+>++ L+ !E-(---) W+++(--) N+ !w--- O- M++ V PS++(+++) PE- Y+(++) PGP>+++ t+(+++) 5++(+++) X++(+++) R+(+++) tv+(+++) b+(++++) DI+(++++) D+(++) G+(++++) e++>++++ h--- r---(+++)* z(+++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 19:57:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2CBE37B401 for ; Thu, 13 Feb 2003 19:57:52 -0800 (PST) Received: from web13408.mail.yahoo.com (web13408.mail.yahoo.com [216.136.175.66]) by mx1.FreeBSD.org (Postfix) with SMTP id 7886243FBD for ; Thu, 13 Feb 2003 19:57:52 -0800 (PST) (envelope-from giffunip@yahoo.com) Message-ID: <20030214035752.52213.qmail@web13408.mail.yahoo.com> Received: from [200.24.79.140] by web13408.mail.yahoo.com via HTTP; Fri, 14 Feb 2003 04:57:52 CET Date: Fri, 14 Feb 2003 04:57:52 +0100 (CET) From: "=?iso-8859-1?q?Pedro=20F.=20Giffuni?=" Subject: Re: 5-STABLE Roadmap To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG About benchmarks... FWIW, the reiserfs people were excited about SCO's release of AIM: http://caldera.com/developers/community/contrib/aim.html but the announcement went rather unnoticed in freebsd-fs. cheers, Pedro. ______________________________________________________________________ Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 20: 1:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5009B37B401 for ; Thu, 13 Feb 2003 20:01:20 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A3EF43FBF for ; Thu, 13 Feb 2003 20:01:19 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id PAA05162; Fri, 14 Feb 2003 15:01:00 +1100 Date: Fri, 14 Feb 2003 15:01:28 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Garrett Wollman Cc: current@FreeBSD.ORG Subject: Re: _fpathconf() and __semctl() prototypes In-Reply-To: <200302140310.h1E3Adq0041398@khavrinen.lcs.mit.edu> Message-ID: <20030214145937.D26991-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003, Garrett Wollman wrote: > < said: > > > _fpathconf() is quite different from __semctl. It is not a syscall. > > It is a weak alias for fpathconf() which is prototyped normally in > > . The prototype for fpathconf() should be turned into > > a prototype for _fpathconf() by "namespace.h", but statvfs.c is missing > > theinclude of so this doesn't happen. > > It's there in the version on my machine (rev. 1.2 by tjr dated > 2002/09/06). Oops. It's there in my version too. I jumped to the conclusion that it isn't there after grepping for _fpathconf in namespace.h. The problem is that _fpathconf is in the `#if 0' section. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 20:10:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17CDF37B401 for ; Thu, 13 Feb 2003 20:10:41 -0800 (PST) Received: from confusion.havoc.vtic.net (confusion.havoc.vtic.net [66.93.188.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FE3B43FCB for ; Thu, 13 Feb 2003 20:10:40 -0800 (PST) (envelope-from igo@vtic.net) Received: from confusion (confusion [66.93.188.4]) by confusion.havoc.vtic.net (8.12.6/8.12.6) with ESMTP id h1E4AblL023328 for ; Thu, 13 Feb 2003 20:10:37 -0800 (PST) (envelope-from igo@vtic.net) Date: Thu, 13 Feb 2003 20:10:37 -0800 (PST) From: Lester Igo X-X-Sender: To: Subject: VIA sound (no volume) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=-1.9 required=5.0 tests=SPAM_PHRASE_01_02,USER_AGENT_PINE version=2.41 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am having problems with getting any volume out of my VIA sound card. I just purchased a new system with motherboard: http://www.ecsusa.com/products/p4vmm2.html And installed FreeBSD 5.0 on it... If I play any music files on it, the volume is very low. (I can pick the speakers up hold them to my ears, I hear the music but it is very faint). The speakers are Labtec Spin-55 (el-cheapo), with the amplifier volume cranked. I haven't tried any other OSes on the system yet... I have tried the speakers on my SunRay and they work fine there, so I don't believe that they are a problem... bash-2.05b$ mixer Mixer vol is currently set to 99:99 Mixer pcm is currently set to 100:100 Mixer speaker is currently set to 100:100 Mixer line is currently set to 0:0 Mixer mic is currently set to 0:0 Mixer cd is currently set to 0:0 Mixer rec is currently set to 0:0 Mixer line1 is currently set to 0:0 Mixer phin is currently set to 0:0 bash-2.05b$ kldstat Id Refs Address Size Name 1 11 0xc0100000 3361fc kernel 2 1 0xc0437000 4a6ac acpi.ko 3 1 0xc257c000 4000 logo_saver.ko 4 1 0xc3898000 17000 linux.ko 9 1 0xc3ac5000 4000 snd_via8233.ko 10 1 0xc3acd000 18000 snd_pcm.ko Feb 13 19:13:15 diaspora kernel: pcm0: port 0xe000-0xe0ff irq 12 at device 17.5 on pci0 bash-2.05b$ cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xe000 irq 12 (1p/1r/0v channels duplex default) Any help you can provide would be greatly appreciated... Thanks! -- Lester Igo igo@vtic.net http://www.vtic.net/~igo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 20:25:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46B9C37B401 for ; Thu, 13 Feb 2003 20:25:49 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9B343FB1 for ; Thu, 13 Feb 2003 20:25:48 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1E4PlnN011728 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 13 Feb 2003 20:25:48 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <25bd01c2d3e1$26545ac0$52557f42@errno.com> From: "Sam Leffler" To: "Pedro F. Giffuni" , References: <20030214035752.52213.qmail@web13408.mail.yahoo.com> Subject: Re: 5-STABLE Roadmap Date: Thu, 13 Feb 2003 20:25:47 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > About benchmarks... > > FWIW, the reiserfs people were excited about SCO's > release of AIM: > > http://caldera.com/developers/community/contrib/aim.html > > but the announcement went rather unnoticed in > freebsd-fs. > Thanks. I've worked with AIM. Wasn't aware it had been released. Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 20:28:46 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13BA437B401; Thu, 13 Feb 2003 20:28:45 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8200D43F93; Thu, 13 Feb 2003 20:28:44 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1E4ShnN011733 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 13 Feb 2003 20:28:43 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <25c301c2d3e1$8f2e3e30$52557f42@errno.com> From: "Sam Leffler" To: "Scott Long" , "Brad Knowles" Cc: References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> Subject: Re: 5-STABLE Roadmap Date: Thu, 13 Feb 2003 20:28:43 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At 4:36 PM -0800 2003/02/13, Scott Long wrote: > > > - the classic 'worldstone' > > - webstone - /usr/ports/www/webstone > > - Fstress - http://www.cs.duke.edu/ari/fstress > > - ApacheBench - /usr/ports/www/p5-ApacheBench > > - netperf - /usr/ports/benchmarks/netperf > > Are there any other benchmarks that are being considered? What > about LMBench? RawIO? Bonnie++? Other disk benchmarks? Do we care > about application-layer benchmarks for other protocols, such as SMTP, > POP3, or IMAP? > > Just curious. Thanks! This can quickly turn into a bikeshed, but suggest ones. We're looking for good benchmarks. lmbench, rawio, and bonniee are rather "micro" in nature (not bad, just limited in their usefulness). Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 21:27:51 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F8E337B401 for ; Thu, 13 Feb 2003 21:27:50 -0800 (PST) Received: from pennasoft.com (pennasoft.com [192.220.103.128]) by mx1.FreeBSD.org (Postfix) with SMTP id 9653443FA3 for ; Thu, 13 Feb 2003 21:27:49 -0800 (PST) (envelope-from chris@pennasoft.com) Received: (qmail 44154 invoked by uid 26496); 14 Feb 2003 05:27:49 -0000 Received: from unknown (HELO browning.pennasoft.com) ([192.220.103.128]) (envelope-sender ) by 192.220.103.128 (qmail-ldap-1.03) with SMTP for ; 14 Feb 2003 05:27:49 -0000 From: Chris BeHanna Organization: PennaSoft Corporation To: current@freebsd.org Subject: Re: 5-STABLE Roadmap Date: Fri, 14 Feb 2003 00:28:21 -0500 User-Agent: KMail/1.5 References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> In-Reply-To: <25c301c2d3e1$8f2e3e30$52557f42@errno.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302140028.21669.chris@pennasoft.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday 13 February 2003 11:28 pm, Sam Leffler wrote: > > At 4:36 PM -0800 2003/02/13, Scott Long wrote: > > > - the classic 'worldstone' > > > - webstone - /usr/ports/www/webstone > > > - Fstress - http://www.cs.duke.edu/ari/fstress > > > - ApacheBench - /usr/ports/www/p5-ApacheBench > > > - netperf - /usr/ports/benchmarks/netperf > > > > Are there any other benchmarks that are being considered? What > > about LMBench? RawIO? Bonnie++? Other disk benchmarks? Do we care > > about application-layer benchmarks for other protocols, such as SMTP, > > POP3, or IMAP? > > > > Just curious. Thanks! > > This can quickly turn into a bikeshed, but suggest ones. We're looking for > good benchmarks. lmbench, rawio, and bonniee are rather "micro" in nature > (not bad, just limited in their usefulness). SpecFS (NFS ops/sec benchmark) -- Chris BeHanna http://www.pennasoft.com Principal Consultant PennaSoft Corporation chris@pennasoft.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Feb 13 21:47:34 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75DD737B401 for ; Thu, 13 Feb 2003 21:47:33 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id D86BE43FBD for ; Thu, 13 Feb 2003 21:47:32 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1E5lUnN012035 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 13 Feb 2003 21:47:32 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <265d01c2d3ec$912bbae0$52557f42@errno.com> From: "Sam Leffler" To: "Chris BeHanna" , References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> Subject: Re: 5-STABLE Roadmap Date: Thu, 13 Feb 2003 21:47:29 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thursday 13 February 2003 11:28 pm, Sam Leffler wrote: > > > At 4:36 PM -0800 2003/02/13, Scott Long wrote: > > > > - the classic 'worldstone' > > > > - webstone - /usr/ports/www/webstone > > > > - Fstress - http://www.cs.duke.edu/ari/fstress > > > > - ApacheBench - /usr/ports/www/p5-ApacheBench > > > > - netperf - /usr/ports/benchmarks/netperf > > > > > > Are there any other benchmarks that are being considered? What > > > about LMBench? RawIO? Bonnie++? Other disk benchmarks? Do we care > > > about application-layer benchmarks for other protocols, such as SMTP, > > > POP3, or IMAP? > > > > > > Just curious. Thanks! > > > > This can quickly turn into a bikeshed, but suggest ones. We're looking for > > good benchmarks. lmbench, rawio, and bonniee are rather "micro" in nature > > (not bad, just limited in their usefulness). > > SpecFS (NFS ops/sec benchmark) > List price on SPEC SFS97 R1 is $900. And my recollection is that it was involved to setup and run. Benchmarks must be unencumbered; be easy to setup+run by one person; and not require lots of equipment. For the most part we are looking for benchmarks that will help tune system performance; not generate press releases. Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 2:34: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CB7837B401 for ; Fri, 14 Feb 2003 02:34:01 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 671FF43F93 for ; Fri, 14 Feb 2003 02:34:00 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.7/8.12.1) with ESMTP id h1EAXxeG076559 for ; Fri, 14 Feb 2003 05:33:59 -0500 (EST) Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.7/8.12.1/Submit) id h1EAXx2n076554 for current@FreeBSD.ORG; Fri, 14 Feb 2003 05:33:59 -0500 (EST) (envelope-from hiten) Date: Fri, 14 Feb 2003 05:33:59 -0500 From: Hiten Pandya To: current@FreeBSD.ORG Subject: KASSERT's for vfs_{get,copy}opt() Message-ID: <20030214103359.GA73639@unixdaemons.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello everyone. This not something major, but I recently experienced panics in some of my old QNX4 filesystem porting code, and an old 5.0 kernel with UNIONFS problems. The kernel will panic if vfs_get/copyopt() was passed 'opts' as NULL. It would be good to add KASSERT's to these calls. I have passed this patch around on IRC, and have not seen any objections. Can the right maintainer of sys/kern/vfs_mount.c commit/review the patch attached with this mail. Also available from: http://www.unixdaemons.com/~hiten/work/diffs/vfs_mount.c.patch Cheers. -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="vfs_mount.c.patch" Index: sys/kern/vfs_mount.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_mount.c,v retrieving revision 1.97 diff -u -r1.97 vfs_mount.c --- sys/kern/vfs_mount.c 21 Jan 2003 08:55:55 -0000 1.97 +++ sys/kern/vfs_mount.c 14 Feb 2003 09:40:18 -0000 @@ -1714,6 +1714,9 @@ { struct vfsopt *opt; + KASSERT(opts != NULL, + ("vfs_getopt: caller passed 'opts' as NULL\n")); + TAILQ_FOREACH(opt, opts, link) { if (strcmp(name, opt->name) == 0) { if (len != NULL) @@ -1742,6 +1745,9 @@ int len; { struct vfsopt *opt; + + KASSERT(opts != NULL, + ("vfs_copyopt: caller passed 'opts' as NULL\n")); TAILQ_FOREACH(opt, opts, link) { if (strcmp(name, opt->name) == 0) { --3MwIy2ne0vdjdPXF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 2:38:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68BC837B401; Fri, 14 Feb 2003 02:38:09 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E17E843FBD; Fri, 14 Feb 2003 02:38:08 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id AE437AE147; Fri, 14 Feb 2003 02:38:08 -0800 (PST) Date: Fri, 14 Feb 2003 02:38:08 -0800 From: Alfred Perlstein To: current@freebsd.org Cc: smp@freebsd.org Subject: fix: lock order reversal proc/filedesc. Message-ID: <20030214103808.GE93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks to Paul Saab's work on fixing twe(4) I was able to get a crash dump from my box and figure out why my filedesc locking patch was panic'ing. kevent_close was dereferencing the proc's filedesc pointer during close, that doesn't work so well when you need to do what I had to do. :) The gist of the fix is that the mutex 'fdesc_mutex' is used as a global barrier against losing hold of the proc->p_fd reference. So, basically, if you are not the process that owns a filedesc you must grab the mutex over _all_ usage of it, and you probably want the allproc_lock as well to make sure you don't lose your process as well. :) (see sysctl_kern_file() for an example.) I've also fixed kqueue_close to use the stashed filedesc pointer inside the f_data pointer rather than trying to get at it via p->p_fd. please review/test: Index: kern/kern_descrip.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_descrip.c,v retrieving revision 1.185 diff -u -r1.185 kern_descrip.c --- kern/kern_descrip.c 11 Feb 2003 07:20:52 -0000 1.185 +++ kern/kern_descrip.c 14 Feb 2003 10:11:43 -0000 @@ -1366,6 +1366,10 @@ return (newfdp); } +/* A mutex to protect the association between a proc and filedesc. */ +struct mtx fdesc_mtx; +MTX_SYSINIT(fdesc, &fdesc_mtx, "fdesc", MTX_DEF); + /* * Release a filedesc structure. */ @@ -1382,6 +1386,10 @@ if (fdp == NULL) return; + mtx_lock(&fdesc_mtx); + td->td_proc->p_fd = NULL; + mtx_unlock(&fdesc_mtx); + FILEDESC_LOCK(fdp); if (--fdp->fd_refcnt > 0) { FILEDESC_UNLOCK(fdp); @@ -1398,7 +1406,6 @@ if (*fpp) (void) closef(*fpp, td); } - td->td_proc->p_fd = NULL; if (fdp->fd_nfiles > NDFILE) FREE(fdp->fd_ofiles, M_FILEDESC); if (fdp->fd_cdir) @@ -2105,7 +2112,9 @@ xf.xf_pid = p->p_pid; xf.xf_uid = p->p_ucred->cr_uid; PROC_UNLOCK(p); + mtx_lock(&fdesc_mtx); if ((fdp = p->p_fd) == NULL) { + mtx_unlock(&fdesc_mtx); continue; } FILEDESC_LOCK(fdp); @@ -2125,6 +2134,7 @@ break; } FILEDESC_UNLOCK(fdp); + mtx_unlock(&fdesc_mtx); if (error) break; } Index: kern/kern_event.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_event.c,v retrieving revision 1.54 diff -u -r1.54 kern_event.c --- kern/kern_event.c 21 Jan 2003 08:55:53 -0000 1.54 +++ kern/kern_event.c 14 Feb 2003 09:59:11 -0000 @@ -839,7 +840,7 @@ kqueue_close(struct file *fp, struct thread *td) { struct kqueue *kq = fp->f_data; - struct filedesc *fdp = td->td_proc->p_fd; + struct filedesc *fdp = kq->kq_fdp; struct knote **knp, *kn, *kn0; int i; Index: kern/kern_exit.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_exit.c,v retrieving revision 1.193 diff -u -r1.193 kern_exit.c --- kern/kern_exit.c 8 Feb 2003 02:58:16 -0000 1.193 +++ kern/kern_exit.c 13 Feb 2003 09:15:30 -0000 @@ -263,7 +263,7 @@ * Close open files and release open-file table. * This may block! */ - fdfree(td); /* XXXKSE *//* may not be the one in proc */ + fdfree(td); /* * Remove ourself from our leader's peer list and wake our leader. Index: kern/vfs_mount.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_mount.c,v retrieving revision 1.97 diff -u -r1.97 vfs_mount.c --- kern/vfs_mount.c 21 Jan 2003 08:55:55 -0000 1.97 +++ kern/vfs_mount.c 14 Feb 2003 10:09:16 -0000 @@ -1141,10 +1141,10 @@ return; sx_slock(&allproc_lock); LIST_FOREACH(p, &allproc, p_list) { - PROC_LOCK(p); + mtx_lock(&fdesc_mtx); fdp = p->p_fd; if (fdp == NULL) { - PROC_UNLOCK(p); + mtx_unlock(&fdesc_mtx); continue; } nrele = 0; @@ -1160,7 +1160,7 @@ nrele++; } FILEDESC_UNLOCK(fdp); - PROC_UNLOCK(p); + mtx_unlock(&fdesc_mtx); while (nrele--) vrele(olddp); } Index: sys/filedesc.h =================================================================== RCS file: /home/ncvs/src/sys/sys/filedesc.h,v retrieving revision 1.49 diff -u -r1.49 filedesc.h --- sys/filedesc.h 1 Jan 2003 01:56:19 -0000 1.49 +++ sys/filedesc.h 14 Feb 2003 10:12:59 -0000 @@ -139,6 +139,8 @@ return ((u_int)fd >= (u_int)fdp->fd_nfiles ? NULL : fdp->fd_ofiles[fd]); } +extern struct mtx fdesc_mtx; + #endif /* _KERNEL */ #endif /* !_SYS_FILEDESC_H_ */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 2:52: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFF8E37B401; Fri, 14 Feb 2003 02:52:02 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE65143FA3; Fri, 14 Feb 2003 02:52:01 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 7934E536E; Fri, 14 Feb 2003 11:51:59 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: current@freebsd.org, smp@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. From: Dag-Erling Smorgrav Date: Fri, 14 Feb 2003 11:51:58 +0100 In-Reply-To: <20030214103808.GE93252@elvis.mu.org> (Alfred Perlstein's message of "Fri, 14 Feb 2003 02:38:08 -0800") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030214103808.GE93252@elvis.mu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > Thanks to Paul Saab's work on fixing twe(4) I was able to get a > crash dump from my box How? I can't get a crash dump in -CURRENT, even on a plain jane ata disk, and it's been months since I last managed to get one. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 3: 4: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5E6C37B401 for ; Fri, 14 Feb 2003 03:04:04 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D4F43FCB for ; Fri, 14 Feb 2003 03:04:04 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B8CB0AE22C; Fri, 14 Feb 2003 03:04:03 -0800 (PST) Date: Fri, 14 Feb 2003 03:04:03 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: current@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. Message-ID: <20030214110403.GF93252@elvis.mu.org> References: <20030214103808.GE93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Dag-Erling Smorgrav [030214 02:52] wrote: > Alfred Perlstein writes: > > Thanks to Paul Saab's work on fixing twe(4) I was able to get a > > crash dump from my box > > How? I can't get a crash dump in -CURRENT, even on a plain jane ata > disk, and it's been months since I last managed to get one. I dunno, it just works for me. Get a twe? :) What exactly is broken about dumps for you on ata? It's upsetting to hear this, don't people realize that this is a VERY important feature for allowing people to get things done in FreeBSD? I know having twe not being able to dump put a stall on me getting work done for weeks. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 3:23:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FA5337B401 for ; Fri, 14 Feb 2003 03:23:52 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DEC743FAF for ; Fri, 14 Feb 2003 03:23:51 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 92CED536E; Fri, 14 Feb 2003 12:23:49 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: current@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. From: Dag-Erling Smorgrav Date: Fri, 14 Feb 2003 12:23:48 +0100 In-Reply-To: <20030214110403.GF93252@elvis.mu.org> (Alfred Perlstein's message of "Fri, 14 Feb 2003 03:04:03 -0800") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > What exactly is broken about dumps for you on ata? Well, after you told me that "call dumpsys" is no longer kosher (when did that happen, and where was it documented?), I tried 'call doadump': # Debugger("manual escape to debugger") Stopped at Debugger+0x50: xchgl %ebx,in_Debugger.0 db> call doadump Dumping 511 MB ata1: resetting devices .. Context switches not allowed in the debugger. db> call cpu_reset Makes me want to get my Norwegian Sword [tm] and make a short trip to Denmark. It is becoming increasingly clear to me that the majority of FreeBSD developers don't really care if their code works, as long as they get the credit (and / or paycheck) for committing it. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 3:26:23 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48E837B401 for ; Fri, 14 Feb 2003 03:26:21 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7EC743F85 for ; Fri, 14 Feb 2003 03:26:20 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 83FCF679DC; Fri, 14 Feb 2003 03:26:19 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 4F4F1F70; Fri, 14 Feb 2003 03:26:19 -0800 (PST) Date: Fri, 14 Feb 2003 03:26:19 -0800 From: Kris Kennaway To: Dag-Erling Smorgrav Cc: Alfred Perlstein , current@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. Message-ID: <20030214112618.GA646@rot13.obsecurity.org> References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 12:23:48PM +0100, Dag-Erling Smorgrav wrote: > > What exactly is broken about dumps for you on ata? >=20 > Well, after you told me that "call dumpsys" is no longer kosher (when > did that happen, and where was it documented?), I tried 'call doadump': >=20 > # Debugger("manual escape to debugger") > Stopped at Debugger+0x50: xchgl %ebx,in_Debugger.0 > db> call doadump > Dumping 511 MB > ata1: resetting devices .. > Context switches not allowed in the debugger. > db> call cpu_reset >=20 > Makes me want to get my Norwegian Sword [tm] and make a short trip to > Denmark. >=20 > It is becoming increasingly clear to me that the majority of FreeBSD > developers don't really care if their code works, as long as they get > the credit (and / or paycheck) for committing it. I have exactly the same problem on the package build cluster (i386 and alpha). Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TNJZWry0BWjoQKURAo04AKCTz2LR4L8TIe1HGOrd6YMW/T7ongCgh4Vh LttF7j7adBOxBHdUUZMGMbg= =arhK -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 3:28:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97EA737B405; Fri, 14 Feb 2003 03:28:46 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3D5043FAF; Fri, 14 Feb 2003 03:28:45 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id BDCA9AE25A; Fri, 14 Feb 2003 03:28:45 -0800 (PST) Date: Fri, 14 Feb 2003 03:28:45 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: current@freebsd.org, sos@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. Message-ID: <20030214112845.GG93252@elvis.mu.org> References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Dag-Erling Smorgrav [030214 03:23] wrote: > Alfred Perlstein writes: > > What exactly is broken about dumps for you on ata? > > Well, after you told me that "call dumpsys" is no longer kosher (when > did that happen, and where was it documented?), I tried 'call doadump': Whatever, ddb should have a command "dump". Calling directly into the routine is bad mojo. > # Debugger("manual escape to debugger") > Stopped at Debugger+0x50: xchgl %ebx,in_Debugger.0 > db> call doadump > Dumping 511 MB > ata1: resetting devices .. > Context switches not allowed in the debugger. > db> call cpu_reset > > Makes me want to get my Norwegian Sword [tm] and make a short trip to > Denmark. Can't blame you, not having working dumps really annoyed me. > It is becoming increasingly clear to me that the majority of FreeBSD > developers don't really care if their code works, as long as they get > the credit (and / or paycheck) for committing it. Heh... Back on track, this is bogus, ata should not be calling tsleep() from the dump routine. Soren please fix this. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 3:40:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C01C37B401 for ; Fri, 14 Feb 2003 03:40:29 -0800 (PST) Received: from smtp0.adl1.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 090A143FBD for ; Fri, 14 Feb 2003 03:40:26 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from midget.dons.net.au (ppp1632.sa.padsl.internode.on.net [150.101.19.95]) by smtp0.adl1.internode.on.net (8.12.4/8.12.4) with ESMTP id h1EBeJ0W007271; Fri, 14 Feb 2003 22:10:20 +1030 (CST) Received: (from root@localhost) by midget.dons.net.au (8.12.2/8.12.2) id h1EBeHcg018383; Fri, 14 Feb 2003 22:10:17 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Received: from [127.0.0.1] (root@localhost [127.0.0.1]) by midget.dons.net.au (8.12.2/8.12.2av) with ESMTP id h1EBeDOm018371; Fri, 14 Feb 2003 22:10:13 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Subject: Re: fix: lock order reversal proc/filedesc. From: "Daniel O'Connor" To: Dag-Erling Smorgrav Cc: Alfred Perlstein , current@freebsd.org In-Reply-To: References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> Content-Type: text/plain Organization: Message-Id: <1045222812.6223.11.camel@chowder.dons.net.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 14 Feb 2003 22:10:13 +1030 Content-Transfer-Encoding: 7bit X-Spam-Score: -3 () IN_REP_TO,ORDER_STATUS,QUOTED_EMAIL_TEXT,REFERENCES,SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01 X-Scanned-By: MIMEDefang 2.26 (www . roaringpenguin . com / mimedefang) X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 2003-02-14 at 21:53, Dag-Erling Smorgrav wrote: > Alfred Perlstein writes: > > What exactly is broken about dumps for you on ata? > > Well, after you told me that "call dumpsys" is no longer kosher (when > did that happen, and where was it documented?), I tried 'call doadump': > > # Debugger("manual escape to debugger") > Stopped at Debugger+0x50: xchgl %ebx,in_Debugger.0 > db> call doadump > Dumping 511 MB > ata1: resetting devices .. > Context switches not allowed in the debugger. > db> call cpu_reset > > Makes me want to get my Norwegian Sword [tm] and make a short trip to > Denmark. > > It is becoming increasingly clear to me that the majority of FreeBSD > developers don't really care if their code works, as long as they get > the credit (and / or paycheck) for committing it. Uhh.. pretty broad/rude call there :-/ -- 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 - 9A8C 569F 685A D928 5140 AE4B 319B 41F4 5D17 FDD5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 6: 3:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D4ED37B401 for ; Fri, 14 Feb 2003 06:03:26 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7265C43F93 for ; Fri, 14 Feb 2003 06:03:25 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1EE3O8I016961 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 09:03:24 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1EE3Jt35286; Fri, 14 Feb 2003 09:03:19 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15948.63271.427854.685742@grasshopper.cs.duke.edu> Date: Fri, 14 Feb 2003 09:03:19 -0500 (EST) To: Chris BeHanna Cc: current@freebsd.org Reply-To: current@freebsd.org Subject: Re: 5-STABLE Roadmap In-Reply-To: <200302140028.21669.chris@pennasoft.com> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Chris BeHanna writes: > > > At 4:36 PM -0800 2003/02/13, Scott Long wrote: > > > > - Fstress - http://www.cs.duke.edu/ari/fstress > > SpecFS (NFS ops/sec benchmark) > Have you ever actually used SPECsfs97? In addition to being encumbered, SPECsfs97 is pain to keep running (dies at the drop of a hat), and a nightmare to setup. Fstress was designed as an easy-to-use, more generic replacement for things like SPECsfs97. Fstress development was motivated by one of our best former grad students attempting to use SPECsfs97 to benchmark the FS he did his thesis work on. Rather than wasting his time fixing SPECsfs97, he wrote his own from the ground up and got a paper out of it... Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 6:15:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C4337B401 for ; Fri, 14 Feb 2003 06:15:12 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABA4743F85 for ; Fri, 14 Feb 2003 06:15:11 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id CBF50536E; Fri, 14 Feb 2003 15:15:08 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Ken McKittrick Cc: current@FreeBSD.ORG Subject: Re: FreeBSD 5 not working with Linux Virtual Server From: Dag-Erling Smorgrav Date: Fri, 14 Feb 2003 15:15:07 +0100 In-Reply-To: <2D64B0A4-3FBD-11D7-A349-000393B2B0EE@twcny.rr.com> (Ken McKittrick's message of "Thu, 13 Feb 2003 20:39:37 -0500") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <2D64B0A4-3FBD-11D7-A349-000393B2B0EE@twcny.rr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ken McKittrick writes: > As I said, works fine with 4.7. I'm sure it's something 5.0-current > specific. I'm currently processing 500K emails per day with this > setup. :) Your configuration relies on a long-standing bug in the networking stack, which caused FreeBSD to accept packets destined for one interface (lo0 in your case) even if they arrive on another interface. This has been corrected in 5.0. Enabling forwarding on the 5.0 box should enable the historical behaviour. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 6:33:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F80537B401 for ; Fri, 14 Feb 2003 06:33:14 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F15C43F93 for ; Fri, 14 Feb 2003 06:33:14 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 0995AAE160; Fri, 14 Feb 2003 06:33:14 -0800 (PST) Date: Fri, 14 Feb 2003 15:33:14 +0100 From: Maxime Henrion To: Hiten Pandya Cc: current@FreeBSD.ORG Subject: Re: KASSERT's for vfs_{get,copy}opt() Message-ID: <20030214143313.GC60813@elvis.mu.org> References: <20030214103359.GA73639@unixdaemons.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214103359.GA73639@unixdaemons.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hiten Pandya wrote: > Hello everyone. This not something major, but I recently experienced > panics in some of my old QNX4 filesystem porting code, and an old 5.0 > kernel with UNIONFS problems. > > The kernel will panic if vfs_get/copyopt() was passed 'opts' as NULL. > It would be good to add KASSERT's to these calls. I have passed this > patch around on IRC, and have not seen any objections. Why the need for a KASSERT() when we will panic() anyway if NULL is passed ? There's no need for manually calling panic() when the code will end doing so, and I specifically did not put KASSERT() there for this reason. Cheers, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 6:53:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E6E437B401 for ; Fri, 14 Feb 2003 06:53:26 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B46043FA3 for ; Fri, 14 Feb 2003 06:53:25 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1EErMnN014104 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 14 Feb 2003 06:53:25 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <26dd01c2d438$d37f0810$52557f42@errno.com> From: "Sam Leffler" To: "Brad Knowles" Cc: "Chris BeHanna" , References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> <265d01c2d3ec$912bbae0$52557f42@errno.com> Subject: Re: 5-STABLE Roadmap Date: Fri, 14 Feb 2003 06:53:09 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At 9:47 PM -0800 2003/02/13, Sam Leffler wrote: > > >> SpecFS (NFS ops/sec benchmark) > > > > List price on SPEC SFS97 R1 is $900. And my recollection is that it was > > involved to setup and run. > > $450 for educational organizations. Wouldn't the FreeBSD > Foundation qualify? > The point was that they cost $$$. Not an option for many developers. > > Benchmarks must be unencumbered; be easy to setup+run by one person; and not > > require lots of equipment. For the most part we are looking for benchmarks > > that will help tune system performance; not generate press releases. > > Some of the more interesting benchmarks take more hardware to > properly run. They're not necessarily particularly hard to setup, > but they do want client machines to be used to generate test load. > > Rick Jones had to use 20 client machines with netperf in order to > find the limits of performance for Nominum Authoritative Name Server > (ANS), and he works for HP. > > > I think you need to decide just how thorough you want your > testing to be. If it's all going to be just single people running > benchmarks on single machines, I think that there are going to be a > lot of things you may miss. > > I have this problem myself with the benchmarks I've been running > in conjunction with the invited talks I did at LISA 2002 and BSDCon > Europe 2002, and people have repeatedly called me to task on this > issue. Benchmarks for tuning are frequently different in nature than benchmarks for comparing systems. When tuning or for regression testing you usually want something that's easy to setup and runs fast enough to give you results quickly. For comparisons you usually care more about things like coverage, how well it models real-world behaviour, etc. My point was that we're presently trying to identify good benchmarks to use in comparing performance between -stable and -current. But these must also be ones that we can use for tuning either by reducing the configuration or otherwise directing the activity. Microbenchmarks are valuable here and have already been heavily used. We're at the point where we need something that exercises the system on a bit larger scale. Eventually we'll get to the point where large-scale benchmarks are worth running. Note that these issues have nothing to do with single machine vs. multiple machines. Of course what we really need more than benchmarks are people to actually follow through on the results and fix the problems... Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 7: 8:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C175937B401 for ; Fri, 14 Feb 2003 07:08:18 -0800 (PST) Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.74.141.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6476A43FAF for ; Fri, 14 Feb 2003 07:08:17 -0800 (PST) (envelope-from Jim.Hatfield@insignia.com) Received: from scorpio.isltd.insignia.com (scorpio.isltd.insignia.com [172.16.1.1]) by highland.isltd.insignia.com (8.12.6/8.12.6) with ESMTP id h1EF8BSm093851 for ; Fri, 14 Feb 2003 15:08:11 GMT (envelope-from Jim.Hatfield@insignia.com) Received: from exchange-uk.isltd.insignia.com (exchange-uk [172.16.1.6]) by scorpio.isltd.insignia.com (8.11.3/8.11.3) with ESMTP id h1EF8B104188 for ; Fri, 14 Feb 2003 15:08:11 GMT Received: by exchange-uk.isltd.insignia.com with Internet Mail Service (5.5.2653.19) id <3949H64Y>; Fri, 14 Feb 2003 15:08:10 -0000 Message-ID: <2F03DF3DDE57D411AFF4009027B8C3670289D805@exchange-uk.isltd.insignia.com> From: "local.freebsd.current" To: "'freebsd-current@freebsd.org'" Subject: FreeBSD 5, Samba and ACL support Date: Fri, 14 Feb 2003 15:08:10 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain X-Scanned-By: MIMEDefang 2.28 (www . roaringpenguin . com / mimedefang) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've been hanging on for a production-ready FreeBSD which supports ACLs so I can replace an NFS server and an NT fileserver with one box which can do both. Changing company circumstances mean that I am forced to look to doing that now, rather than waiting for 5.1 or 5.2. So I'd appreciate feedback from anyone who is using 5.0 as a Samba server with ACL support - is it indistinguishable from an NT fileserver from the client POV? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 7: 9:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7559537B401 for ; Fri, 14 Feb 2003 07:09:24 -0800 (PST) Received: from vador.skynet.be (vador.skynet.be [195.238.3.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30AB843FAF for ; Fri, 14 Feb 2003 07:09:23 -0800 (PST) (envelope-from brad.knowles@skynet.be) Received: from [10.0.1.2] (ip-26.shub-internet.org [194.78.144.26] (may be forged)) by vador.skynet.be (8.12.7/8.12.7/Skynet-OUT-2.21) with ESMTP id h1EF99PU027804; Fri, 14 Feb 2003 16:09:10 +0100 (MET) (envelope-from ) Mime-Version: 1.0 X-Sender: bs663385@pop.skynet.be Message-Id: In-Reply-To: <26dd01c2d438$d37f0810$52557f42@errno.com> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> <265d01c2d3ec$912bbae0$52557f42@errno.com> <26dd01c2d438$d37f0810$52557f42@errno.com> Date: Fri, 14 Feb 2003 16:06:31 +0100 To: "Sam Leffler" From: Brad Knowles Subject: Re: 5-STABLE Roadmap Cc: "Brad Knowles" , "Chris BeHanna" , Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 6:53 AM -0800 2003/02/14, Sam Leffler wrote: >> $450 for educational organizations. Wouldn't the FreeBSD >> Foundation qualify? > > The point was that they cost $$$. Not an option for many developers. Fair enough. > Microbenchmarks are valuable here and > have already been heavily used. Good. Can we get a more complete list of the microbenchmarks used, and perhaps get some consideration for some of the benchmarks I've mentioned? > We're at the point where we need something > that exercises the system on a bit larger scale. This indicates to me that LMbench might be a good choice for internal O/S & networking things, and that perhaps one of IOStone, IOBench, or IOZone might be good choices for exercising the disk subsystem. > Eventually we'll get to > the point where large-scale benchmarks are worth running. Large-scale, as in? > Of course what we really need more than benchmarks are people to actually > follow through on the results and fix the problems... I hope to be able to help in a more material fashion by being able to run some comparison benchmarks on my test system here, but I fear that I would not be able to help fix any problems that might be identified. -- Brad Knowles, "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. GCS/IT d+(-) s:+(++)>: a C++(+++)$ UMBSHI++++$ P+>++ L+ !E-(---) W+++(--) N+ !w--- O- M++ V PS++(+++) PE- Y+(++) PGP>+++ t+(+++) 5++(+++) X++(+++) R+(+++) tv+(+++) b+(++++) DI+(++++) D+(++) G+(++++) e++>++++ h--- r---(+++)* z(+++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 7:35: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7630937B401 for ; Fri, 14 Feb 2003 07:35:02 -0800 (PST) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id E91D543FBD for ; Fri, 14 Feb 2003 07:35:00 -0800 (PST) (envelope-from marc@blackend.org) Received: from nosferatu.blackend.org (nosferatu.blackend.org [192.168.10.205]) by abigail.blackend.org (8.12.3/8.12.3) with ESMTP id h1EFYwTS063641; Fri, 14 Feb 2003 16:34:58 +0100 (CET) (envelope-from marc@abigail.blackend.org) Received: from nosferatu.blackend.org (localhost [127.0.0.1]) by nosferatu.blackend.org (8.12.6/8.12.6) with ESMTP id h1EFZ2Xu004712; Fri, 14 Feb 2003 16:35:06 +0100 (CET) (envelope-from marc@nosferatu.blackend.org) Received: (from marc@localhost) by nosferatu.blackend.org (8.12.6/8.12.6/Submit) id h1EFZ1Rb004711; Fri, 14 Feb 2003 16:35:01 +0100 (CET) (envelope-from marc) Date: Fri, 14 Feb 2003 16:35:01 +0100 From: Marc Fonvieille To: lattera@softhome.net Cc: freebsd-current@freebsd.org Subject: Re: mdconfig problems Message-ID: <20030214153501.GA564@nosferatu.blackend.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 02:08:30PM -0700, lattera@softhome.net wrote: > -su-2.05b# mdconfig -a -t vnode -f filesys > mdconfig: ioctl(/dev/mdctl): No such file or directory > -su-2.05b# ls /dev/md* > /dev/mdctl > -su-2.05b# Are you sure the file called filesys really exists? Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 8: 6:47 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54D837B401 for ; Fri, 14 Feb 2003 08:06:46 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 629CF43F75 for ; Fri, 14 Feb 2003 08:06:45 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1EG6iI2082038 for ; Fri, 14 Feb 2003 17:06:44 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Fri, 14 Feb 2003 17:06:44 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: USB kernel module broken ... Message-ID: <20030214170155.G44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG One can not unload the thing ... Please fix. Or please take USB out of the GENERIC kernel. It should also not be enabled And I cannot reboot the box if USB is compiled in. It hangs solid then. No break into DDB possible anymore. # kldunload /boot/kernel/usb.ko kldunload: can't unload file: Device not configured The usb.ko got loaded it the multiuser state. # Feb 14 16:05:02 ibm-01 reboot: rebooted by root Waiting (max 60 seconds) for system process `vnlru' to stop...stopped Waiting (max 60 s Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 8:23:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9318637B401 for ; Fri, 14 Feb 2003 08:23:26 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E415843FCB for ; Fri, 14 Feb 2003 08:23:22 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1EGNAI0038982 for ; Fri, 14 Feb 2003 18:23:10 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1EGNAHR038969 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 18:23:10 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1EGNAN1038964; Fri, 14 Feb 2003 18:23:10 +0200 (EET) Date: Fri, 14 Feb 2003 18:23:09 +0200 From: Ruslan Ermilov To: current@freebsd.org Cc: "Matthew N. Dodd" Subject: kldloading smapi.ko on ThinkPad 600X Message-ID: <20030214162309.GA38593@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! On a recent 5.0-CURRENT, a kldload of the smapi.ko panics my box. Is anyone else seeing this too? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TRftUkv4P6juNwoRAtmIAJ0fW36CBL+ECB9NvPqPinzrlYYnLwCbBe2r FH0Xf6snoptgElbLKusDSTM= =N+hP -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 8:30:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C60F37B401; Fri, 14 Feb 2003 08:30:12 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id E11B343FA3; Fri, 14 Feb 2003 08:30:10 -0800 (PST) (envelope-from winter@jurai.net) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.6/8.12.5) with ESMTP id h1EGUAvA098668; Fri, 14 Feb 2003 11:30:10 -0500 (EST) (envelope-from winter@jurai.net) Date: Fri, 14 Feb 2003 11:30:10 -0500 (EST) From: "Matthew N. Dodd" To: Ruslan Ermilov Cc: current@freebsd.org, "Matthew N. Dodd" Subject: Re: kldloading smapi.ko on ThinkPad 600X In-Reply-To: <20030214162309.GA38593@sunbay.com> Message-ID: <20030214112953.V73971@sasami.jurai.net> References: <20030214162309.GA38593@sunbay.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, Ruslan Ermilov wrote: > On a recent 5.0-CURRENT, a kldload of the smapi.ko panics my box. Is > anyone else seeing this too? I'd be interested in the traceback... -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 8:35:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4E537B401 for ; Fri, 14 Feb 2003 08:35:47 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E596943FB1 for ; Fri, 14 Feb 2003 08:35:41 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1EGZaAM041144 for ; Fri, 14 Feb 2003 18:35:36 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1EGZZHR041131 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 18:35:35 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1EGZZXh041126; Fri, 14 Feb 2003 18:35:35 +0200 (EET) Date: Fri, 14 Feb 2003 18:35:35 +0200 From: Ruslan Ermilov To: "Matthew N. Dodd" Cc: current@FreeBSD.ORG, "Matthew N. Dodd" Subject: Re: kldloading smapi.ko on ThinkPad 600X Message-ID: <20030214163535.GB39984@sunbay.com> References: <20030214162309.GA38593@sunbay.com> <20030214112953.V73971@sasami.jurai.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yEPQxsgoJgBvi8ip" Content-Disposition: inline In-Reply-To: <20030214112953.V73971@sasami.jurai.net> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --yEPQxsgoJgBvi8ip Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 11:30:10AM -0500, Matthew N. Dodd wrote: > On Fri, 14 Feb 2003, Ruslan Ermilov wrote: > > On a recent 5.0-CURRENT, a kldload of the smapi.ko panics my box. Is > > anyone else seeing this too? >=20 > I'd be interested in the traceback... >=20 I'll send it to you later today, when I get home. BTW, when yesterday I attempted to compile it statically into the kernel, it "worked", but only by not panicing the box; there was no the usual "greetings" (probe failed?) Also Matt, I'd be interested in getting the TV Output function working; you said "you now know how to do it", but if you don't have the time to sit and implement it, please drop me what you have already dug up, I'll look into it. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --yEPQxsgoJgBvi8ip Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TRrXUkv4P6juNwoRAkz7AJ4r0Jqeshq55bchgKBWDuaGH1X5XwCeKlBR 58wAONDRHfHS0sY34AROxEU= =mxwF -----END PGP SIGNATURE----- --yEPQxsgoJgBvi8ip-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 8:42:25 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 426F537B401; Fri, 14 Feb 2003 08:42:23 -0800 (PST) Received: from vladbert.skynet.be (vladbert.skynet.be [195.238.3.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id C875243F75; Fri, 14 Feb 2003 08:42:21 -0800 (PST) (envelope-from brad.knowles@skynet.be) Received: from picard.skynet.be (picard.skynet.be [195.238.3.88]) by vladbert.skynet.be (8.12.7/8.12.7/Skynet-OUT-FALLBACK-2.22) with ESMTP id h1EERPZt003196; Fri, 14 Feb 2003 15:27:25 +0100 (MET) (envelope-from ) Received: from [10.0.1.2] (ip-26.shub-internet.org [194.78.144.26] (may be forged)) by picard.skynet.be (8.12.7/8.12.7/Skynet-OUT-2.21) with ESMTP id h1EEQlHh020920; Fri, 14 Feb 2003 15:26:48 +0100 (MET) (envelope-from ) Mime-Version: 1.0 X-Sender: bs663385@pop.skynet.be Message-Id: In-Reply-To: <25c301c2d3e1$8f2e3e30$52557f42@errno.com> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> Date: Fri, 14 Feb 2003 13:44:07 +0100 To: "Sam Leffler" From: Brad Knowles Subject: Re: 5-STABLE Roadmap Cc: "Scott Long" , "Brad Knowles" , Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 8:28 PM -0800 2003/02/13, Sam Leffler wrote: > This can quickly turn into a bikeshed, but suggest ones. We're looking for > good benchmarks. lmbench, rawio, and bonniee are rather "micro" in nature > (not bad, just limited in their usefulness). Well, I would submit that webstone and ApacheBench are rather "micro" in their nature as well -- they cover only one protocol, and/or one program. LMbench is, to the best of my knowledge, the very best low-level benchmark around for looking at things like system call overhead, process creation, signal handling, memory read latency, L1/2/3 sizing vs. speed trade-offs, TCP, UDP, and RPC latency & bandwidth, etc.... Since a lot of these things are likely to be changing with all the kernel changes in FreeBSD-5.x, this would seem to be a good candidate for the toolbox. The ATA & CAM drivers are getting updated too, not to mention additional work on softupdates and other filesystem-related features, so it would seem to me that you're really want a lot of disk benchmarks. RawIO is the only benchmark anywhere that I know of that looks at the underlying hardware performance for disk drives (by-passing all the OS caching, etc...). Bonnie++ is one of the better medium-level disk benchmarking tools, so that you can compare the raw numbers returned by RawIO against the "cooked" numbers returned by Bonnie++. If you want higher-level benchmarks, you could look at IOStone, IOZone, and/or IOBench. Postal is an interesting filesystem/disk benchmark, because it tests a very specific type of application load which is typically found in mail & news servers. If protocol-specific benchmarks might be of interest, then you could look at postal & rabid (SMTP & POP3), smtp-sink & smtp-source (SMTP transmit & receive), mstone (SMTP, POP3, IMAP, HTTP, etc...), or perhaps others. -- Brad Knowles, "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. GCS/IT d+(-) s:+(++)>: a C++(+++)$ UMBSHI++++$ P+>++ L+ !E-(---) W+++(--) N+ !w--- O- M++ V PS++(+++) PE- Y+(++) PGP>+++ t+(+++) 5++(+++) X++(+++) R+(+++) tv+(+++) b+(++++) DI+(++++) D+(++) G+(++++) e++>++++ h--- r---(+++)* z(+++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 9:32: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C20237B401 for ; Fri, 14 Feb 2003 09:32:03 -0800 (PST) Received: from ns1.gnf.org (ns1.gnf.org [63.196.132.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5948643F85 for ; Fri, 14 Feb 2003 09:32:00 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch01.lj.gnf.org [172.25.10.19]) by ns1.gnf.org (8.12.3/8.12.3) with ESMTP id h1EHVwMf099807 for ; Fri, 14 Feb 2003 09:31:58 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Fri, 14 Feb 2003 09:31:59 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.6/8.12.6) with ESMTP id h1EHVxGj038600; Fri, 14 Feb 2003 09:31:59 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.6/8.12.6/Submit) id h1EHVvlQ038599; Fri, 14 Feb 2003 09:31:57 -0800 (PST) Date: Fri, 14 Feb 2003 09:31:57 -0800 From: Gordon Tetlow To: Alexander Leidinger Cc: current@FreeBSd.org Subject: Re: named & chroot & rcNG & devfs Message-ID: <20030214173157.GF83215@roark.gnf.org> References: <20030211185931.0d37ef82.Alexander@Leidinger.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="juLeBF1Sbpsr6d7u" Content-Disposition: inline In-Reply-To: <20030211185931.0d37ef82.Alexander@Leidinger.net> User-Agent: Mutt/1.4i X-OriginalArrivalTime: 14 Feb 2003 17:31:59.0316 (UTC) FILETIME=[FA638940:01C2D44E] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --juLeBF1Sbpsr6d7u Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 11, 2003 at 06:59:31PM +0100, Alexander Leidinger wrote: > Hi, >=20 > /etc/rc.d/named copies /dev with pax to the named chroot directory. This > is obviously wrong with devfs, isn't it? You should read the script a little closer. That code path is only taken on NetBSD. -gordon --juLeBF1Sbpsr6d7u Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TSgNRu2t9DV9ZfsRAoiHAJ9EKfaZMEFdf8k0r+V2Dfq/VdBmBACgldg1 QHI+s8iJqxQIYK5LNf5JYqM= =8Lwu -----END PGP SIGNATURE----- --juLeBF1Sbpsr6d7u-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 9:34: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C89437B401 for ; Fri, 14 Feb 2003 09:34:04 -0800 (PST) Received: from ns1.gnf.org (ns1.gnf.org [63.196.132.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id A334243FA3 for ; Fri, 14 Feb 2003 09:34:03 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch01.lj.gnf.org [172.25.10.19]) by ns1.gnf.org (8.12.3/8.12.3) with ESMTP id h1EHY2Mf099827 for ; Fri, 14 Feb 2003 09:34:02 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Fri, 14 Feb 2003 09:34:03 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.6/8.12.6) with ESMTP id h1EHY3Gj038653; Fri, 14 Feb 2003 09:34:03 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.6/8.12.6/Submit) id h1EHY3ee038652; Fri, 14 Feb 2003 09:34:03 -0800 (PST) Date: Fri, 14 Feb 2003 09:34:02 -0800 From: Gordon Tetlow To: lattera@softhome.net Cc: freebsd-current@freebsd.org Subject: Re: gbde Message-ID: <20030214173402.GG83215@roark.gnf.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fc3RSXbRKaEj1MFC" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-OriginalArrivalTime: 14 Feb 2003 17:34:03.0413 (UTC) FILETIME=[445B3C50:01C2D44F] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --fc3RSXbRKaEj1MFC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 11, 2003 at 08:15:56PM -0700, lattera@softhome.net wrote: > I keep ketting errors when trying to make my root filesystem encrypted:= =20 I hope you have /boot on a different unencrypted filesystem. -gordon --fc3RSXbRKaEj1MFC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TSiKRu2t9DV9ZfsRArgyAKDQlCqWOVPN2GbKdW6PSb5fB/zM0QCcCIy3 Osdq1wy2onnxaG5Tf1Viw98= =+4E4 -----END PGP SIGNATURE----- --fc3RSXbRKaEj1MFC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 10:26: 9 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ABB737B401 for ; Fri, 14 Feb 2003 10:26:07 -0800 (PST) Received: from malasada.lava.net (malasada.lava.net [64.65.64.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id F09B343FDD for ; Fri, 14 Feb 2003 10:26:06 -0800 (PST) (envelope-from cliftonr@lava.net) Received: by malasada.lava.net (Postfix, from userid 102) id C3EB817A070; Fri, 14 Feb 2003 08:26:05 -1000 (HST) Date: Fri, 14 Feb 2003 08:26:04 -1000 From: Clifton Royston To: current@FreeBSD.ORG Subject: Re: current-digest V5 #816 Message-ID: <20030214082604.B17267@lava.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from owner-freebsd-current-digest@FreeBSD.ORG on Fri, Feb 14, 2003 at 09:32:05AM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 09:32:05AM -0800, current-digest wrote: > Date: Thu, 13 Feb 2003 10:30:12 -0500 > From: Vivek Khera > Subject: Re: OpenSSL 0.9.6/0.9.7 library version conflicts > > >>>>> "TL" == Terry Lambert writes: > > TL> not being overridden, even when the library path is. This is > TL> most likely due to a bug in the GNU configure script. The best > TL> way around those bugs is "do not use GNU configure". > > >> FYI, FreeBSD is not the only OS on which this problem has been found to > >> exist. Debian Linux is experience the same problem. See a post to > >> debian-devel-announce attached below. > > > TL> FWIW: this confirms that it's a Postfix problem. > > Postfix does not use GNU configure. I'm not sure how to fix it, but > will gladly accept patches that work both with and without the openssl > port. FYI to Terry and others: This is also not a Postfix problem, if you want to get picky. Postfix does not currently support TLS natively due to the amount of baggage OpenSSL brings in. It's a problem with the auto-configuration of the third-party patch to Postfix which adds TLS support. -- Clifton -- Clifton Royston -- LavaNet Systems Architect -- cliftonr@lava.net "If you ride fast enough, the Specialist can't catch you." "What's the Specialist?" Samantha says. "The Specialist wears a hat," says the babysitter. "The hat makes noises." She doesn't say anything else. Kelly Link, _The Specialist's Hat_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 10:43:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 509BF37B401 for ; Fri, 14 Feb 2003 10:43:56 -0800 (PST) Received: from wolfbert.skynet.be (wolfbert.skynet.be [195.238.3.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C18743F93 for ; Fri, 14 Feb 2003 10:43:55 -0800 (PST) (envelope-from brad.knowles@skynet.be) Received: from picard.skynet.be (picard.skynet.be [195.238.3.88]) by wolfbert.skynet.be (8.12.7/8.12.7/Skynet-OUT-FALLBACK-2.22) with ESMTP id h1EERRZp020797 for ; Fri, 14 Feb 2003 15:27:28 +0100 (MET) (envelope-from ) Received: from [10.0.1.2] (ip-26.shub-internet.org [194.78.144.26] (may be forged)) by picard.skynet.be (8.12.7/8.12.7/Skynet-OUT-2.21) with ESMTP id h1EEQlHj020920; Fri, 14 Feb 2003 15:26:50 +0100 (MET) (envelope-from ) Mime-Version: 1.0 X-Sender: bs663385@pop.skynet.be Message-Id: In-Reply-To: <265d01c2d3ec$912bbae0$52557f42@errno.com> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> <265d01c2d3ec$912bbae0$52557f42@errno.com> Date: Fri, 14 Feb 2003 13:49:19 +0100 To: "Sam Leffler" From: Brad Knowles Subject: Re: 5-STABLE Roadmap Cc: "Chris BeHanna" , Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 9:47 PM -0800 2003/02/13, Sam Leffler wrote: >> SpecFS (NFS ops/sec benchmark) > > List price on SPEC SFS97 R1 is $900. And my recollection is that it was > involved to setup and run. $450 for educational organizations. Wouldn't the FreeBSD Foundation qualify? > Benchmarks must be unencumbered; be easy to setup+run by one person; and not > require lots of equipment. For the most part we are looking for benchmarks > that will help tune system performance; not generate press releases. Some of the more interesting benchmarks take more hardware to properly run. They're not necessarily particularly hard to setup, but they do want client machines to be used to generate test load. Rick Jones had to use 20 client machines with netperf in order to find the limits of performance for Nominum Authoritative Name Server (ANS), and he works for HP. I think you need to decide just how thorough you want your testing to be. If it's all going to be just single people running benchmarks on single machines, I think that there are going to be a lot of things you may miss. I have this problem myself with the benchmarks I've been running in conjunction with the invited talks I did at LISA 2002 and BSDCon Europe 2002, and people have repeatedly called me to task on this issue. -- Brad Knowles, "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. GCS/IT d+(-) s:+(++)>: a C++(+++)$ UMBSHI++++$ P+>++ L+ !E-(---) W+++(--) N+ !w--- O- M++ V PS++(+++) PE- Y+(++) PGP>+++ t+(+++) 5++(+++) X++(+++) R+(+++) tv+(+++) b+(++++) DI+(++++) D+(++) G+(++++) e++>++++ h--- r---(+++)* z(+++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 11: 9: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F84337B405 for ; Fri, 14 Feb 2003 11:09:02 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 279E943FBF for ; Fri, 14 Feb 2003 11:09:02 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0241.cvx22-bradley.dialup.earthlink.net ([209.179.198.241] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18jlBr-0005Hn-00; Fri, 14 Feb 2003 11:08:04 -0800 Message-ID: <3E4D3E42.28D3FCB@mindspring.com> Date: Fri, 14 Feb 2003 11:06:42 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Dag-Erling Smorgrav Cc: Ken McKittrick , current@FreeBSD.ORG Subject: Re: FreeBSD 5 not working with Linux Virtual Server References: <2D64B0A4-3FBD-11D7-A349-000393B2B0EE@twcny.rr.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4ecdef25142ca04a280838f9e4cfa41042601a10902912494350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav wrote: > Ken McKittrick writes: > > As I said, works fine with 4.7. I'm sure it's something 5.0-current > > specific. I'm currently processing 500K emails per day with this > > setup. :) > > Your configuration relies on a long-standing bug in the networking > stack, which caused FreeBSD to accept packets destined for one > interface (lo0 in your case) even if they arrive on another interface. > This has been corrected in 5.0. Enabling forwarding on the 5.0 box > should enable the historical behaviour. sysctl -w net.inet.ip.check_interface=0 BTW, that was a feature, not a bug (8-)), and you can still get around it by adulterating the routing table. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 11:27: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C8F337B401 for ; Fri, 14 Feb 2003 11:26:59 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACDCD43F85 for ; Fri, 14 Feb 2003 11:26:57 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1EJQuXX040621 for current@freebsd.org; Fri, 14 Feb 2003 20:26:56 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302141926.h1EJQuXX040621@spider.deepcore.dk> Subject: ATA PATCH updated!! To: current@freebsd.org Date: Fri, 14 Feb 2003 20:26:56 +0100 (CET) X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG For those with ALI and ICH problems please try the updated patch: ftp://freebsd.dk/pub/ATA/ata-ng-diff-030214-1.gz Thanks! -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 12:40:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C88937B401 for ; Fri, 14 Feb 2003 12:40:47 -0800 (PST) Received: from smtp3.server.rpi.edu (smtp3.server.rpi.edu [128.113.2.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E54F43FB1 for ; Fri, 14 Feb 2003 12:40:46 -0800 (PST) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp3.server.rpi.edu (8.12.7/8.12.7) with ESMTP id h1EKei71017058; Fri, 14 Feb 2003 15:40:45 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20030214110403.GF93252@elvis.mu.org> References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> Date: Fri, 14 Feb 2003 15:40:43 -0500 To: Alfred Perlstein , Dag-Erling Smorgrav From: Garance A Drosihn Subject: Re: fix: lock order reversal proc/filedesc. Cc: current@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-RPI-Spam-Score: -3 () IN_REP_TO,ORDER_STATUS,QUOTED_EMAIL_TEXT,REFERENCES,SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01 X-Scanned-By: MIMEDefang 2.28 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 3:04 AM -0800 2/14/03, Alfred Perlstein wrote: >* Dag-Erling Smorgrav [030214 02:52] wrote: >> Alfred Perlstein writes: > > > Thanks to Paul Saab's work on fixing twe(4) I was able to > > > get a crash dump from my box > > > > How? I can't get a crash dump in -CURRENT, even on a plain > > jane ata disk, and it's been months since I last managed to > > get one. > >I dunno, it just works for me. Get a twe? :) > >What exactly is broken about dumps for you on ata? It's upsetting >to hear this, don't people realize that this is a VERY important >feature for allowing people to get things done in FreeBSD? When I was getting a panic on current a few weeks ago, I tried several times to generate a dump, and never got one. In my bug reports here, I mentioned that I couldn't get a panic, but since no one replied to that I assumed it must have been something I was doing wrong, or it was directly related to the same problem which was causing the panic. (the bug seemed to be something in softupdates, so it was plausible to me that maybe the disk had been put into a weird state by the bug). -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 13:19: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D67D537B405; Fri, 14 Feb 2003 13:18:59 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C2F844371; Fri, 14 Feb 2003 13:15:04 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9CB26679DC; Fri, 14 Feb 2003 13:14:14 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 6C0101080; Fri, 14 Feb 2003 13:14:14 -0800 (PST) Date: Fri, 14 Feb 2003 13:14:14 -0800 From: Kris Kennaway To: Kris Kennaway Cc: Thomas Moestl , Morten Rodal , current@FreeBSD.ORG, alfred@FreeBSD.org, tjr@FreeBSD.org Subject: Re: Panic in fork() Message-ID: <20030214211414.GC2655@rot13.obsecurity.org> References: <20030208092406.GA12104@rot13.obsecurity.org> <20030208110512.GB12696@rot13.obsecurity.org> <20030208141542.GC11725@slurp.rodal.no> <20030208151226.GB624@crow.dom2ip.de> <20030208220456.GB15257@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wzJLGUyc3ArbnUjN" Content-Disposition: inline In-Reply-To: <20030208220456.GB15257@rot13.obsecurity.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --wzJLGUyc3ArbnUjN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 08, 2003 at 02:04:56PM -0800, Kris Kennaway wrote: > OK, I suspected that. >=20 > tjr was looking into this last night and proposed the following patch: >=20 > http://people.freebsd.org/~tjr/kf.diff OK, I got another panic with this patch in place, so I guess that's not enough. Maybe I should try Alfred's suggestion of changing the locks to exclusive locks. Fatal trap 12: page fault while in kernel mode cpuid =3D 1; lapic.id =3D 00000000 fault virtual address =3D 0x14 fault code =3D supervisor read, page not present instruction pointer =3D 0x8:0xc01a1e2d stack pointer =3D 0x10:0xe3639c74 frame pointer =3D 0x10:0xe3639cbc code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 97943 (sh) kernel: type 12 trap, code=3D0 Stopped at fork1+0x3fd: cmpl %ebx,0x14(%eax) db> trace fork1(ca1458c0,14,0,e3639cd4,ca179068) at fork1+0x3fd fork(ca1458c0,e3639d10,c03445dc,407,0) at fork+0x52 syscall(2f,2f,2f,0,80fe000) at syscall+0x28e Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (2, FreeBSD ELF32, fork), eip =3D 0x807bd63, esp =3D 0xbfbff9fc= , ebp =3D 0xbfbffa28 --- db> Kris --wzJLGUyc3ArbnUjN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TVwlWry0BWjoQKURAghMAJ47pN31gX9+AQPfhUpftznLg9jXzgCfS2bK JlF3C8O85cKWAE7smAyHH4k= =0nU0 -----END PGP SIGNATURE----- --wzJLGUyc3ArbnUjN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 13:34:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E72E637B401 for ; Fri, 14 Feb 2003 13:34:55 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9C1143F93 for ; Fri, 14 Feb 2003 13:34:54 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1ELYq6E007482; Fri, 14 Feb 2003 21:34:53 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1ELYodL003209; Fri, 14 Feb 2003 22:34:51 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Dag-Erling Smorgrav Cc: Alfred Perlstein , current@FreeBSD.ORG Subject: Re: fix: lock order reversal proc/filedesc. From: phk@phk.freebsd.dk In-Reply-To: Your message of "Fri, 14 Feb 2003 12:23:48 +0100." Date: Fri, 14 Feb 2003 22:34:50 +0100 Message-ID: <3208.1045258490@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message , Dag-Erling Smorgrav writes: >Makes me want to get my Norwegian Sword [tm] and make a short trip to >Denmark. I my be reading my email out of order here, but I guess you changed your mind and tried to bury use with boatloads of useless asterix ('*') instead ? :-) >It is becoming increasingly clear to me that the majority of FreeBSD >developers don't really care if their code works, as long as they get >the credit (and / or paycheck) for committing it. I realize that you live in Norway and therefore have a bigger supply or rocks than most of us. You should still be aware that you live in a glass house yourself. Poul-Henning -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 14: 5:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AC7A37B401; Fri, 14 Feb 2003 14:05:14 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB8A43FAF; Fri, 14 Feb 2003 14:05:11 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 4A31CAE2DD; Fri, 14 Feb 2003 14:05:11 -0800 (PST) Date: Fri, 14 Feb 2003 14:05:11 -0800 From: Alfred Perlstein To: Kris Kennaway Cc: Thomas Moestl , Morten Rodal , current@FreeBSD.ORG, tjr@FreeBSD.org Subject: Re: Panic in fork() Message-ID: <20030214220511.GT93252@elvis.mu.org> References: <20030208092406.GA12104@rot13.obsecurity.org> <20030208110512.GB12696@rot13.obsecurity.org> <20030208141542.GC11725@slurp.rodal.no> <20030208151226.GB624@crow.dom2ip.de> <20030208220456.GB15257@rot13.obsecurity.org> <20030214211414.GC2655@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214211414.GC2655@rot13.obsecurity.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Kris Kennaway [030214 13:19] wrote: > On Sat, Feb 08, 2003 at 02:04:56PM -0800, Kris Kennaway wrote: > > > OK, I suspected that. > > > > tjr was looking into this last night and proposed the following patch: > > > > http://people.freebsd.org/~tjr/kf.diff > > OK, I got another panic with this patch in place, so I guess that's > not enough. Maybe I should try Alfred's suggestion of changing the > locks to exclusive locks. Actually that was a mistake on my part. I don't think the locks should be exclusive actually... Anyhow, i'll look at it some more, now that crashdumps work again, any chance for a nice gdb session transcript? -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:19:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B664237B401 for ; Fri, 14 Feb 2003 15:19:51 -0800 (PST) Received: from 216-239-45-4.google.com (216-239-45-4.google.com [216.239.45.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2851E43F85 for ; Fri, 14 Feb 2003 15:19:51 -0800 (PST) (envelope-from darrell@google.com) Received: from google.com (vogsphere.corp.google.com [10.3.18.47]) by 216-239-45-4.google.com (8.12.6/8.12.3) with ESMTP id h1ENJo3u002332; Fri, 14 Feb 2003 15:19:50 -0800 Message-ID: <3E4D7996.8010303@google.com> Date: Fri, 14 Feb 2003 15:19:50 -0800 From: Darrell Anderson Reply-To: darrell@google.com Organization: Google User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en MIME-Version: 1.0 To: current@freebsd.org Cc: Chris BeHanna Subject: Re: 5-STABLE Roadmap References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> <25c301c2d3e1$8f2e3e30$52557f42@errno.com> <200302140028.21669.chris@pennasoft.com> <15948.63271.427854.685742@grasshopper.cs.duke.edu> In-Reply-To: <15948.63271.427854.685742@grasshopper.cs.duke.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey Drew, thanks for the heads up. I'd be happy to see Fstress included with FreeBSD! Regarding SPECsfs, Fstress has a mode that emulates it exactly. A number of major storage companies have adopted it as an easier way to tune their systems before running the actual SPECsfs release numbers. (: -Darrell Andrew Gallatin wrote: > Chris BeHanna writes: > > > > At 4:36 PM -0800 2003/02/13, Scott Long wrote: > > > > > - Fstress - http://www.cs.duke.edu/ari/fstress > > > > SpecFS (NFS ops/sec benchmark) > > > > Have you ever actually used SPECsfs97? In addition to being > encumbered, SPECsfs97 is pain to keep running (dies at the drop of a > hat), and a nightmare to setup. > > Fstress was designed as an easy-to-use, more generic replacement for > things like SPECsfs97. Fstress development was motivated by one of > our best former grad students attempting to use SPECsfs97 to benchmark > the FS he did his thesis work on. Rather than wasting his time fixing > SPECsfs97, he wrote his own from the ground up and got a paper out of > it... > > > Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:34:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E686D37B401; Fri, 14 Feb 2003 15:34:10 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF3A943F93; Fri, 14 Feb 2003 15:34:07 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 0156667C99; Fri, 14 Feb 2003 15:34:07 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id EF7B4107F; Fri, 14 Feb 2003 15:34:06 -0800 (PST) Date: Fri, 14 Feb 2003 15:34:06 -0800 From: Kris Kennaway To: current@FreeBSD.org Cc: yar@FreeBSD.org, buildadm@jp.FreeBSD.org Subject: FTP and command-line multiple downloads Message-ID: <20030214233406.GA3814@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Since upgrading bento to running 5.0, it appears that I can no longer download multiple files from a FTP server by specifying a glob pattern on the command-line: e.g. /usr/bin/ftp -4a ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/alpha/5-LATEST/base/base.\?\? [...] 230 Guest login ok, access restrictions apply. Remote system type is UNIX. Using binary mode to transfer files. 200 Type set to I. 250 CWD command successful. 250 CWD command successful. 250 CWD command successful. 250 CWD command successful. 250 CWD command successful. 250 CWD command successful. local: base.?? remote: base.?? 229 Entering Extended Passive Mode (|||1683|) 550 base.??: No such file or directory. 221- Data traffic for this session was 0 bytes in 0 files. Total traffic for this session was 2578 bytes in 0 transfers. 221 Thank you for using the FTP service on snapshots.jp.FreeBSD.org. This used to work under 4.x..I'm pretty sure nothing else has changed on my end. Does anyone know what's going on here? Kris --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TXzuWry0BWjoQKURAr5kAJ9O3f3nwecyRFDbhCEppnUY0yoqDgCg/mv6 e/MjblOb//9DZIVCBGnf7UM= =DEr+ -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:37:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F286537B401; Fri, 14 Feb 2003 15:37:28 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F0343FD7; Fri, 14 Feb 2003 15:37:27 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 59137679DA; Fri, 14 Feb 2003 15:37:26 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 533BA103D; Fri, 14 Feb 2003 15:37:26 -0800 (PST) Date: Fri, 14 Feb 2003 15:37:26 -0800 From: Kris Kennaway To: Alfred Perlstein Cc: Kris Kennaway , Thomas Moestl , Morten Rodal , current@FreeBSD.ORG, tjr@FreeBSD.org Subject: Re: Panic in fork() Message-ID: <20030214233726.GA3888@rot13.obsecurity.org> References: <20030208092406.GA12104@rot13.obsecurity.org> <20030208110512.GB12696@rot13.obsecurity.org> <20030208141542.GC11725@slurp.rodal.no> <20030208151226.GB624@crow.dom2ip.de> <20030208220456.GB15257@rot13.obsecurity.org> <20030214211414.GC2655@rot13.obsecurity.org> <20030214220511.GT93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline In-Reply-To: <20030214220511.GT93252@elvis.mu.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 02:05:11PM -0800, Alfred Perlstein wrote: > * Kris Kennaway [030214 13:19] wrote: > > On Sat, Feb 08, 2003 at 02:04:56PM -0800, Kris Kennaway wrote: > >=20 > > > OK, I suspected that. > > >=20 > > > tjr was looking into this last night and proposed the following patch: > > >=20 > > > http://people.freebsd.org/~tjr/kf.diff > >=20 > > OK, I got another panic with this patch in place, so I guess that's > > not enough. Maybe I should try Alfred's suggestion of changing the > > locks to exclusive locks. >=20 > Actually that was a mistake on my part. I don't think the locks should > be exclusive actually... Anyhow, i'll look at it some more, now that > crashdumps work again, any chance for a nice gdb session transcript? I've just updated bento to include your crashdump fix, so I'll have one for you next time it occurs. Kris --mP3DRpeJDSE+ciuQ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TX21Wry0BWjoQKURAtM1AJ43PV8kfiSwQHGv9Go60zFrFpnzIACfcaLb SdYVIZlgIHipQjw78UoKp9A= =LZfe -----END PGP SIGNATURE----- --mP3DRpeJDSE+ciuQ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:37:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C42ED37B401; Fri, 14 Feb 2003 15:37:50 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31C2E43F93; Fri, 14 Feb 2003 15:37:50 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9540A67C8E; Fri, 14 Feb 2003 15:37:49 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 91C57107F; Fri, 14 Feb 2003 15:37:49 -0800 (PST) Date: Fri, 14 Feb 2003 15:37:49 -0800 From: Kris Kennaway To: Kris Kennaway Cc: current@FreeBSD.ORG, yar@FreeBSD.ORG, buildadm@jp.FreeBSD.org Subject: Re: FTP and command-line multiple downloads Message-ID: <20030214233749.GB3888@rot13.obsecurity.org> References: <20030214233406.GA3814@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cvVnyQ+4j833TQvp" Content-Disposition: inline In-Reply-To: <20030214233406.GA3814@rot13.obsecurity.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cvVnyQ+4j833TQvp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 03:34:06PM -0800, Kris Kennaway wrote: > Since upgrading bento to running 5.0, it appears that I can no longer > download multiple files from a FTP server by specifying a glob pattern > on the command-line: >=20 > e.g. >=20 > /usr/bin/ftp -4a ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/alp= ha/5-LATEST/base/base.\?\? This appears to work (as it used to) under 4.x. Kris --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TX3MWry0BWjoQKURAnWVAJ9aKmE5k50TO2aXBaIZ4J/jx3Z0lACg/QBU 5Rlzzg3Nxd7cISs4VRWdmuU= =EM2D -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:39:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CDD337B401 for ; Fri, 14 Feb 2003 15:39:20 -0800 (PST) Received: from heron.mail.pas.earthlink.net (heron.mail.pas.earthlink.net [207.217.120.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC9B43F85 for ; Fri, 14 Feb 2003 15:39:20 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from dialup-209.247.143.154.dial1.sanjose1.level3.net ([209.247.143.154] helo=mindspring.com) by heron.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18jpQJ-0004kt-00; Fri, 14 Feb 2003 15:39:16 -0800 Message-ID: <3E4D7DCE.3CBE2062@mindspring.com> Date: Fri, 14 Feb 2003 15:37:50 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: "local.freebsd.current" Cc: "'freebsd-current@freebsd.org'" Subject: Re: FreeBSD 5, Samba and ACL support References: <2F03DF3DDE57D411AFF4009027B8C3670289D805@exchange-uk.isltd.insignia.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a416ffea56bbeca56b952988013e57b465667c3043c0873f7e350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "local.freebsd.current" wrote: > I've been hanging on for a production-ready FreeBSD which > supports ACLs so I can replace an NFS server and an NT > fileserver with one box which can do both. > > Changing company circumstances mean that I am forced to > look to doing that now, rather than waiting for 5.1 or > 5.2. > > So I'd appreciate feedback from anyone who is using 5.0 > as a Samba server with ACL support - is it indistinguishable > from an NT fileserver from the client POV? ACLs in UFS are not the same thing as ACLs in NT, they are POSIX ACLs, implement as part of MAC (Mandatory Access Controls) requirements. Do not expect them to interoperate with Samba as if Samba were an NT server that supported NT ACLs. Same thing for ACLs in Linux and other UNIX OS's, BTW: they tend to comply with the POSIX standard, not with the NT stuff, for which I don't think there is a published standard (only documentation). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:44:45 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9260837B407; Fri, 14 Feb 2003 15:44:43 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9731043F93; Fri, 14 Feb 2003 15:44:42 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 0F278679DA; Fri, 14 Feb 2003 15:44:42 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 09D18E5F; Fri, 14 Feb 2003 15:44:42 -0800 (PST) Date: Fri, 14 Feb 2003 15:44:41 -0800 From: Kris Kennaway To: Kris Kennaway Cc: current@FreeBSD.ORG, mikeh@FreeBSD.org Subject: Re: LukemFTP and command-line multiple downloads Message-ID: <20030214234441.GA3953@rot13.obsecurity.org> References: <20030214233406.GA3814@rot13.obsecurity.org> <20030214233749.GB3888@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <20030214233749.GB3888@rot13.obsecurity.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 03:37:49PM -0800, Kris Kennaway wrote: > On Fri, Feb 14, 2003 at 03:34:06PM -0800, Kris Kennaway wrote: > > Since upgrading bento to running 5.0, it appears that I can no longer > > download multiple files from a FTP server by specifying a glob pattern > > on the command-line: > >=20 > > e.g. > >=20 > > /usr/bin/ftp -4a ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/a= lpha/5-LATEST/base/base.\?\? >=20 > This appears to work (as it used to) under 4.x. It was pointed out to me that this is because 5.0 now uses lukemftp..can the maintainers please look into this ASAP? In the meantime I'll have to stick with the older 5.0 ftp client. Kris --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TX9pWry0BWjoQKURArJ7AKCxrX22xmafQ6jGXVLmvfOXuV9a8wCfQ6Xa gTxYcj5rf4RzcZXt9LOaxds= =9ugf -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:50: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFC6537B401; Fri, 14 Feb 2003 15:50:03 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD7B643F93; Fri, 14 Feb 2003 15:50:02 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1ENo1I2032352; Sat, 15 Feb 2003 00:50:01 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 00:50:01 +0100 (CET) From: Martin Blapp To: current@freebsd.org Cc: Kirk McKusick Subject: Reboot(8) when fsck_ufs is running ? Message-ID: <20030214173731.L44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I don't know what the behaviour should be, but when I try to reboot a box which has fsck_ufs is running, it doesn't reboot and I have to powercycle it. Looks also like it just hangs. Do you experience the same at your side ? Shouln't we abort the fsck_ufs and reboot ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:53:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F6A037B401 for ; Fri, 14 Feb 2003 15:53:40 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62D3843FB1 for ; Fri, 14 Feb 2003 15:53:39 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1ENrcI2032690 for ; Sat, 15 Feb 2003 00:53:38 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 00:53:38 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: Re: USB kernel module broken ... In-Reply-To: <20030214170155.G44623@cvs.imp.ch> Message-ID: <20030215005055.D44623@cvs.imp.ch> References: <20030214170155.G44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, The problem is still there. I guess the "SMM does not respond" message leads to the kldunload failure. ibm-01# kldload usb ohci0: mem 0xeddff000-0xeddfffff irq 10 at device 15.2 on pci0 usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ibm-01# ibm-01# kldunload usb kldunload: can't unload file: Device not configured > # Feb 14 16:05:02 ibm-01 reboot: rebooted by root > Waiting (max 60 seconds) for system process `vnlru' to stop...stopped > Waiting (max 60 s This one was ACPI. With acpi loaded, every reboot(8) hangs. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:54:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE1CF37B401; Fri, 14 Feb 2003 15:54:16 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B4D143FA3; Fri, 14 Feb 2003 15:54:14 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D9D4F679DA; Fri, 14 Feb 2003 15:54:13 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id C6D65107F; Fri, 14 Feb 2003 15:54:13 -0800 (PST) Date: Fri, 14 Feb 2003 15:54:13 -0800 From: Kris Kennaway To: Kris Kennaway Cc: current@FreeBSD.ORG, fs@FreeBSD.ORG, kirk@mckusick.com, iedowse@FreeBSD.org Subject: Re: INVARIANTS-related fs panic on alpha Message-ID: <20030214235413.GA4079@rot13.obsecurity.org> References: <20030125081234.GA11722@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <20030125081234.GA11722@rot13.obsecurity.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 25, 2003 at 12:12:34AM -0800, Kris Kennaway wrote: > One of the alpha package clients panicked with this. It was under > very high load at the time (25 simultaneous package builds): >=20 > fatal kernel trap: >=20 > trap entry =3D 0x2 (memory management fault) > faulting va =3D 0xdeadc0dedeadc0e6 > type =3D access violation > cause =3D store instruction > pc =3D 0xfffffc000053453c > ra =3D 0xfffffc000053b2a8 > sp =3D 0xfffffe001da15b30 > curthread =3D 0xfffffc003e33b930 > pid =3D 3, comm =3D g_up >=20 > Stopped at add_to_worklist+0xac: stq a0,0x8(t0) <0xdeadc0dedea= dc0e6> > db> trace > add_to_worklist() at add_to_worklist+0xac > handle_written_inodeblock() at handle_written_inodeblock+0x5e8 > softdep_disk_write_complete() at softdep_disk_write_complete+0xac > bufdone() at bufdone+0x19c > bufdonebio() at bufdonebio+0x1c > biodone() at biodone+0x28 > g_dev_done() at g_dev_done+0xd8 > biodone() at biodone+0x28 > g_io_schedule_up() at g_io_schedule_up+0x4c > g_up_procbody() at g_up_procbody+0x9c > fork_exit() at fork_exit+0x100 > exception_return() at exception_return > --- root of call graph --- > db> I'm still getting this (on i386 and alpha). I believe it is related to a filesystem becoming full. Can someone please investigate? Kris --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TYGlWry0BWjoQKURAlUxAKD3rqr6/26HEt/6wTODI0I2mBAP2QCg/Zrb QOX3oKc5fDuFzVTvOtA0s2Y= =R0GM -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:54:54 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 614F437B405 for ; Fri, 14 Feb 2003 15:54:53 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73C9743FA3 for ; Fri, 14 Feb 2003 15:54:50 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1ENsnI2032757 for ; Sat, 15 Feb 2003 00:54:49 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 00:54:49 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: Re: Invalid realloc size of 0: Unable to install CURRENT on a IBM x-series 305 Server In-Reply-To: <20030213165522.H44623@cvs.imp.ch> Message-ID: <20030215005347.Y44623@cvs.imp.ch> References: <20030213165522.H44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got more news about this. > Fatal error: invalid realloc size of 0! Press key to reboot. 5.0R is fine. The bug seems to have been introduzed after 5.0R. I cannot install any 5.X snap on this box. I tried 3 different dates including today. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 15:59:38 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDAF937B401 for ; Fri, 14 Feb 2003 15:59:36 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C0F343F3F for ; Fri, 14 Feb 2003 15:59:35 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1ENxYI2033167 for ; Sat, 15 Feb 2003 00:59:34 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 00:59:34 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: ACPI problems: ACPI-1287: *** Error: Method execution failed AE_AML_BUFFER_LIMIT Message-ID: <20030215005515.Y44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This IBM X-Series 305 show these ACPI problems. And rebooting the box with ACPI enabled hangs it (deadlock). Feb 13 17:41:05 ibm-01 kernel: acpi0: on motherboard Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE31 Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block1 defined as GPE32 to GPE63 Feb 13 17:41:05 ibm-01 kernel: acpi0: power button is handled as a fixed feature programming model. Feb 13 17:41:05 ibm-01 kernel: Timecounter "ACPI-safe" frequency 3579545 Hz Feb 13 17:41:05 ibm-01 kernel: unknown: I/O range not supported Feb 13 17:41:05 ibm-01 kernel: unknown: I/O range not supported Feb 13 17:41:05 ibm-01 kernel: acpi_timer0: <32-bit timer at 3.579545MHz> port 0x40c-0x40f on acpi0 Feb 13 17:41:05 ibm-01 kernel: acpi_cpu0: on acpi0 Feb 13 17:41:05 ibm-01 kernel: pcib0: on acpi0 Feb 13 17:41:05 ibm-01 kernel: ACPI-1287: *** Error: Method execution failed, AE_AML_BUFFER_LIMIT Feb 13 17:41:05 ibm-01 last message repeated 19 times Any way to work around this ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 16:14:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40BA637B401 for ; Fri, 14 Feb 2003 16:14:08 -0800 (PST) Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A25E43F85 for ; Fri, 14 Feb 2003 16:14:07 -0800 (PST) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6+Sun/8.11.6) with ESMTP id h1F0DxD15194; Fri, 14 Feb 2003 16:13:59 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id QAA27113; Fri, 14 Feb 2003 16:13:48 -0800 (PST) Received: from btc.adaptec.com (hollin [10.100.253.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id RAA04697; Fri, 14 Feb 2003 17:13:45 -0700 (MST) Message-ID: <3E4D8585.9070108@btc.adaptec.com> Date: Fri, 14 Feb 2003 17:10:45 -0700 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2b) Gecko/20021216 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Martin Blapp Cc: current@freebsd.org Subject: Re: ACPI problems: ACPI-1287: *** Error: Method execution failed AE_AML_BUFFER_LIMIT References: <20030215005515.Y44623@cvs.imp.ch> In-Reply-To: <20030215005515.Y44623@cvs.imp.ch> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Martin Blapp wrote: > This IBM X-Series 305 show these ACPI problems. And rebooting the box with > ACPI enabled hangs it (deadlock). > > Feb 13 17:41:05 ibm-01 kernel: acpi0: on motherboard > Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block0 defined > as GPE0 > to GPE31 > Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block1 defined > as GPE32 > to GPE63 > Feb 13 17:41:05 ibm-01 kernel: acpi0: power button is handled as a > fixed feature > programming model. > Feb 13 17:41:05 ibm-01 kernel: Timecounter "ACPI-safe" frequency > 3579545 Hz > Feb 13 17:41:05 ibm-01 kernel: unknown: I/O range not supported > Feb 13 17:41:05 ibm-01 kernel: unknown: I/O range not supported > Feb 13 17:41:05 ibm-01 kernel: acpi_timer0: <32-bit timer at > 3.579545MHz> port > 0x40c-0x40f on acpi0 > Feb 13 17:41:05 ibm-01 kernel: acpi_cpu0: on acpi0 > Feb 13 17:41:05 ibm-01 kernel: pcib0: on acpi0 > Feb 13 17:41:05 ibm-01 kernel: ACPI-1287: *** Error: Method execution > failed, > AE_AML_BUFFER_LIMIT > Feb 13 17:41:05 ibm-01 last message repeated 19 times > > Any way to work around this ? During boot, stop the bootloader and enter: set hint.acpi.0.disabled="1" then: boot This is documented in the troubleshooting section of the 5.0 installation guide =-) Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 16:20:36 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16C1F37B405 for ; Fri, 14 Feb 2003 16:20:35 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id C2C5A43FD7 for ; Fri, 14 Feb 2003 16:20:32 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 39243 invoked by uid 1000); 15 Feb 2003 00:20:31 -0000 Date: Fri, 14 Feb 2003 16:20:31 -0800 (PST) From: Nate Lawson To: current@freebsd.org Cc: wpaul@freebsd.org Subject: sys/pci/if* fixes Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have been working on a set of patches to fix locking in attach as well as fix memory leaks on failure/detach. The general approach is to remove all locking in attach and instead defer interrupt allocation to right before ifattach. Also, except for xl, all drivers have a common cleanup on error in attach that backs out allocated resources with no assumptions about the order they were allocated in. This is help against potential future problems. A couple errors were fixed by this along the way including one resource being freed twice and several not being freed. Before these fixes are complete, I have a few questions: * Does each device that uses miibus need to explicitly call device_delete_child when it is detaching? Should it do it also in its attach routine if it encounters an error? I assume all drivers need to do this after a successful mii_phy_probe(). * Does it need to call bus_generic_detach on itself? * Is it ok to return other errors (ENOMEM) from a device_attach method? Please review/test a patch if you have one of these: http://www.root.org/~nate/freebsd/sf.diff http://www.root.org/~nate/freebsd/sk.diff http://www.root.org/~nate/freebsd/ti.diff http://www.root.org/~nate/freebsd/tl.diff http://www.root.org/~nate/freebsd/vr.diff http://www.root.org/~nate/freebsd/wb.diff http://www.root.org/~nate/freebsd/xl.diff http://www.root.org/~nate/freebsd/pcn.diff http://www.root.org/~nate/freebsd/sis.diff http://www.root.org/~nate/freebsd/ste.diff http://www.root.org/~nate/freebsd/dc.diff http://www.root.org/~nate/freebsd/rl.diff Thanks, -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 16:53:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A32FC37B401; Fri, 14 Feb 2003 16:53:09 -0800 (PST) Received: from beastie.mckusick.com (beastie.mckusick.com [209.31.233.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 149EB43FBD; Fri, 14 Feb 2003 16:53:09 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Received: from beastie.mckusick.com (localhost [127.0.0.1]) by beastie.mckusick.com (8.12.3/8.12.3) with ESMTP id h1F0r7FL044055; Fri, 14 Feb 2003 16:53:07 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Message-Id: <200302150053.h1F0r7FL044055@beastie.mckusick.com> To: Kris Kennaway Subject: Re: INVARIANTS-related fs panic on alpha Cc: current@FreeBSD.ORG, fs@FreeBSD.ORG, iedowse@FreeBSD.ORG In-Reply-To: Your message of "Fri, 14 Feb 2003 15:54:13 PST." <20030214235413.GA4079@rot13.obsecurity.org> Date: Fri, 14 Feb 2003 16:53:07 -0800 From: Kirk McKusick Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have tried running my test machine out of filesystem space (repeatedly) and have not been able to get this panic. I will keep running that test in the hopes that it will show up. In the meantime, if you can come up with an example that reliably triggers it, that would be most helpful. Kirk McKusick =-=-=-=-=-= Date: Fri, 14 Feb 2003 15:54:13 -0800 From: Kris Kennaway To: Kris Kennaway Cc: current@FreeBSD.ORG, fs@FreeBSD.ORG, kirk@mckusick.com, iedowse@FreeBSD.ORG Subject: Re: INVARIANTS-related fs panic on alpha On Sat, Jan 25, 2003 at 12:12:34AM -0800, Kris Kennaway wrote: > One of the alpha package clients panicked with this. It was under > very high load at the time (25 simultaneous package builds): >=20 > fatal kernel trap: >=20 > trap entry =3D 0x2 (memory management fault) > faulting va =3D 0xdeadc0dedeadc0e6 > type =3D access violation > cause =3D store instruction > pc =3D 0xfffffc000053453c > ra =3D 0xfffffc000053b2a8 > sp =3D 0xfffffe001da15b30 > curthread =3D 0xfffffc003e33b930 > pid =3D 3, comm =3D g_up >=20 > Stopped at add_to_worklist+0xac: stq a0,0x8(t0) <0xdeadc0dedea= dc0e6> > db> trace > add_to_worklist() at add_to_worklist+0xac > handle_written_inodeblock() at handle_written_inodeblock+0x5e8 > softdep_disk_write_complete() at softdep_disk_write_complete+0xac > bufdone() at bufdone+0x19c > bufdonebio() at bufdonebio+0x1c > biodone() at biodone+0x28 > g_dev_done() at g_dev_done+0xd8 > biodone() at biodone+0x28 > g_io_schedule_up() at g_io_schedule_up+0x4c > g_up_procbody() at g_up_procbody+0x9c > fork_exit() at fork_exit+0x100 > exception_return() at exception_return > --- root of call graph --- > db> I'm still getting this (on i386 and alpha). I believe it is related to a filesystem becoming full. Can someone please investigate? Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 16:56:45 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FDDD37B401; Fri, 14 Feb 2003 16:56:43 -0800 (PST) Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A984B43F75; Fri, 14 Feb 2003 16:56:41 -0800 (PST) (envelope-from buildadm@jp.FreeBSD.org) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id h1F0prJ28229; Sat, 15 Feb 2003 09:51:53 +0900 (JST) (envelope-from buildadm@jp.FreeBSD.org) Cc: current@FreeBSD.org In-Reply-To: <20030214233406.GA3814@rot13.obsecurity.org> References: <20030214233406.GA3814@rot13.obsecurity.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 54 From: SNAPSHOTs Service Administrator To: kris@obsecurity.org, yar@FreeBSD.org Subject: Re: FTP and command-line multiple downloads Date: Sat, 15 Feb 2003 09:51:50 +0900 Message-Id: <20030215095150T.buildadm@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG (put my 'snapshots.jp.FreeBSD.org admin' hat on) kris> Since upgrading bento to running 5.0, it appears that I can no longer kris> download multiple files from a FTP server by specifying a glob pattern kris> on the command-line: Client says (from the server side logfile): Feb 15 08:28:31 u ftpd[85430]: command: SIZE base.?? Feb 15 08:28:31 u ftpd[85430]: <--- 550 Feb 15 08:28:31 u ftpd[85430]: base.??: not a plain file. Feb 15 08:28:31 u ftpd[85430]: command: EPSV Feb 15 08:28:31 u ftpd[85430]: <--- 229 Feb 15 08:28:31 u ftpd[85430]: Entering Extended Passive Mode (|||1679|) Feb 15 08:28:32 u ftpd[85430]: command: RETR base.?? Feb 15 08:28:32 u ftpd[85430]: <--- 550 Feb 15 08:28:32 u ftpd[85430]: base.??: No such file or directory. kris> This used to work under 4.x.. Also client says: Feb 15 08:42:35 u ftpd[85572]: command: TYPE A Feb 15 08:42:35 u ftpd[85572]: <--- 200 Feb 15 08:42:35 u ftpd[85572]: Type set to A. Feb 15 08:42:35 u ftpd[85572]: command: EPSV Feb 15 08:42:35 u ftpd[85572]: <--- 229 Feb 15 08:42:35 u ftpd[85572]: Entering Extended Passive Mode (|||1697|) Feb 15 08:42:35 u ftpd[85572]: command: NLST base.?? Feb 15 08:42:36 u ftpd[85572]: <--- 150 Feb 15 08:42:36 u ftpd[85572]: Opening ASCII mode data connection for 'file list'. Feb 15 08:42:36 u ftpd[85572]: <--- 226 Feb 15 08:42:36 u ftpd[85572]: Transfer complete. Feb 15 08:42:36 u ftpd[85572]: command: TYPE I Feb 15 08:42:36 u ftpd[85572]: <--- 200 Feb 15 08:42:36 u ftpd[85572]: Type set to I. Feb 15 08:42:36 u ftpd[85572]: command: SIZE base.aa Feb 15 08:42:36 u ftpd[85572]: <--- 213 Feb 15 08:42:36 u ftpd[85572]: 240640 Feb 15 08:42:36 u ftpd[85572]: command: EPSV Feb 15 08:42:36 u ftpd[85572]: <--- 229 Feb 15 08:42:36 u ftpd[85572]: Entering Extended Passive Mode (|||1698|) Feb 15 08:42:36 u ftpd[85572]: command: RETR base.aa Feb 15 08:42:36 u ftpd[85572]: <--- 150 Feb 15 08:42:36 u ftpd[85572]: Opening BINARY mode data connection for 'base.aa' (240640 bytes). 4.x client issues 'NLST' but 5.x client not; that's the problem. I'm also sure that nothing has changed on my side (actually I'm sleeping at that time :-). -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 17: 0:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E453B37B406 for ; Fri, 14 Feb 2003 17:00:21 -0800 (PST) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A38643FE1 for ; Fri, 14 Feb 2003 17:00:11 -0800 (PST) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 81A7B51999; Sat, 15 Feb 2003 11:30:09 +1030 (CST) Date: Sat, 15 Feb 2003 11:30:09 +1030 From: Greg 'groggy' Lehey To: Dag-Erling Smorgrav Cc: Alfred Perlstein , current@freebsd.org Subject: Re: fix: lock order reversal proc/filedesc. Message-ID: <20030215010009.GB83043@wantadilla.lemis.com> References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RASg3xLB4tUQ4RcS" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --RASg3xLB4tUQ4RcS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Friday, 14 February 2003 at 12:23:48 +0100, Dag-Erling Smorgrav wrote: > Alfred Perlstein writes: >> What exactly is broken about dumps for you on ata? > > Well, after you told me that "call dumpsys" is no longer kosher (when > did that happen, and where was it documented?), I tried 'call doadump': > > # Debugger("manual escape to debugger") > Stopped at Debugger+0x50: xchgl %ebx,in_Debugger.0 > db> call doadump > Dumping 511 MB > ata1: resetting devices .. > Context switches not allowed in the debugger. > db> call cpu_reset > > Makes me want to get my Norwegian Sword [tm] and make a short trip to > Denmark. > > It is becoming increasingly clear to me that the majority of FreeBSD > developers don't really care if their code works, as long as they get > the credit (and / or paycheck) for committing it. I think that's unnecessarily rude. Greg -- See complete headers for address and phone numbers --RASg3xLB4tUQ4RcS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE+TZEZIubykFB6QiMRAuaJAJwJOoWpgiIQOuF4A8YPxBecQ09YfQCfbVvJ hx/QIxv6zVcoer/MOvtCVqQ= =dbOq -----END PGP SIGNATURE----- --RASg3xLB4tUQ4RcS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 18:49:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D2CD37B405 for ; Fri, 14 Feb 2003 18:49:47 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEA0443F3F for ; Fri, 14 Feb 2003 18:49:43 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1F2neIW001209 for ; Sat, 15 Feb 2003 04:49:40 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1F2ndHR001196 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 15 Feb 2003 04:49:40 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1F2ndIT001191; Sat, 15 Feb 2003 04:49:39 +0200 (EET) Date: Sat, 15 Feb 2003 04:49:39 +0200 From: Ruslan Ermilov To: current@freebsd.org, developers@freebsd.org Subject: ACPI thermal panics ThinkPad 600X Message-ID: <20030215024939.GB765@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XOIedfhf+7KOe/yw" Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --XOIedfhf+7KOe/yw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable ACPI thermal panics my ThinkPad 600X, is anyone interested in a crash dump analysis? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --XOIedfhf+7KOe/yw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TarDUkv4P6juNwoRAoXRAJ9uBoinq0XkswRXxFCjSWGpZrROKACgh71A K7xpY7+jA9rMjhwQmQGobgM= =b4zr -----END PGP SIGNATURE----- --XOIedfhf+7KOe/yw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 18:51:23 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FA6B37B401; Fri, 14 Feb 2003 18:51:22 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id F410843FA3; Fri, 14 Feb 2003 18:51:20 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 2FE7E679DC; Fri, 14 Feb 2003 18:51:19 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 0BF7F1081; Fri, 14 Feb 2003 18:51:19 -0800 (PST) Date: Fri, 14 Feb 2003 18:51:19 -0800 From: Kris Kennaway To: Kirk McKusick Cc: Kris Kennaway , current@FreeBSD.ORG, fs@FreeBSD.ORG, iedowse@FreeBSD.ORG Subject: Re: INVARIANTS-related fs panic on alpha Message-ID: <20030215025118.GA5172@rot13.obsecurity.org> References: <20030214235413.GA4079@rot13.obsecurity.org> <200302150053.h1F0r7FL044055@beastie.mckusick.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline In-Reply-To: <200302150053.h1F0r7FL044055@beastie.mckusick.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Feb 14, 2003 at 04:53:07PM -0800, Kirk McKusick wrote: > I have tried running my test machine out of filesystem space > (repeatedly) and have not been able to get this panic. I will > keep running that test in the hopes that it will show up. In > the meantime, if you can come up with an example that reliably > triggers it, that would be most helpful. Hmm. The machines that have panicked are likely to have been under extreme disk load at the time they ran out of space (e.g. extracting several dozen large tarballs simultaneously) [1]. I'll have to see if I can trigger this. Kris [1] Due to the stupidity of the bento package build scheduler and various other contributing factors. --FL5UXtIhxfXey3p5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TasmWry0BWjoQKURAtNiAKC9YIWbrR04cLEdBmmwLLcmSIpFPACeNYUZ uB2sjZ6LJsPwcS4tJ4IvV14= =5iru -----END PGP SIGNATURE----- --FL5UXtIhxfXey3p5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 18:51:32 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F95237B401; Fri, 14 Feb 2003 18:51:31 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0869F43FAF; Fri, 14 Feb 2003 18:51:27 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com ([192.168.0.5]) by pittgoth.com (8.12.6/8.12.6) with SMTP id h1F2pQfI050730; Fri, 14 Feb 2003 21:51:26 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Fri, 14 Feb 2003 21:51:43 -0500 From: Tom Rhodes To: Ruslan Ermilov Cc: current@FreeBSD.org, developers@FreeBSD.org Subject: Re: ACPI thermal panics ThinkPad 600X Message-Id: <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> In-Reply-To: <20030215024939.GB765@sunbay.com> References: <20030215024939.GB765@sunbay.com> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003 04:49:39 +0200 Ruslan Ermilov wrote: > ACPI thermal panics my ThinkPad 600X, is anyone > interested in a crash dump analysis? > > ACPI gives me hell on my IBM Thinkpad A31, also. Yet since it does not crash anything I just leave it be waiting for the day when the ACPI hackers have time to fix it :) -- Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 19:45:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D6BD37B401; Fri, 14 Feb 2003 19:45:09 -0800 (PST) Received: from garple.migus.org (pcp243391pcs.howard01.md.comcast.net [68.55.83.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CFEC43F85; Fri, 14 Feb 2003 19:45:08 -0800 (PST) (envelope-from adam@migus.org) Received: from migus.org (ph8qk4krxxrxmiy5@garple.migus.org [192.168.4.4]) by garple.migus.org (8.12.6/8.12.6) with SMTP id h1F3j7Ca001571; Fri, 14 Feb 2003 22:45:07 -0500 (EST) (envelope-from adam@migus.org) Received: from 192.168.4.1 (SquirrelMail authenticated user adam) by mail.migus.org with HTTP; Fri, 14 Feb 2003 22:45:07 -0500 (EST) Message-ID: <49288.192.168.4.1.1045280707.squirrel@mail.migus.org> Date: Fri, 14 Feb 2003 22:45:07 -0500 (EST) Subject: Re: 5-STABLE Roadmap From: "Adam Migus" To: In-Reply-To: <200302140036.h1E0aK3q071051@freefall.freebsd.org> References: <200302140036.h1E0aK3q071051@freefall.freebsd.org> X-Priority: 3 Importance: Normal Cc: X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Status: No, hits=-5.9 required=5.7 tests=AWL,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SPAM_PHRASE_00_01 version=2.41 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > - Benchmarks and performance testing - Having a source of > reliable and > useful benchmarks is essential to identifying performance > problems and guarding against performance regressions. A > 'performance team' that is made up of people and resources > for formulating, developing, and executing benchmark tests > should be put into place soon. > Comparisons should be made against both FreeBSD 4.x and > Linux 2.4.x. Tests to consider are: > - the classic 'worldstone' > - webstone - /usr/ports/www/webstone > - Fstress - http://www.cs.duke.edu/ari/fstress > - ApacheBench - /usr/ports/www/p5-ApacheBench > - netperf - /usr/ports/benchmarks/netperf I don't wanna argue about which benchmark is better I just wanna sign up for the team. I do performance testing for the TrustedBSD Project. I have employer supplied hardware and time slated to perf testing. While I can't get paid to test non TrustedBSD testing, I can use the hardware (on my own time) to test. I'm more than happy to do that. -- Adam Migus - Research Scientist Network Associates Laboratories (http://www.nailabs.com) TrustedBSD (http://www.trustedbsd.org) FreeBSD (http://www.freebsd.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Feb 14 22:20:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FEC937B401; Fri, 14 Feb 2003 22:20:04 -0800 (PST) Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A0DE43FBF; Fri, 14 Feb 2003 22:20:03 -0800 (PST) (envelope-from ken@panzer.kdm.org) Received: from panzer.kdm.org (localhost [127.0.0.1]) by panzer.kdm.org (8.12.6/8.12.5) with ESMTP id h1F6K2nU071644; Fri, 14 Feb 2003 23:20:02 -0700 (MST) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.12.6/8.12.5/Submit) id h1F6K2Eh071643; Fri, 14 Feb 2003 23:20:02 -0700 (MST) (envelope-from ken) Date: Fri, 14 Feb 2003 23:20:02 -0700 From: "Kenneth D. Merry" To: scsi@FreeBSD.org, current@FreeBSD.org Cc: joe@FreeBSD.org, thomas@FreeBSD.org Subject: call for testers: cd(4) changes Message-ID: <20030214232001.A71462@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here are patches against -current to add automatic detection of CDROM drives that can't handle 6 byte mode sense and mode select: http://people.FreeBSD.org/~ken/scsi_cd.cmdsize.20030214 These patches will be checked in in a few days if I don't get any negative feedback. Things fixed/changed in this patchset: - Automatically detect CDROM drives that can't handle 6 byte mode sense and mode select, and adjust our command size accordingly. More information on that below. - MODE_SENSE and MODE_SELECT translation removed in ATAPICAM and in the umass(4) driver, since there's no way for that to work properly (see below). - Change the way the da(4) handles the no_6_byte sysctl. There is now a per-drive sysctl to set the minimum command size for that particular disk. (Since you could have multiple disks with multiple requirements in one system.) - Loader tunable support for all the sysctls in the da(4) and cd(4) drivers. - Add a CDIOCCLOSE ioctl (bde pointed this out a long time ago). - Add a media validation routine (cdcheckmedia()) to the cd(4) driver, to fix some problems bde pointed out a long time ago. We now allow open() to succeed no matter what, but if we don't detect valid media, the user can only issue CDIOCCLOSE or CDIOCEJECT ioctls. - The media validation routine also reads the table of contents off the drive. We use the table of contents to implement the CDIOCPLAYTRACKS ioctl using the PLAY AUDIO MSF command. The PLAY AUDIO TRACK INDEX command that we previously used was deprecated after SCSI-2. It works in every SCSI CDROM I've tried, but doesn't seem to work on ATAPI CDROM drives. We still use the play audio track index command if we don't have a valid TOC, but I suppose it'll fail anyway in that case. That's the last issue I know of with using ATAPI/firewire/USB drives with the ioctl interface. (firewire and USB drives are generally ATAPI drives underneath anyway) - Add _len() versions of scsi_mode_sense() and scsi_mode_select(). - Fix a couple of formatting problems in the sense printing code. I'd appreciate it if folks could test this, especially people with CDROM drives running via usb, firewire, or ATAPICAM, but also people with older SCSI CDROM drives. To test this, apply the patch and do the following: cdcontrol status cdcontrol info cdcontrol play (make sure audio comes out) cdcontrol next (make sure it skips to the next track here) If you get an error in response to 'cdcontrol next', definitely let me know what kind of drive you have (dmesg is fine) and how it is hooked up (SCSI, firewire, ATAPICAM, usb, etc.). Reports of success or failure are welcome. ======= Now for more details.... When we get an illegal request in response to a 6 byte mode sense or mode select, we reformat the command to be a 10-byte mode sense or mode select and reissue it. These patches also work with drives that do not return block descriptors (even when dbd is 0 in the mode sense command), and drives that return multiple block descriptors. (They work better with the former than the latter; with the latter, they mostly just bail out.) While commands like READ(6) and WRITE(6) can be translated down in the SIM driver, like the ATAPICAM and usb code do, MODE_SENSE(6) and MODE_SELECT(6) cannot be translated, because the 10-byte version of the parameter list is longer. This means that when, e.g., a MODE_SENSE(6) command is translated to a MODE_SENSE(10) command, the page will likely be truncated (unless more space is allocated than needed), and since the peripheral driver code isn't expecting the returned data to be in MODE_SENSE(10) format, it'll be looking in the wrong place for the mode page. The SIM drivers have no way of knowing how long the buffer is that they've been given for a mode sense or mode select, so they can't just up the dxfer_len, change the CDB and call it good. The only way to do translation effectively for these two commands is where the buffer was originally allocated -- in the peripheral driver. So I have implemented translation and 10-byte mode sense and mode select for the cd(4) driver. Why do translation? Why not just default to 10-byte commands? Because some SCSI CDROM drives, maybe quite a few, don't support 10 byte mode sense and mode select. (The 8x Plextor in my test box doesn't, for example.) The right way to do this, eventually, is with the CAM_NEW_TRAN_CODE. 6byte/10byte can be a function of the protocol, and we can hopefully select the right size command up front. It will take a lot of infrastructure work to make it happen, but that functionality will hopefully solve several problems. Since translation won't work at the SIM level, I have disabled MODE_SENSE(6) and MODE_SELECT translation in ATAPICAM and umass(4). Comments are welcome on the patches; they're more complicated than I would like, but unfortunately that complication seems necessary to get the desired functionality. Many thanks to David Kleiner for testing multiple iterations of these patches, he has been a big help. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 2:50: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 428A837B401; Sat, 15 Feb 2003 02:50:03 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2992E43F75; Sat, 15 Feb 2003 02:50:02 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1FAo0I2092440; Sat, 15 Feb 2003 11:50:00 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 11:50:00 +0100 (CET) From: Martin Blapp To: current@freebsd.org Cc: hackers@freebsd.org Subject: ACPI: working ACPI vs broken ACPI Message-ID: <20030215113219.J57358@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I see these differences here in acpidump: Working board: PM2_GPE0_BLK=0xe428-0xe42f Broken board: PM2_GPE0_BLK=0x428-0x42f PM2_GPE1_BLK=0x528-0x52f, GPE1_BASE=32 And the broken board shows errors like this: The errors like: Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE31 Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block1 defined as GPE32 to GPE63 ACPI-1287: *** Error: Method execution failed, AE_AML_BUFFER_LIMIT ACPI-1287: *** Error: Method execution failed, AE_AML_BUFFER_LIMIT ACPI-1287: *** Error: Method execution failed, AE_AML_BUFFER_LIMIT ACPI-1287: *** Error: Method execution failed, AE_AML_BUFFER_LIMIT Wild guess: Seem to result from this. If I'm looking at NetBSD's http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/acpi/acpi_ec.c they have a lot done since they took acpi from us. I'm sure it works for netbsd. Is anybody working on this ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 3:20:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 397D037B401; Sat, 15 Feb 2003 03:20:49 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.cuivre.fr.eu.org [62.212.105.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B30743FAF; Sat, 15 Feb 2003 03:20:48 -0800 (PST) (envelope-from thomas@FreeBSD.ORG) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 2BC402C3D3; Sat, 15 Feb 2003 12:20:46 +0100 (CET) Date: Sat, 15 Feb 2003 12:20:46 +0100 From: Thomas Quinot To: "Kenneth D. Merry" Cc: scsi@FreeBSD.org, current@FreeBSD.org, joe@FreeBSD.org, thomas@FreeBSD.org Subject: Re: call for testers: cd(4) changes Message-ID: <20030215112046.GA20707@melusine.cuivre.fr.eu.org> Reply-To: Thomas Quinot References: <20030214232001.A71462@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030214232001.A71462@panzer.kdm.org> User-Agent: Mutt/1.4i X-message-flag: WARNING! Using Outlook can damage your computer. Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Le 2003-02-15, Kenneth D. Merry écrivait : > - Automatically detect CDROM drives that can't handle 6 byte mode > sense and mode select, and adjust our command size accordingly. > More information on that below. > > - MODE_SENSE and MODE_SELECT translation removed in ATAPICAM and in > the umass(4) driver, since there's no way for that to work properly > (see below). I'm afraid things are not as simple as that. Unfortunately you cannot expect ATAPI drives to properly reject MODE_{SENSE,SELECT}_6 and try the _10 variants in that case: the reason why ATAPICAM inconditionnally translates the _6 commands into _10 is because some ATAPI drives have been found to lock up when they rececive the _6 commands, whereas the ATAPI specification only mandates the implementation of the _10 versions. > - The media validation routine also reads the table of contents off > the drive. Great! That could also allow the creation of per-track /dev nodes, as acd has. Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 4: 3:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE91837B401; Sat, 15 Feb 2003 04:03:23 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E632B43FBD; Sat, 15 Feb 2003 04:03:22 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 81C67536E; Sat, 15 Feb 2003 13:03:21 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Tom Rhodes Cc: Ruslan Ermilov , current@FreeBSD.org, developers@FreeBSD.org Subject: Re: ACPI thermal panics ThinkPad 600X From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 13:03:20 +0100 In-Reply-To: <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> (Tom Rhodes's message of "Fri, 14 Feb 2003 21:51:43 -0500") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030215024939.GB765@sunbay.com> <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tom Rhodes writes: > Ruslan Ermilov wrote: > > ACPI thermal panics my ThinkPad 600X, [...] > ACPI gives me hell on my IBM Thinkpad A31, also. [...] This is just the last in a long series of Thinkpad f***ups. I concluded long ago that ThinkPads are nothing but trouble: buggy BIOSes; broken charge controllers that will ruin a brand new battery in weeks; keyboard / trackpoint assemblies with a one-year MTBF; broken APM and / or ACPI; docking stations that render the machine unusable until you reset and reconfigure the BIOS, etc. Unfortunately I can't afford a new laptop, so I'm stuck with my 600E. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 4:24: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0DC137B401 for ; Sat, 15 Feb 2003 04:24:04 -0800 (PST) Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB1B43FBD for ; Sat, 15 Feb 2003 04:24:04 -0800 (PST) (envelope-from Gerald.Mixa@symicon.de) Received: from fwd04.sul.t-online.de by mailout10.sul.t-online.com with smtp id 18k1MR-0000T4-05; Sat, 15 Feb 2003 13:24:03 +0100 Received: from hannibal (320041486579-0001@[217.84.82.207]) by fmrl04.sul.t-online.com with esmtp id 18k1MI-1WW9GSC; Sat, 15 Feb 2003 13:23:54 +0100 From: Gerald Mixa (by way of Gerald Mixa ) Subject: Wireless LAN Date: Sat, 15 Feb 2003 13:23:51 +0100 User-Agent: KMail/1.5 To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302151323.51745.Gerald.Mixa@symicon.de> X-Sender: 320041486579-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, does anybody know wether FreeBSD 5.0 supports Wirless Lan cards based on a TI chip. This standard is called 802.11b+ and is said to have 22MBit/s. Sincerley Gerald Mixa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 6:28: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FA3837B401; Sat, 15 Feb 2003 06:28:04 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4142443F85; Sat, 15 Feb 2003 06:28:03 -0800 (PST) (envelope-from winter@jurai.net) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.6/8.12.5) with ESMTP id h1FES1vA034912; Sat, 15 Feb 2003 09:28:01 -0500 (EST) (envelope-from winter@jurai.net) Date: Sat, 15 Feb 2003 09:28:01 -0500 (EST) From: "Matthew N. Dodd" To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: sys/pci/if* fixes In-Reply-To: Message-ID: <20030215092452.E73971@sasami.jurai.net> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, Nate Lawson wrote: > Also, except for xl, all drivers have a common cleanup on error in > attach that backs out allocated resources with no assumptions about the > order they were allocated in. Please see if_pcn.c for the correct approach to freeing resources; its not necessary to wrap evrything in 'if (sc && error != 0) {}'. If execution reaches the 'fail' label then you assume that is what happened. I also think you should just drop and reaquire locks around the bus_setup_intr() rather than moving code around. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 6:46:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1836B37B401 for ; Sat, 15 Feb 2003 06:46:52 -0800 (PST) Received: from comp.chem.msu.su (comp-ext.chem.msu.su [158.250.32.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 152DF43F93 for ; Sat, 15 Feb 2003 06:46:50 -0800 (PST) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.12.3/8.12.3) with ESMTP id h1FEkksA050537; Sat, 15 Feb 2003 17:46:47 +0300 (MSK) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.12.3/8.12.3/Submit) id h1FEkbnQ050536; Sat, 15 Feb 2003 17:46:37 +0300 (MSK) (envelope-from yar) Date: Sat, 15 Feb 2003 17:46:37 +0300 From: Yar Tikhiy To: Kris Kennaway Cc: current@FreeBSD.ORG, buildadm@jp.FreeBSD.org Subject: Re: FTP and command-line multiple downloads Message-ID: <20030215144637.GA45693@comp.chem.msu.su> References: <20030214233406.GA3814@rot13.obsecurity.org> <20030214233749.GB3888@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214233749.GB3888@rot13.obsecurity.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 03:37:49PM -0800, Kris Kennaway wrote: > On Fri, Feb 14, 2003 at 03:34:06PM -0800, Kris Kennaway wrote: > > Since upgrading bento to running 5.0, it appears that I can no longer > > download multiple files from a FTP server by specifying a glob pattern > > on the command-line: > > > > e.g. > > > > /usr/bin/ftp -4a ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/alpha/5-LATEST/base/base.\?\? > > This appears to work (as it used to) under 4.x. As far as I can see, this is a client-side problem of CURRENT's ftp(1). FreeBSD ftp(1) was completely replaced with "lukemftp," ftp client from NetBSD, in CURRENT a year ago. The commit message was promising: ...Lukemftp supports most of the previous features of FreeBSD ftp, but has been better maintained and includes new features. Unfortunately, this particular feature doesn't fall into that most; "lukemftp" can't seem to detect a glob pattern on the command line. It is said that lukem@netbsd is very responsive, so the matter depends on finding somebody to make a patch and sumbit it to him, and waiting until the patch is merged back to our src/contrib/ along with other "lukemftp" updates. If the advocates of "lukemftp" don't do the job, I think I will do it by myself since I've already volunteered to look after ftpd(8). -- Yar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 6:48:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5082437B401; Sat, 15 Feb 2003 06:48:34 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6052A43F75; Sat, 15 Feb 2003 06:48:33 -0800 (PST) (envelope-from winter@jurai.net) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.6/8.12.5) with ESMTP id h1FEmWvA035310; Sat, 15 Feb 2003 09:48:32 -0500 (EST) (envelope-from winter@jurai.net) Date: Sat, 15 Feb 2003 09:48:32 -0500 (EST) From: "Matthew N. Dodd" To: Dag-Erling Smorgrav Cc: Tom Rhodes , Ruslan Ermilov , current@FreeBSD.org, developers@FreeBSD.org Subject: Re: ACPI thermal panics ThinkPad 600X In-Reply-To: Message-ID: <20030215094620.C73971@sasami.jurai.net> References: <20030215024939.GB765@sunbay.com> <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Dag-Erling Smorgrav wrote: > Unfortunately I can't afford a new laptop, so I'm stuck with my 600E. APM works fine on the 600E. The latest BIOS updates and new model main batteries seem to solve most of the battery complaints. My only outstanding issue is that I can't suspend if an application is holding /dev/dsp or /dev/audio open. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 8:41:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77E6E37B401 for ; Sat, 15 Feb 2003 08:41:42 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB9F643FB1 for ; Sat, 15 Feb 2003 08:41:38 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1FGfZfw074513 for ; Sat, 15 Feb 2003 18:41:35 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1FGfYHR074500 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 15 Feb 2003 18:41:35 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1FGfTHK074491; Sat, 15 Feb 2003 18:41:29 +0200 (EET) Date: Sat, 15 Feb 2003 18:41:29 +0200 From: Ruslan Ermilov To: "Matthew N. Dodd" Cc: Dag-Erling Smorgrav , Tom Rhodes , current@freebsd.org, developers@freebsd.org Subject: Re: ACPI thermal panics ThinkPad 600X Message-ID: <20030215164129.GA73629@sunbay.com> References: <20030215024939.GB765@sunbay.com> <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> <20030215094620.C73971@sasami.jurai.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline In-Reply-To: <20030215094620.C73971@sasami.jurai.net> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 09:48:32AM -0500, Matthew N. Dodd wrote: > On Sat, 15 Feb 2003, Dag-Erling Smorgrav wrote: > > Unfortunately I can't afford a new laptop, so I'm stuck with my 600E. >=20 > APM works fine on the 600E. The latest BIOS updates and new model main > batteries seem to solve most of the battery complaints. >=20 > My only outstanding issue is that I can't suspend if an application is > holding /dev/dsp or /dev/audio open. >=20 Hmm, is this on -CURRENT or -STABLE? I can't get apm(4) working on 600X with -CURRENT; the module loading has some problems and even if I compile apm statically, no /dev/apm* entries are created. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --W/nzBZO5zC0uMSeA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Tm24Ukv4P6juNwoRAqvoAJ4wdXm0s9G7dPIBY7+NvkUAP34vpgCeONYX VmR8e9+nLwGUI4dCixWG6yY= =5V8V -----END PGP SIGNATURE----- --W/nzBZO5zC0uMSeA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 9:26:18 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9B0437B401 for ; Sat, 15 Feb 2003 09:26:17 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7202B43FAF for ; Sat, 15 Feb 2003 09:26:16 -0800 (PST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1FHQFI2031082 for ; Sat, 15 Feb 2003 18:26:15 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 15 Feb 2003 18:26:15 +0100 (CET) From: Martin Blapp To: current@freebsd.org Subject: Re: USB kernel module broken ... In-Reply-To: <20030214170155.G44623@cvs.imp.ch> Message-ID: <20030215182448.E57358@cvs.imp.ch> References: <20030214170155.G44623@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry guys, > take USB out of the GENERIC kernel. It should also not > be enabled I had a bad days yesterday. Sorry for this mail ... If you have your birthday and a box refuses to work completly, it can really be frustrating. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 9:57:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22C2637B401 for ; Sat, 15 Feb 2003 09:57:25 -0800 (PST) Received: from silicon.nocdirect.com (silicon.nocdirect.com [66.227.56.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F9B743F3F for ; Sat, 15 Feb 2003 09:57:24 -0800 (PST) (envelope-from pahowes@fair-ware.com) Received: from h00e081502390.ne.client2.attbi.com ([66.30.212.150] helo=beast) by silicon.nocdirect.com with asmtp (Exim 3.36 #1) id 18k6XD-0003t4-00 for freebsd-current@FreeBSD.org; Sat, 15 Feb 2003 11:55:31 -0600 Reply-To: From: "Paul A. Howes" To: Subject: A couple of 5.0-RELEASE bugs... Date: Sat, 15 Feb 2003 12:57:20 -0500 Organization: Fairware Message-ID: <001301c2d51b$b114d140$0200a8c0@howesnet> 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.4024 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think I may have found a few bugs in 5.0 that need to be addressed. The first problem is with GCC, which means it may not be FreeBSD-specific. I build world and kernel with the CPUTYPE flag set to "p4" in /etc/make.conf, then installed it. Everything seemed to work fine, except periodically "make" and "as" would crash: make with a signal 10 and as with a signal 11. There was no rhyme or reason to the timing. I could re-run the same compilation with no error the next time through. On a whim, I removed the CPUTYPE flag from make.conf and rebuilt/reinstalled binutils and cc. After that, everything seemed to work fine. Just to be safe, I rebuilt and installed both world and kernel without the "p4" modifier. The second problem is related to the "NOMANCOMPRESS" flag in make.conf. When installing the XFree86-4 port, I found that the "install" and "package" targets would stop with an error saying that they couldn't find gzip'd versions of the man pages. Of course that made sense when I specifically didn't want the man pages compressed! I think some of the scripts are not paying attention to that flag. If there's anything that I can do to help further investigate either of these, please let me know. -- Paul A. Howes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 10: 9:29 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 359E237B401 for ; Sat, 15 Feb 2003 10:09:28 -0800 (PST) Received: from seed.net.tw (sn14.seed.net.tw [139.175.54.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75EC943FBD for ; Sat, 15 Feb 2003 10:09:26 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.134.32] (port=49422 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18k6kf-000Iif-00 for freebsd-current@freebsd.org; Sun, 16 Feb 2003 02:09:25 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1FI9OLj006124 for ; Sun, 16 Feb 2003 02:09:25 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1FI9OrM006123 for freebsd-current@freebsd.org; Sun, 16 Feb 2003 02:09:24 +0800 (CST) Date: Sun, 16 Feb 2003 02:09:24 +0800 From: leafy To: freebsd-current@freebsd.org Subject: gcc3.2.2 import might have trashed ld-elf.so.1 Message-ID: <20030215180924.GA6102@leafy.idv.tw> Mail-Followup-To: freebsd-current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I rebuilt and installed world on Friday and reinstalled ALL my ports with 'portupgrade -ra'. I have found the exact line that will trigger the ld "undefined symbol" error. /usr/X11R6/bin/uic -nounload -tr tr2i18n -i htmlpageinfo.h ./htmlpageinfo.ui > htmlpageinfo.cc.temp ; ret=$?; sed -e "s,tr2i18n( \"\" ),QString::null,g" htmlpageinfo.cc.temp | sed -e "s,tr2i18n( \"\"\, \"\" ),QString::null,g" | sed -e "s,image\([0-9][0-9]*\)_data,img\1_htmlpageinfo,g" >> htmlpageinfo.cc ; rm -f htmlpageinfo.cc.temp ; if test "$ret" = 0; then echo '#include "htmlpageinfo.moc"' >>htmlpageinfo.cc; else rm -f htmlpageinfo.cc ; exit $ret ; fi Error is: /usr/libexec/ld-elf.so.1: /usr/X11R6/plugins/designer/libwizards.so: Undefined symbol "_Z22qCleanupImages_wizardsv" Grepping the corresponding library: leafy@leafy:/usr/X11R6/plugins/designer$ nm libwizards.so |grep Z22 000256f0 T _Z22qCleanupImages_wizardsv So ld is not finding a symbol which is in the correct library. Jiawei Ye -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 10:10:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4A737B401 for ; Sat, 15 Feb 2003 10:10:13 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A67E43FBD for ; Sat, 15 Feb 2003 10:10:12 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 91ADC536F; Sat, 15 Feb 2003 19:10:09 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Cc: Subject: Re: A couple of 5.0-RELEASE bugs... From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 19:10:09 +0100 In-Reply-To: <001301c2d51b$b114d140$0200a8c0@howesnet> ("Paul A. Howes"'s message of "Sat, 15 Feb 2003 12:57:20 -0500") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <001301c2d51b$b114d140$0200a8c0@howesnet> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Paul A. Howes" writes: > The first problem is with GCC, which means it may not be > FreeBSD-specific. I build world and kernel with the CPUTYPE flag set to > "p4" in /etc/make.conf, then installed it. Don't Do That [tm]. There seem to be bugs in gcc which cause it to produce broken binaries when asked to optimize for recent Intel processors. There's not much we can do about this except wait for the gcc developers to find and fix these bugs, unless you can figure out exactly which handful of assembler instructions are at fault. > The second problem is related to the "NOMANCOMPRESS" flag in make.conf. > When installing the XFree86-4 port, I found that the "install" and > "package" targets would stop with an error saying that they couldn't > find gzip'd versions of the man pages. Of course that made sense when I > specifically didn't want the man pages compressed! I think some of the > scripts are not paying attention to that flag. Most port developers never test their ports with NOMANCOMPRESS; most of them probably aren't even aware of NOMANCOMPRESS. I don't really see the point with it except on slow machines with plenty of disk space (compressed man pages will probably load faster because disk I/O is far more expensive than the CPU time required to decompress them) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 10:28:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9A2B37B401 for ; Sat, 15 Feb 2003 10:28:47 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C8743F85 for ; Sat, 15 Feb 2003 10:28:47 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FISj6E023611 for ; Sat, 15 Feb 2003 18:28:46 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FISjdL011278 for ; Sat, 15 Feb 2003 19:28:45 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: current@freebsd.org Subject: make depend broken in cpp0 From: Poul-Henning Kamp Date: Sat, 15 Feb 2003 19:28:45 +0100 Message-ID: <11277.1045333725@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I installed 5.0-R on my new alpha (Thanks Wilko!) and tried to run a buildworld. It explodes in make depend in cpp0: #cd /usr/src/gnu/usr.bin/cc/cpp0 #make obj #make depend [...] mkdep -f .depend -a -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" -I/usr/obj/usr /src/gnu/usr.bin/cc/cpp0/../cc_tools -I/usr/src/gnu/usr.bin/cc/cpp0/../cc_tools -I/usr/src/gnu/usr.bin/cc/cpp0/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc /cpp0/../../../../contrib/gcc/config /usr/src/gnu/usr.bin/cc/cpp0/../../../../c ontrib/gcc/cppmain.c c-parse+%DIKED.c /usr/src/gnu/usr.bin/cc/cpp0/../../../../c ontrib/gcc/c-lang.c /usr/src/gnu/usr.bin/cc/cpp0/../../../../contrib/gcc/c-decl. c /usr/src/contrib/gcc/cppmain.c:24:20: config.h: No such file or directory In file included from /usr/src/contrib/gcc/cppmain.c:25: /usr/src/contrib/gcc/system.h:110:24: safe-ctype.h: No such file or directory In file included from /usr/src/contrib/gcc/hashtable.h:21, from /usr/src/contrib/gcc/cpplib.h:27, from /usr/src/contrib/gcc/cppmain.c:26: /usr/src/contrib/gcc/obstack.h:157:40: attempt to use poisoned "bcopy" c-parse.y:34:20: config.h: No such file or directory In file included from c-parse.y:35: /usr/src/contrib/gcc/system.h:110:24: safe-ctype.h: No such file or directory In file included from c-parse.y:36: /usr/src/contrib/gcc/tree.h:332:24: tree-check.h: No such file or directory In file included from /usr/src/contrib/gcc/hashtable.h:21, from /usr/src/contrib/gcc/tree.h:775, from c-parse.y:36: /usr/src/contrib/gcc/obstack.h:157:40: attempt to use poisoned "bcopy" /usr/src/contrib/gcc/c-lang.c:23:20: config.h: No such file or directory In file included from /usr/src/contrib/gcc/c-lang.c:24: /usr/src/contrib/gcc/system.h:110:24: safe-ctype.h: No such file or directory [...] -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 10:32:34 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B98E137B401 for ; Sat, 15 Feb 2003 10:32:32 -0800 (PST) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B73443FA3 for ; Sat, 15 Feb 2003 10:32:32 -0800 (PST) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.3/8.12.3) with ESMTP id h1FIWS6F004239; Sat, 15 Feb 2003 10:32:28 -0800 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.3/8.12.3/Submit) id h1FIWRDL004238; Sat, 15 Feb 2003 10:32:27 -0800 Date: Sat, 15 Feb 2003 10:32:27 -0800 From: Brooks Davis To: Gerald Mixa Cc: current@FreeBSD.ORG Subject: Re: Wireless LAN Message-ID: <20030215103227.A2104@Odin.AC.HMC.Edu> References: <200302151323.51745.Gerald.Mixa@symicon.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302151323.51745.Gerald.Mixa@symicon.de>; from Gerald.Mixa@symicon.de on Sat, Feb 15, 2003 at 01:23:51PM +0100 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 01:23:51PM +0100, Gerald Mixa wrote: > Hi, >=20 > does anybody know wether FreeBSD 5.0 supports Wirless Lan cards based on = a TI > chip. This standard is called 802.11b+ and is said to have 22MBit/s. They are not supported. -- 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 --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+Toe7XY6L6fI4GtQRAsNAAKDPBwg+nVTPeuEyzz/8nZjELAxebwCeP+4b JH6uNOz0P+T2/R6olJ2LoJg= =38rn -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 11:14: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EB8037B401; Sat, 15 Feb 2003 11:13:59 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BEE43FB1; Sat, 15 Feb 2003 11:13:56 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1FJDsRj013347; Sat, 15 Feb 2003 11:13:54 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1FJCcHI013346; Sat, 15 Feb 2003 11:12:38 -0800 (PST) Date: Sat, 15 Feb 2003 11:12:38 -0800 From: "David O'Brien" To: "Greg 'groggy' Lehey" Cc: Dag-Erling Smorgrav , current@FreeBSD.org Subject: Re: fix: lock order reversal proc/filedesc. Message-ID: <20030215191238.GA10953@dragon.nuxi.com> Reply-To: current@FreeBSD.org Mail-Followup-To: David O'Brien , Greg 'groggy' Lehey , Dag-Erling Smorgrav , current@freebsd.org References: <20030214103808.GE93252@elvis.mu.org> <20030214110403.GF93252@elvis.mu.org> <20030215010009.GB83043@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215010009.GB83043@wantadilla.lemis.com> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 11:30:09AM +1030, Greg 'groggy' Lehey wrote: > > It is becoming increasingly clear to me that the majority of FreeBSD > > developers don't really care if their code works, as long as they get > > the credit (and / or paycheck) for committing it. > > I think that's unnecessarily rude. I don't see what is so rude about DES's last paragraph. He is simply expressing his opinion about quality and why it happens. Have we really become this PC??? Geez! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 11:27: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BA9637B401 for ; Sat, 15 Feb 2003 11:27:06 -0800 (PST) Received: from raptor.cigb.edu.cu (raptor.cigb.edu.cu [216.72.24.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E4AD43FDD for ; Sat, 15 Feb 2003 11:27:02 -0800 (PST) (envelope-from erik.torres@cigb.edu.cu) Received: from atlas.cigb.edu.cu ([172.16.1.12]) by raptor.cigb.edu.cu with Microsoft SMTPSVC(5.0.2195.5329); Sat, 15 Feb 2003 14:26:56 -0500 Received: from Unknown [172.16.1.4] by atlas.cigb.edu.cu - SurfControl E-mail Filter (4.5); Saturday, 15 February 2003, 14:26:52 Message-ID: From: "Erik Torres Serrano" To: Date: Sat, 15 Feb 2003 14:26:51 -0500 Subject: NFS server vs YO MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 X-MS-Has-Attach: X-MS-TNEF-Correlator: content-class: urn:content-classes:message Thread-Topic: NFS server vs YO Thread-Index: AcLVKDEYKZVOtP1RTQaP+HdmyjlB4w== X-OriginalArrivalTime: 15 Feb 2003 19:26:56.0204 (UTC) FILETIME=[33AAE0C0:01C2D528] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, this is my first incursion on FreeBSD, I came from the Linux world.= =20 My question is: are any of you having problems with the NFS server? I follo= w all the instructions of the handbook packed with FreeBSD 5.0-RELEASE but = I can't export anything. Both nfsd and rpcbind are running on my system, /etc/hosts.allow is configu= red to allow all connections and /etc/export is configured to export a dire= ctory to other PC with no aditional options. When I try "mount myPC:/export= /mnt" the following error raise: [udp] myPC:/export permission denied Other significants checks are: sockstat -4 root nfsd 367 3 tcp4 *:2049 *:* root rpcbind 282 9 udp4 *:111 *:* root rpcbind 282 10 udp4 *:1022 *:* root rpcbind 282 11 tcp4 *:111 *:* Any idea? Erik To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 11:33:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F344F37B401 for ; Sat, 15 Feb 2003 11:33:55 -0800 (PST) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2155043FBF for ; Sat, 15 Feb 2003 11:33:55 -0800 (PST) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) by alpha.siliconlandmark.com (8.12.6/8.12.6) with ESMTP id h1FJXk61020491; Sat, 15 Feb 2003 14:33:46 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by alpha.siliconlandmark.com (8.12.6/8.12.6/Submit) with ESMTP id h1FJXj71020481; Sat, 15 Feb 2003 14:33:45 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Sat, 15 Feb 2003 14:33:45 -0500 (EST) From: Andre Guibert de Bruet To: Erik Torres Serrano Cc: freebsd-current@FreeBSD.ORG Subject: Re: NFS server vs YO In-Reply-To: Message-ID: <20030215143210.J77240@alpha.siliconlandmark.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Erik, Place your filesystem export configuration in /etc/exports. Regards, > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > On Sat, 15 Feb 2003, Erik Torres Serrano wrote: > Hi all, this is my first incursion on FreeBSD, I came from the Linux world. > > My question is: are any of you having problems with the NFS server? I follow all the instructions of the handbook packed with FreeBSD 5.0-RELEASE but I can't export anything. > > Both nfsd and rpcbind are running on my system, /etc/hosts.allow is configured to allow all connections and /etc/export is configured to export a directory to other PC with no aditional options. When I try "mount myPC:/export /mnt" the following error raise: > > [udp] myPC:/export permission denied > > Other significants checks are: > > sockstat -4 > > root nfsd 367 3 tcp4 *:2049 *:* > root rpcbind 282 9 udp4 *:111 *:* > root rpcbind 282 10 udp4 *:1022 *:* > root rpcbind 282 11 tcp4 *:111 *:* > > Any idea? > > Erik > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 11:36:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A02937B401 for ; Sat, 15 Feb 2003 11:36:11 -0800 (PST) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 659E543FA3 for ; Sat, 15 Feb 2003 11:36:10 -0800 (PST) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) by alpha.siliconlandmark.com (8.12.6/8.12.6) with ESMTP id h1FJa261025548; Sat, 15 Feb 2003 14:36:02 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by alpha.siliconlandmark.com (8.12.6/8.12.6/Submit) with ESMTP id h1FJa2Lf025545; Sat, 15 Feb 2003 14:36:02 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Sat, 15 Feb 2003 14:36:02 -0500 (EST) From: Andre Guibert de Bruet To: Erik Torres Serrano Cc: freebsd-current@FreeBSD.ORG Subject: Re: NFS server vs YO In-Reply-To: Message-ID: <20030215143508.O77240@alpha.siliconlandmark.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Erik Torres Serrano wrote: > Hi all, this is my first incursion on FreeBSD, I came from the Linux world. > > My question is: are any of you having problems with the NFS server? I follow all the instructions of the handbook packed with FreeBSD 5.0-RELEASE but I can't export anything. > > Both nfsd and rpcbind are running on my system, /etc/hosts.allow is configured to allow all connections and /etc/export is configured to export a directory to other PC with no aditional options. When I try "mount myPC:/export /mnt" the following error raise: > > [udp] myPC:/export permission denied > > Other significants checks are: > > sockstat -4 > > root nfsd 367 3 tcp4 *:2049 *:* > root rpcbind 282 9 udp4 *:111 *:* > root rpcbind 282 10 udp4 *:1022 *:* > root rpcbind 282 11 tcp4 *:111 *:* > > Any idea? Also, don't forget to kill -HUP mountd after editing your exports file. Regards, > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 11:44:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B70E37B401 for ; Sat, 15 Feb 2003 11:44:41 -0800 (PST) Received: from raptor.cigb.edu.cu (raptor.cigb.edu.cu [216.72.24.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE77C43FA3 for ; Sat, 15 Feb 2003 11:44:38 -0800 (PST) (envelope-from erik.torres@cigb.edu.cu) Received: from atlas.cigb.edu.cu ([172.16.1.12]) by raptor.cigb.edu.cu with Microsoft SMTPSVC(5.0.2195.5329); Sat, 15 Feb 2003 14:44:35 -0500 Received: from Unknown [172.16.1.4] by atlas.cigb.edu.cu - SurfControl E-mail Filter (4.5); Saturday, 15 February 2003, 14:44:31 Message-ID: From: "Erik Torres Serrano" To: Date: Sat, 15 Feb 2003 14:44:30 -0500 Subject: RE: NFS server vs YO MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 X-MS-Has-Attach: X-MS-TNEF-Correlator: content-class: urn:content-classes:message Thread-Topic: NFS server vs YO Thread-Index: AcLVKX/NfbyqlBrgQsqOeM8ttjF93gAAPD9h X-OriginalArrivalTime: 15 Feb 2003 19:44:35.0775 (UTC) FILETIME=[AB3894F0:01C2D52A] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yes, I reload the demon and also place my exports in /etc/exports. Erik > Hi all, this is my first incursion on FreeBSD, I came from the Linux worl= d. > > My question is: are any of you having problems with the NFS server? I fol= low all the instructions of the handbook packed with FreeBSD 5.0-RELEASE bu= t I can't export anything. > > Both nfsd and rpcbind are running on my system, /etc/hosts.allow is confi= gured to allow all connections and /etc/export is configured to export a di= rectory to other PC with no aditional options. When I try "mount myPC:/expo= rt /mnt" the following error raise: > > [udp] myPC:/export permission denied > > Other significants checks are: > > sockstat -4 > > root nfsd 367 3 tcp4 *:2049 *:* > root rpcbind 282 9 udp4 *:111 *:* > root rpcbind 282 10 udp4 *:1022 *:* > root rpcbind 282 11 tcp4 *:111 *:* > > Any idea? Also, don't forget to kill -HUP mountd after editing your exports file. Regards, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:16:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06F4037B401 for ; Sat, 15 Feb 2003 13:16:35 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1287E43FBF for ; Sat, 15 Feb 2003 13:16:29 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1FLGMhE097458 for ; Sat, 15 Feb 2003 23:16:22 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1FLGMHR097445 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 15 Feb 2003 23:16:22 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1FLGDKv097432; Sat, 15 Feb 2003 23:16:13 +0200 (EET) Date: Sat, 15 Feb 2003 23:16:12 +0200 From: Ruslan Ermilov To: "Matthew N. Dodd" Cc: Dag-Erling Smorgrav , Tom Rhodes , current@freebsd.org, developers@freebsd.org Subject: Re: ACPI thermal panics ThinkPad 600X Message-ID: <20030215211612.GB96712@sunbay.com> References: <20030215024939.GB765@sunbay.com> <20030214215143.3f2e4cd3.trhodes@FreeBSD.org> <20030215094620.C73971@sasami.jurai.net> <20030215164129.GA73629@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline In-Reply-To: <20030215164129.GA73629@sunbay.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 06:41:29PM +0200, Ruslan Ermilov wrote: > On Sat, Feb 15, 2003 at 09:48:32AM -0500, Matthew N. Dodd wrote: > > On Sat, 15 Feb 2003, Dag-Erling Smorgrav wrote: > > > Unfortunately I can't afford a new laptop, so I'm stuck with my 600E. > >=20 > > APM works fine on the 600E. The latest BIOS updates and new model main > > batteries seem to solve most of the battery complaints. > >=20 > > My only outstanding issue is that I can't suspend if an application is > > holding /dev/dsp or /dev/audio open. > >=20 > Hmm, is this on -CURRENT or -STABLE? I can't get apm(4) > working on 600X with -CURRENT; the module loading has some > problems and even if I compile apm statically, no /dev/apm* > entries are created. >=20 Me being dumb. Forgot to comment out the apm "disabled" hint in /boot/device.hints. Still, scary things happen after resuming from zzz(8). "ata1: resetting devices..." forever. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Tq4cUkv4P6juNwoRAvYLAJ9JELSZvvgj9EQBY/ZFK4vTsGQ+KwCfUFho 0hGSMGSayaRJnApEFS5BYSs= =w/QX -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:27:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2876D37B401 for ; Sat, 15 Feb 2003 13:27:55 -0800 (PST) Received: from mx20b.rmci.net (mx20b.rmci.net [205.162.184.38]) by mx1.FreeBSD.org (Postfix) with SMTP id AD6EC43FAF for ; Sat, 15 Feb 2003 13:27:54 -0800 (PST) (envelope-from massey@rmci.net) Received: (qmail 5760 invoked from network); 15 Feb 2003 21:27:53 -0000 Received: from dsl-ip-216-222-2-35.boi.rmci.net (HELO data) (216.222.2.35) by mx20.rmci.net with SMTP; 15 Feb 2003 21:27:53 -0000 From: "Mike" To: Subject: FTP wont connect Date: Sat, 15 Feb 2003 14:30:24 -0700 Message-ID: <001701c2d539$7331c950$0500a8c0@data> 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.2627 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Using the same basic rules I use in 4.7 that work I cannot get pure-ftpd / port 21 to work. Is there another way to open port 21? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:31:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CF6F37B401 for ; Sat, 15 Feb 2003 13:31:16 -0800 (PST) Received: from out001.verizon.net (out001pub.verizon.net [206.46.170.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57EB943FAF for ; Sat, 15 Feb 2003 13:31:15 -0800 (PST) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([151.200.245.136]) by out001.verizon.net (InterMail vM.5.01.05.20 201-253-122-126-120-20021101) with ESMTP id <20030215213114.SHIS23484.out001.verizon.net@kokeb.ambesa.net>; Sat, 15 Feb 2003 15:31:14 -0600 Date: Sat, 15 Feb 2003 16:31:13 -0500 From: Mike Makonnen To: "Erik Torres Serrano" Cc: freebsd-current@FreeBSD.ORG Subject: Re: NFS server vs YO In-Reply-To: References: X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out001.verizon.net from [151.200.245.136] at Sat, 15 Feb 2003 15:31:14 -0600 Message-Id: <20030215213114.SHIS23484.out001.verizon.net@kokeb.ambesa.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG There are several things we need: 1. The contents of: /etc/exports /etc/fstab /etc/rc.conf 2. The output of the following commands: rpcinfo -p showmount -e 3. Make sure you are mounting them as the root user Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:32:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C80BE37B401 for ; Sat, 15 Feb 2003 13:32:47 -0800 (PST) Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4636943FB1 for ; Sat, 15 Feb 2003 13:32:46 -0800 (PST) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id h1FLWiJ04722 for ; Sun, 16 Feb 2003 06:32:44 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 47 From: Makoto Matsushita To: current@FreeBSD.org Subject: FreeBSD/alpha make-release on FreeBSD/i386: dislabel problem Date: Sun, 16 Feb 2003 06:32:40 +0900 Message-Id: <20030216063240O.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've tried to do "make release" of FreeBSD/alpha on FreeBSD/i386 box last night, and found that follow error while generating drivers.flp: + export BLOCKSIZE=512 + [ /R/stage/floppies/drivers.flp = -s ] + do_size= + FSIMG=/R/stage/floppies/drivers.flp + shift + RD=/R/stage + shift + MNT=/mnt + shift + FSSIZE=1440 + shift + FSPROTO=/R/stage/driversfd + shift + FSINODE=80000 + shift + FSLABEL=fd1440 + shift + [ -f /R/stage/trees/base/boot/boot ] + BOOT1=-B -b /R/stage/trees/base/boot/boot + deadlock=20 + uname -r + dofs_md + true + rm -f /R/stage/floppies/drivers.flp + [ x != x ] + dd of=/R/stage/floppies/drivers.flp if=/dev/zero count=1440 bs=1k + mdconfig -a -t vnode -f /R/stage/floppies/drivers.flp + MDDEVICE=md0 + [ ! -c /dev/md0 ] + disklabel -w -B -b /R/stage/trees/base/boot/boot md0 fd1440 disklabel: bootstrap doesn't leave room for disk label *** Error code 2 Stop in /usr/src/release. If my understandings are correct, this is because disklabel(8) kicked is FreeBSD/i386 native binary which doesn't know about FreeBSD/alpha disklabel structure or whatever. Are there any workaround/fix? -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:37:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62CE237B401 for ; Sat, 15 Feb 2003 13:37:30 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B37A43FA3 for ; Sat, 15 Feb 2003 13:37:29 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FLbS6E025945; Sat, 15 Feb 2003 21:37:28 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FLbQdL018947; Sat, 15 Feb 2003 22:37:27 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Makoto Matsushita Cc: current@FreeBSD.ORG Subject: Re: FreeBSD/alpha make-release on FreeBSD/i386: dislabel problem From: phk@phk.freebsd.dk In-Reply-To: Your message of "Sun, 16 Feb 2003 06:32:40 +0900." <20030216063240O.matusita@jp.FreeBSD.org> Date: Sat, 15 Feb 2003 22:37:26 +0100 Message-ID: <18946.1045345046@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20030216063240O.matusita@jp.FreeBSD.org>, Makoto Matsushita writes: > >I've tried to do "make release" of FreeBSD/alpha on FreeBSD/i386 box >last night, and found that follow error while generating drivers.flp: > >If my understandings are correct, this is because disklabel(8) kicked >is FreeBSD/i386 native binary which doesn't know about FreeBSD/alpha >disklabel structure or whatever. > >Are there any workaround/fix? Not yet. I think adding a "-m architecture" flag to disklabel is the way around this problem, but have not had time to do so. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:41:14 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F19837B401 for ; Sat, 15 Feb 2003 13:41:13 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B82D43FBF for ; Sat, 15 Feb 2003 13:41:12 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1FLfAUC067394; Sat, 15 Feb 2003 22:41:10 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1FLfARR067393; Sat, 15 Feb 2003 22:41:10 +0100 (CET) Date: Sat, 15 Feb 2003 22:41:10 +0100 From: Wilko Bulte To: phk@phk.freebsd.dk Cc: Makoto Matsushita , current@FreeBSD.ORG Subject: Re: FreeBSD/alpha make-release on FreeBSD/i386: dislabel problem Message-ID: <20030215224110.B67340@freebie.xs4all.nl> References: <20030216063240O.matusita@jp.FreeBSD.org> <18946.1045345046@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <18946.1045345046@critter.freebsd.dk>; from phk@phk.freebsd.dk on Sat, Feb 15, 2003 at 10:37:26PM +0100 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 10:37:26PM +0100, phk@phk.freebsd.dk wrote: > In message <20030216063240O.matusita@jp.FreeBSD.org>, Makoto Matsushita writes: > > > >I've tried to do "make release" of FreeBSD/alpha on FreeBSD/i386 box > >last night, and found that follow error while generating drivers.flp: > > > >If my understandings are correct, this is because disklabel(8) kicked > >is FreeBSD/i386 native binary which doesn't know about FreeBSD/alpha > >disklabel structure or whatever. > > > >Are there any workaround/fix? > > Not yet. I think adding a "-m architecture" flag to disklabel is the > way around this problem, but have not had time to do so. But now that you have an alpha machine... ;-) -- | / o / /_ _ wilko@freebie.xs4all.nl |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:58: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 596DF37B401 for ; Sat, 15 Feb 2003 13:58:06 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C64E43F3F for ; Sat, 15 Feb 2003 13:58:05 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 59E35679DA; Sat, 15 Feb 2003 13:58:01 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 12ABA1033; Sat, 15 Feb 2003 13:58:01 -0800 (PST) Date: Sat, 15 Feb 2003 13:58:01 -0800 From: Kris Kennaway To: Dag-Erling Smorgrav Cc: PAHowes@Fair-ware.com, freebsd-current@FreeBSD.ORG Subject: Re: A couple of 5.0-RELEASE bugs... Message-ID: <20030215215800.GC20462@rot13.obsecurity.org> References: <001301c2d51b$b114d140$0200a8c0@howesnet> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nmemrqcdn5VTmUEE" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --nmemrqcdn5VTmUEE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 07:10:09PM +0100, Dag-Erling Smorgrav wrote: > > The second problem is related to the "NOMANCOMPRESS" flag in make.conf. > > When installing the XFree86-4 port, I found that the "install" and > > "package" targets would stop with an error saying that they couldn't > > find gzip'd versions of the man pages. Of course that made sense when I > > specifically didn't want the man pages compressed! I think some of the > > scripts are not paying attention to that flag. >=20 > Most port developers never test their ports with NOMANCOMPRESS; most > of them probably aren't even aware of NOMANCOMPRESS. I don't really > see the point with it except on slow machines with plenty of disk > space (compressed man pages will probably load faster because disk I/O > is far more expensive than the CPU time required to decompress them) Right..this is probably a bug in the port. Could you send-pr a full description of how to reproduce it? Kris --nmemrqcdn5VTmUEE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TrfoWry0BWjoQKURAt66AJ9gTg3fdpR5vEZKwwjBbM7DHUcxnQCfRmFs d38s5a4rlGNJzzk2rsILtcE= =S7vL -----END PGP SIGNATURE----- --nmemrqcdn5VTmUEE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 13:59:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 262B537B401 for ; Sat, 15 Feb 2003 13:59:43 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807D843FCB for ; Sat, 15 Feb 2003 13:59:42 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3ABC9679DA; Sat, 15 Feb 2003 13:59:42 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 200D31033; Sat, 15 Feb 2003 13:59:42 -0800 (PST) Date: Sat, 15 Feb 2003 13:59:42 -0800 From: Kris Kennaway To: Poul-Henning Kamp Cc: current@freebsd.org Subject: Re: make depend broken in cpp0 Message-ID: <20030215215942.GD20462@rot13.obsecurity.org> References: <11277.1045333725@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mJm6k4Vb/yFcL9ZU" Content-Disposition: inline In-Reply-To: <11277.1045333725@critter.freebsd.dk> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mJm6k4Vb/yFcL9ZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 07:28:45PM +0100, Poul-Henning Kamp wrote: >=20 > I installed 5.0-R on my new alpha (Thanks Wilko!) and tried to run > a buildworld. It explodes in make depend in cpp0: >=20 > #cd /usr/src/gnu/usr.bin/cc/cpp0 > #make obj > #make depend This looks like a symptom of an unclean objdir..notice how 'make obj' doesn't report anything, indicating the objdir is already present (and probably populated with old stuff). Try removing it with 'cleandir' (twice), and retry. Kris --mJm6k4Vb/yFcL9ZU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TrhNWry0BWjoQKURAjACAKC/WljAWCs5hZcNzvsY4AhGjM9BeACeJsKR CcxHx+JL+NaZHZbgGsvLd70= =D04e -----END PGP SIGNATURE----- --mJm6k4Vb/yFcL9ZU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14: 2: 1 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85D3437B401 for ; Sat, 15 Feb 2003 14:02:00 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9696A43FB1 for ; Sat, 15 Feb 2003 14:01:59 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FM1v6E026299; Sat, 15 Feb 2003 22:01:57 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FM1qdL023460; Sat, 15 Feb 2003 23:01:57 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Kris Kennaway Cc: current@freebsd.org Subject: Re: make depend broken in cpp0 From: phk@phk.freebsd.dk In-Reply-To: Your message of "Sat, 15 Feb 2003 13:59:42 PST." <20030215215942.GD20462@rot13.obsecurity.org> Date: Sat, 15 Feb 2003 23:01:52 +0100 Message-ID: <23459.1045346512@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20030215215942.GD20462@rot13.obsecurity.org>, Kris Kennaway writes: > >--mJm6k4Vb/yFcL9ZU >Content-Type: text/plain; charset=us-ascii >Content-Disposition: inline >Content-Transfer-Encoding: quoted-printable > >On Sat, Feb 15, 2003 at 07:28:45PM +0100, Poul-Henning Kamp wrote: >>=20 >> I installed 5.0-R on my new alpha (Thanks Wilko!) and tried to run >> a buildworld. It explodes in make depend in cpp0: >>=20 >> #cd /usr/src/gnu/usr.bin/cc/cpp0 >> #make obj >> #make depend > >This looks like a symptom of an unclean objdir..notice how 'make obj' >doesn't report anything, indicating the objdir is already present (and >probably populated with old stuff). Try removing it with 'cleandir' >(twice), and retry. That's because I reran the command to catch the error output. /usr/obj was on a freshly newfs'ed disk when I started. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14: 5: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC7B637B401 for ; Sat, 15 Feb 2003 14:05:05 -0800 (PST) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4D0A43FB1 for ; Sat, 15 Feb 2003 14:05:04 -0800 (PST) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) by alpha.siliconlandmark.com (8.12.6/8.12.6) with ESMTP id h1FM4v61061355; Sat, 15 Feb 2003 17:04:57 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by alpha.siliconlandmark.com (8.12.6/8.12.6/Submit) with ESMTP id h1FM4vRL061352; Sat, 15 Feb 2003 17:04:57 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Sat, 15 Feb 2003 17:04:57 -0500 (EST) From: Andre Guibert de Bruet To: Erik Torres Serrano Cc: freebsd-current@FreeBSD.ORG Subject: Re: NFS server vs YO In-Reply-To: <20030215213114.SHIS23484.out001.verizon.net@kokeb.ambesa.net> Message-ID: <20030215165433.P61312@alpha.siliconlandmark.com> References: <20030215213114.SHIS23484.out001.verizon.net@kokeb.ambesa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Mike Makonnen wrote: > There are several things we need: > > 1. The contents of: > /etc/exports > /etc/fstab > /etc/rc.conf > > 2. The output of the following commands: > rpcinfo -p > showmount -e > > 3. Make sure you are mounting them as the root user 4. Make sure that mountd is enabled, and that you're not firewalling it's traffic. A sockstat -4 should display the following: root mountd 434 4 udp4 *:1017 *:* root mountd 434 5 tcp4 *:1017 *:* If you don't see something along those lines, you need to add the following to your /etc/rc.conf: nfs_server_enable="YES" Regards, > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14:12: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1449437B401 for ; Sat, 15 Feb 2003 14:11:59 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BEE043F75 for ; Sat, 15 Feb 2003 14:11:58 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id E66DF67C8E; Sat, 15 Feb 2003 14:11:57 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B5CC61088; Sat, 15 Feb 2003 14:11:57 -0800 (PST) Date: Sat, 15 Feb 2003 14:11:57 -0800 From: Kris Kennaway To: phk@phk.freebsd.dk Cc: Kris Kennaway , current@FreeBSD.ORG Subject: Re: make depend broken in cpp0 Message-ID: <20030215221157.GG20462@rot13.obsecurity.org> References: <20030215215942.GD20462@rot13.obsecurity.org> <23459.1045346512@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5UGlQXeG3ziZS81+" Content-Disposition: inline In-Reply-To: <23459.1045346512@critter.freebsd.dk> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --5UGlQXeG3ziZS81+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 11:01:52PM +0100, phk@phk.freebsd.dk wrote: > >> #cd /usr/src/gnu/usr.bin/cc/cpp0 > >> #make obj > >> #make depend > > > >This looks like a symptom of an unclean objdir..notice how 'make obj' > >doesn't report anything, indicating the objdir is already present (and > >probably populated with old stuff). Try removing it with 'cleandir' > >(twice), and retry. >=20 > That's because I reran the command to catch the error output. >=20 > /usr/obj was on a freshly newfs'ed disk when I started. OK, does buildworld fail in the same way? Kris --5UGlQXeG3ziZS81+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TrstWry0BWjoQKURAtnEAJ44/232H6ik2WRiTsKyJEx2c8a6DwCdH5z4 9l7kTwb36a58DfGzYy0aZA4= =Q5bh -----END PGP SIGNATURE----- --5UGlQXeG3ziZS81+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14:13:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69A6337B401 for ; Sat, 15 Feb 2003 14:13:40 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784E543F75 for ; Sat, 15 Feb 2003 14:13:39 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FMDb6E026463; Sat, 15 Feb 2003 22:13:37 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1FMDbdL025573; Sat, 15 Feb 2003 23:13:37 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: make depend broken in cpp0 From: phk@phk.freebsd.dk In-Reply-To: Your message of "Sat, 15 Feb 2003 14:11:57 PST." <20030215221157.GG20462@rot13.obsecurity.org> Date: Sat, 15 Feb 2003 23:13:37 +0100 Message-ID: <25572.1045347217@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20030215221157.GG20462@rot13.obsecurity.org>, Kris Kennaway writes: > >--5UGlQXeG3ziZS81+ >Content-Type: text/plain; charset=us-ascii >Content-Disposition: inline >Content-Transfer-Encoding: quoted-printable > >On Sat, Feb 15, 2003 at 11:01:52PM +0100, phk@phk.freebsd.dk wrote: > >> >> #cd /usr/src/gnu/usr.bin/cc/cpp0 >> >> #make obj >> >> #make depend >> > >> >This looks like a symptom of an unclean objdir..notice how 'make obj' >> >doesn't report anything, indicating the objdir is already present (and >> >probably populated with old stuff). Try removing it with 'cleandir' >> >(twice), and retry. >>=20 >> That's because I reran the command to catch the error output. >>=20 >> /usr/obj was on a freshly newfs'ed disk when I started. > >OK, does buildworld fail in the same way? Yes. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14:55:37 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 632A337B401 for ; Sat, 15 Feb 2003 14:55:36 -0800 (PST) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 975F343FAF for ; Sat, 15 Feb 2003 14:55:35 -0800 (PST) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (strings.polstra.com [206.213.73.20]) by wall.polstra.com (8.12.3/8.12.3) with ESMTP id h1FMtYu4090781 for ; Sat, 15 Feb 2003 14:55:35 -0800 (PST) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.5.1 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sat, 15 Feb 2003 14:55:34 -0800 (PST) Organization: Polstra & Co., Inc. From: John Polstra To: current@freebsd.org Subject: Is scsi device wiring broken? Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I can't seem to get config on a Jan. 15 -current system to accept wired down SCSI devices. I tried this: device ahc options AHC_ALLOW_MEMIO device scbus0 at ahc0 device da0 at scbus0 target 0 unit 0 device da1 at scbus0 target 1 unit 0 and config complained with: config: BLAKE:46: devices with zero units are not likely to be correct Line 46 is the blank line following the AHC_ALLOW_MEMIO option. Next, I tried this: device ahc device ahc0 options AHC_ALLOW_MEMIO device scbus device scbus0 at ahc0 device da device da0 at scbus0 target 0 unit 0 device da1 at scbus0 target 1 unit 0 But I got the same error message, this time referring to the first "ahc" device line. What's the magic incantation to make it work? Thanks, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14:57:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC3737B401; Sat, 15 Feb 2003 14:57:11 -0800 (PST) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC92D43FBF; Sat, 15 Feb 2003 14:57:10 -0800 (PST) (envelope-from corecode@corecode.ath.cx) Received: from fwd02.sul.t-online.de by mailout04.sul.t-online.com with smtp id 18kBF7-0007ES-02; Sat, 15 Feb 2003 23:57:09 +0100 Received: from pride.uni.stoert.net (320050403952-0001@[217.82.55.89]) by fmrl02.sul.t-online.com with esmtp id 18kBEt-0OKpM0C; Sat, 15 Feb 2003 23:56:55 +0100 Received: from terrorfish.uni.stoert.net (terrorfish.uni.stoert.net [10.150.180.178]) by pride.uni.stoert.net (Postfix) with ESMTP id C3B1712BD64; Sat, 15 Feb 2003 23:56:52 +0100 (CET) Received: from terrorfish.uni.stoert.net (localhost [127.0.0.1]) by terrorfish.uni.stoert.net (8.12.7/8.12.7) with ESMTP id h1FMuvLg001886; Sat, 15 Feb 2003 23:56:57 +0100 (CET) (envelope-from corecode@terrorfish.uni.stoert.net) Received: (from corecode@localhost) by terrorfish.uni.stoert.net (8.12.7/8.12.7/Submit) id h1FMutl7001885; Sat, 15 Feb 2003 23:56:55 +0100 (CET) Date: Sat, 15 Feb 2003 23:56:50 +0100 From: "Simon 'corecode' Schubert" To: Bruce Evans Cc: Alexander@Leidinger.net, current@FreeBSD.ORG, phk@FreeBSD.ORG Subject: Re: Do we still have a FIFO / named pipe problem? Message-Id: <20030215235650.6b140807.corecode@corecode.ath.cx> In-Reply-To: <20030210033714.O1731-100000@gamplex.bde.org> References: <20030209170616.2e4e3635.Alexander@Leidinger.net> <20030210033714.O1731-100000@gamplex.bde.org> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="=.XLlp91i,bq7y,r" X-Sender: 320050403952-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=.XLlp91i,bq7y,r Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Bruce Evans wrote: > This change makes such opens bogusly time out after 1 second (unless > there is already a writer). > > There seems to be a race in fifo_open(): opens for read don't > terminate the wait if the reader goes away before the opener looks. > It is not clear if sendmail is affected by this race or one of its > own. > > Untested fix for this and rev.1.79, and for a similar race in blocking > opens of named pipes for reading: fixes issues with apsfilter manual duplexing for me. could somebody please commit this patch? cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --=.XLlp91i,bq7y,r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TsW2r5S+dk6z85oRAkyqAKDqpIHP4ncKBc3cbmi61KldEZM48gCgrbn7 jnKthil7Sd2cc3Tkn6zWi5I= =h/SK -----END PGP SIGNATURE----- --=.XLlp91i,bq7y,r-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 14:58: 8 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CFAB37B401 for ; Sat, 15 Feb 2003 14:58:05 -0800 (PST) Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3DB743FBD for ; Sat, 15 Feb 2003 14:58:01 -0800 (PST) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-a019.otenet.gr [212.205.215.19]) by mailsrv.otenet.gr (8.12.6/8.12.6) with ESMTP id h1FMvvSe016604 for ; Sun, 16 Feb 2003 00:57:59 +0200 (EET) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.7/8.12.7) with ESMTP id h1FMvrBC001276 for ; Sun, 16 Feb 2003 00:57:53 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.12.7/8.12.7/Submit) id h1FMWq2t029123 for freebsd-current@freebsd.org; Sun, 16 Feb 2003 00:32:52 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 16 Feb 2003 00:32:52 +0200 From: Giorgos Keramidas To: freebsd-current@freebsd.org Subject: UDP connect() behavior in 5.0-CURRENT Message-ID: <20030215223252.GA17712@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The second volume of ``TCP/IP Illustrated'' by Stevens says that already connected UDP sockets return EISCONN on any following connect() attempts. Exercise 23.8 of the same book mentions that an interesting exception are connect() calls to address 0.0.0.0, which still return an EISCONN error, but also have the side-effect of leaving the socket disassociated from a UDP pcb, allowing subsequent connect() attempts to work. Trying to reproduce the EISCONN error by running the attached program, I couldn't. It seems that connect() returns ECONNREFUSED when it is run on already connected sockets. If you run the program as it is shown below, it works fine, connecting to localhost:53 and then exiting. If you undef the #if 0 ... #endif part, it should fail with EISCONN, but it fails with ECONNREFUSED instead :-( ===== conn.c ===== #include #include #include #include #include #include #include #include #include #define MY_PROTO "udp" int main(void) { struct sockaddr_in addr; struct protoent *pe; struct servent *se; int sd; /* * Create a UDP socket. */ pe = getprotobyname(MY_PROTO); if (pe == NULL) errx(1, "getprotobyname(%s): unknown protocol", MY_PROTO); if ((sd = socket(PF_INET, SOCK_DGRAM, pe->p_proto)) == -1) err(1, "socket"); /* * When the ifdef'ed part below is uncommented, the error of the * second connect() attempt is not EISCONN, but ECONNREFUSED, which * is wrong. */ #if 0 /* * First, connect to the UDP discard service of localhost and send at * least one packet to it. */ printf("-!- Connecting to localhost:discard/%s\n", MY_PROTO); fflush(stdout); se = getservbyname("discard", MY_PROTO); if (se == NULL) errx(1, "getservbyname[discard/%s]: unknown service", MY_PROTO); bzero((char *)&addr, sizeof(struct sockaddr_in)); addr.sin_family = PF_INET; addr.sin_addr.s_addr = htonl(0x7f000001); /* localhost */ addr.sin_port = htons(se->s_port); if (connect(sd, (struct sockaddr *)&addr, sizeof(addr)) == -1) err(1, "connect[%s/%s]", se->s_name, pe->p_name); printf("-!- Sending some stuff to localhost:%s/%s\n", se->s_name, pe->p_name); fflush(stdout); if (write(sd, (char *)&addr, sizeof(addr)) == -1) err(1, "write/%s", se->s_name); #endif /* * Now attempt to connect to localhost:domain (DNS). * This should fail on connect(). */ printf("-!- Connecting to localhost:domain/%s\n", pe->p_name); fflush(stdout); se = getservbyname("domain", MY_PROTO); if (se == NULL) errx(1, "getservbyname[domain/%s]: unknown service", pe->p_name); bzero((char *)&addr, sizeof(struct sockaddr_in)); addr.sin_family = PF_INET; addr.sin_addr.s_addr = htonl(0x7f000001); /* localhost */ addr.sin_port = htons(se->s_port); if (connect(sd, (struct sockaddr *)&addr, sizeof(addr)) == -1) err(1, "connect[%s/%s]: error %d:", se->s_name, pe->p_name, errno); close(sd); return (0); } ===== end of conn.c ===== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 15:24:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 121C137B401 for ; Sat, 15 Feb 2003 15:24:39 -0800 (PST) Received: from newtrinity.zeist.de (newtrinity.zeist.de [193.111.112.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB1843F85 for ; Sat, 15 Feb 2003 15:24:38 -0800 (PST) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) by newtrinity.zeist.de (8.12.6/8.12.6/ZEIST.DE) with ESMTP id h1FNOadC093404; Sun, 16 Feb 2003 00:24:36 +0100 (CET) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.6/8.12.6/Submit) id h1FNOVIH093403; Sun, 16 Feb 2003 00:24:31 +0100 (CET) (envelope-from marius) Date: Sun, 16 Feb 2003 00:24:31 +0100 From: marius@alchemy.franken.de To: John Polstra Cc: current@FreeBSD.ORG Subject: Re: Is scsi device wiring broken? Message-ID: <20030216002431.C36455@newtrinity.zeist.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from jdp@polstra.com on Sat, Feb 15, 2003 at 02:55:34PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 02:55:34PM -0800, John Polstra wrote: > > What's the magic incantation to make it work? > see "SCSI DEVICE CONFIGURATION" in /sys/conf/NOTES, you have to use a hints-file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 15:26:38 2003 Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id 9919237B401; Sat, 15 Feb 2003 15:26:37 -0800 (PST) Date: Sat, 15 Feb 2003 17:26:37 -0600 From: Juli Mallett To: marius@alchemy.franken.de Cc: John Polstra , current@FreeBSD.ORG Subject: Re: Is scsi device wiring broken? Message-ID: <20030215172637.A97766@FreeBSD.org> References: <20030216002431.C36455@newtrinity.zeist.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030216002431.C36455@newtrinity.zeist.de>; from marius@alchemy.franken.de on Sun, Feb 16, 2003 at 12:24:31AM +0100 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: marius@alchemy.franken.de [ Data: 2003-02-15 ] [ Subjecte: Re: Is scsi device wiring broken? ] > On Sat, Feb 15, 2003 at 02:55:34PM -0800, John Polstra wrote: > > > > What's the magic incantation to make it work? > > > > see "SCSI DEVICE CONFIGURATION" in /sys/conf/NOTES, you have to use a > hints-file. jdp is right though, scsi(4) is full of lies. Really needs fixed before the next release :) -- Juli Mallett - AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer - ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD - Never trust an ELF, COFF or Mach-O! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 15:31: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E19237B414 for ; Sat, 15 Feb 2003 15:31:00 -0800 (PST) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6586243FA3 for ; Sat, 15 Feb 2003 15:30:59 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.12.3/8.12.3) with ESMTP id h1FNUku5090983 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 15 Feb 2003 15:30:47 -0800 (PST) (envelope-from jdp@vashon.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.12.6/8.12.6/Submit) id h1FNUkL7009218; Sat, 15 Feb 2003 15:30:46 -0800 (PST) (envelope-from jdp) Date: Sat, 15 Feb 2003 15:30:46 -0800 (PST) Message-Id: <200302152330.h1FNUkL7009218@vashon.polstra.com> To: current@freebsd.org From: John Polstra Cc: marius@alchemy.franken.de Subject: Re: Is scsi device wiring broken? In-Reply-To: <20030216002431.C36455@newtrinity.zeist.de> References: <20030216002431.C36455@newtrinity.zeist.de> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20030216002431.C36455@newtrinity.zeist.de>, wrote: > > see "SCSI DEVICE CONFIGURATION" in /sys/conf/NOTES, you have to use a > hints-file. Many thanks to both you and Juli. I was misled by some seriously stale information in SCSI(4). John -- John Polstra John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 15:46:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC6E937B407; Sat, 15 Feb 2003 15:46:55 -0800 (PST) Received: from franky.speednet.com.au (franky.speednet.com.au [203.57.65.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E67343FB1; Sat, 15 Feb 2003 15:46:54 -0800 (PST) (envelope-from andyf@speednet.com.au) Received: from hewey.af.speednet.com.au (hewey.af.speednet.com.au [203.38.96.242]) by franky.speednet.com.au (8.12.6/8.12.6) with ESMTP id h1FNkpjA095085; Sun, 16 Feb 2003 10:46:51 +1100 (EST) (envelope-from andyf@speednet.com.au) Received: from hewey.af.speednet.com.au (hewey.af.speednet.com.au [203.38.96.242]) by hewey.af.speednet.com.au (8.12.6/8.12.6) with ESMTP id h1FNkonb089997; Sun, 16 Feb 2003 09:46:51 +1000 (EST) (envelope-from andyf@speednet.com.au) Date: Sun, 16 Feb 2003 09:46:49 +1000 (EST) From: Andy Farkas X-X-Sender: andyf@hewey.af.speednet.com.au To: freebsd-current@FreeBSD.ORG Cc: trhodes@FreeBSD.ORG, Subject: couple trivial todo's Message-ID: <20030216092816.K89852-100000@hewey.af.speednet.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG - In src/share/examples/etc/make.conf NO_BIND=true should be moved up - the man page for splash(4) is missing descriptions for apm_saver.ko, dragon_saver.ko and fire_saver.ko -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 15:55:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF28637B401 for ; Sat, 15 Feb 2003 15:55:20 -0800 (PST) Received: from franky.speednet.com.au (franky.speednet.com.au [203.57.65.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A4C343F93 for ; Sat, 15 Feb 2003 15:55:19 -0800 (PST) (envelope-from andyf@speednet.com.au) Received: from hewey.af.speednet.com.au (hewey.af.speednet.com.au [203.38.96.242]) by franky.speednet.com.au (8.12.6/8.12.6) with ESMTP id h1FNtIjA095218 for ; Sun, 16 Feb 2003 10:55:18 +1100 (EST) (envelope-from andyf@speednet.com.au) Received: from hewey.af.speednet.com.au (hewey.af.speednet.com.au [172.22.2.1]) by hewey.af.speednet.com.au (8.12.6/8.12.6) with ESMTP id h1FNtHnb090025 for ; Sun, 16 Feb 2003 09:55:17 +1000 (EST) (envelope-from andyf@speednet.com.au) Date: Sun, 16 Feb 2003 09:55:17 +1000 (EST) From: Andy Farkas X-X-Sender: andyf@hewey.af.speednet.com.au To: freebsd-current@FreeBSD.ORG Subject: LOR when halt(8)ing Message-ID: <20030216094817.G89852-100000@hewey.af.speednet.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I get this everytime I halt(8) my box: # sync # sync # sync # halt boot() called on cpu#0 Waiting (max 60 seconds) for system process `vnlru' to stop...stopped Waiting (max 60 seconds) for system process `bufdaemon' to stop...stopped Waiting (max 60 seconds) for system process `syncer' to stop...stopped syncing disks, buffers remaining... 7 7 done lock order reversal 1st 0xc1920234 process lock (process lock) @ /usr/src/sys/kern/vfs_mount.c:1144 2nd 0xc244e634 filedesc structure (filedesc structure) @ /usr/src/sys/kern/vfs_mount.c:1151 Uptime: 12h28m0s The operating system has halted. Please press any key to reboot. -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 17: 9:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B838437B401 for ; Sat, 15 Feb 2003 17:09:51 -0800 (PST) Received: from 12-234-22-23.client.attbi.com (12-234-22-23.client.attbi.com [12.234.22.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id E365D43FB1 for ; Sat, 15 Feb 2003 17:09:49 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from 12-234-22-23.client.attbi.com (lfzcr4azuglitsql@localhost [127.0.0.1]) by 12-234-22-23.client.attbi.com (8.12.6/8.12.6) with ESMTP id h1G19Sdw063882; Sat, 15 Feb 2003 17:09:28 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by 12-234-22-23.client.attbi.com (8.12.6/8.12.6/Submit) with ESMTP id h1G19Jmh063879; Sat, 15 Feb 2003 17:09:23 -0800 (PST) Date: Sat, 15 Feb 2003 17:09:19 -0800 (PST) From: Doug Barton To: marius@alchemy.franken.de Cc: Alexander Leidinger , current@FreeBSD.org, Mike Makonnen Subject: Re: named & chroot & rcNG & devfs In-Reply-To: <20030211202917.B36455@newtrinity.zeist.de> Message-ID: <20030215170451.E63308@12-234-22-23.pyvrag.nggov.pbz> References: <20030211185931.0d37ef82.Alexander@Leidinger.net> <20030211202917.B36455@newtrinity.zeist.de> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 11 Feb 2003 marius@alchemy.franken.de wrote: > /etc/rc.d/named is quite bogus, especially when it comes to running bind > chrooted. Correct. I'm working on an improved method of dealing with this. > E.g. /dev/null isn't needed by bind8 at all Incorrect. /dev/null is needed for bind 8. /dev/null and /dev/random are needed for bind 9. Depending on what you're doing, /dev/random is probably a good idea for bind 8 as well. > On the other hand shared libraries are needed (or a port that > supports linking bind statically...) cd /usr/ports/net/bind[89] make clean make CFLAGS+=-static -DPORT_REPLACES_BASE_BIND8 make install Doug -- "The last time France wanted more evidence, it rolled right through Paris with a German flag." - David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 17:42: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B26CB37B401; Sat, 15 Feb 2003 17:42:00 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94BA343F3F; Sat, 15 Feb 2003 17:41:59 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G1fwEJ074143; Sun, 16 Feb 2003 04:41:58 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G1fwnw074142; Sun, 16 Feb 2003 04:41:58 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 04:41:58 +0300 From: "Andrey A. Chernov" To: des@freebsd.org, current@freebsd.org Subject: OPIE breakage: backout & patch for review Message-ID: <20030216014158.GA73950@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Background: recently des tries to fight problem that OPIE not sense localhost when called from PAM, but does it incorrectly. Moreover, he tries to fix OPIE config instead of fixing PAM bug: PAM not follows OPIE API. In non-PAM environment OPIE always sense localhost because its host variable always have "" value indicating localhost. Now PAM tries to break this, sending "localhost" string to OPIE instead of "" string. Because of that OPIE stop sense of localhost and des tries to fix OPIE config to add additional things here not needed by standard OPIE setup at all. Note that passing anything else than "" for localhost to OPIE is not supported by OPIE API and illegal. I mean NULL or "localhost" values now passed by PAM. Here is real fix for this problem for review. It includes backing out of /etc/opieaccess incorrect change. --- opieaccess.bak Sun Feb 16 04:25:20 2003 +++ opieaccess Sun Feb 16 04:27:04 2003 @@ -3,11 +3,10 @@ # This file controls whether UNIX passwords are to be permitted. Rules # are matched in order, and the search terminates when the first matching # rule has been found. Default action is "deny". See opieaccess(5) for -# more information. +# more information. Local host is already permitted by default. # # Each rule has the form: # # permit address netmask # deny address netmask # -permit 127.0.0.1 255.255.255.255 --- pam_opieaccess.c.bak Sun Feb 16 02:26:49 2003 +++ pam_opieaccess.c Sun Feb 16 03:32:57 2003 @@ -42,6 +42,7 @@ #include #include #include +#include #include #include @@ -73,8 +74,8 @@ r = pam_get_item(pamh, PAM_RHOST, (const void **)&rhost); if (r != PAM_SUCCESS) return (r); - if (rhost == NULL) - rhost = "localhost"; + if (rhost == NULL || strcasecmp(rhost, "localhost") == 0) + rhost = ""; if (opieaccessfile(rhost) != 0 && opiealways(pwent->pw_dir) != 0) return (PAM_SUCCESS); -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 18: 9:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DF5637B401; Sat, 15 Feb 2003 18:09:54 -0800 (PST) Received: from newtrinity.zeist.de (newtrinity.zeist.de [193.111.112.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02FE243F85; Sat, 15 Feb 2003 18:09:53 -0800 (PST) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) by newtrinity.zeist.de (8.12.6/8.12.6/ZEIST.DE) with ESMTP id h1G29pdC096274; Sun, 16 Feb 2003 03:09:51 +0100 (CET) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.6/8.12.6/Submit) id h1G29kKP096273; Sun, 16 Feb 2003 03:09:46 +0100 (CET) (envelope-from marius) Date: Sun, 16 Feb 2003 03:09:46 +0100 From: marius@alchemy.franken.de To: Doug Barton Cc: Alexander Leidinger , current@FreeBSD.org, Mike Makonnen Subject: Re: named & chroot & rcNG & devfs Message-ID: <20030216030946.A93454@newtrinity.zeist.de> References: <20030211185931.0d37ef82.Alexander@Leidinger.net> <20030211202917.B36455@newtrinity.zeist.de> <20030215170451.E63308@12-234-22-23.pyvrag.nggov.pbz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030215170451.E63308@12-234-22-23.pyvrag.nggov.pbz>; from DougB@FreeBSD.org on Sat, Feb 15, 2003 at 05:09:19PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 05:09:19PM -0800, Doug Barton wrote: > On Tue, 11 Feb 2003 marius@alchemy.franken.de wrote: > > > /etc/rc.d/named is quite bogus, especially when it comes to running bind > > chrooted. > > Correct. I'm working on an improved method of dealing with this. great! > > > E.g. /dev/null isn't needed by bind8 at all > > Incorrect. /dev/null is needed for bind 8. /dev/null and /dev/random are > needed for bind 9. Depending on what you're doing, /dev/random is probably > a good idea for bind 8 as well. hrm, i thought to have checked properly when i set up the chroots. may this have changed througout version 8? anyway, they still run happily without /dev/null. > > > On the other hand shared libraries are needed (or a port that > > supports linking bind statically...) > > cd /usr/ports/net/bind[89] > make clean > make CFLAGS+=-static -DPORT_REPLACES_BASE_BIND8 > make install > i don't like ports installing to locations of base system binaries, i.e. /usr/sbin etc., and in the case of bind i don't see a reason why the port should be installed in place of the base bind only to get copied over to the chroot. wouldn't it be fine if the bind ports would support '-DPORT_INSTALL_CHROOT' or something only installing static binaries directly to the chroot? on the other hand /etc/rc.d/named probably should also support running chrooted with the base bind which would either require copying the required libs or a statically linked base bind... well, i'm looking forward to your improved version. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 18:19: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1415537B401; Sat, 15 Feb 2003 18:19:01 -0800 (PST) Received: from out0.mx.nwbl.wi.voyager.net (out0.mx.nwbl.wi.voyager.net [169.207.3.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C12443FA3; Sat, 15 Feb 2003 18:19:00 -0800 (PST) (envelope-from silby@silby.com) Received: from [10.1.1.6] (d99.as29.nwbl0.wi.voyager.net [169.207.73.99]) by out0.mx.nwbl.wi.voyager.net (Postfix) with ESMTP id E55198464E; Sat, 15 Feb 2003 20:18:58 -0600 (CST) Date: Sat, 15 Feb 2003 20:27:45 -0600 (CST) From: Mike Silbersack To: Martin Blapp Cc: current@freebsd.org, hackers@freebsd.org Subject: Re: ACPI: working ACPI vs broken ACPI In-Reply-To: <20030215113219.J57358@cvs.imp.ch> Message-ID: <20030215202651.D36608@patrocles.silby.com> References: <20030215113219.J57358@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Martin Blapp wrote: > Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block0 defined as GPE0 > to GPE31 > Feb 13 17:41:05 ibm-01 kernel: ACPI-0625: *** Info: GPE Block1 defined as GPE32 > to GPE63 I see similar errors on my Presario 2100US... > Wild guess: Seem to result from this. If I'm looking at NetBSD's > http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/acpi/acpi_ec.c they > have a lot done since they took acpi from us. I'm sure it works > for netbsd. > > Is anybody working on this ? > > Martin I've been trying to load that URL since yesterday, but it's not working from here. Can you elaborate on what it does? Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 18:34:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73AD237B405 for ; Sat, 15 Feb 2003 18:34:55 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E55943F3F for ; Sat, 15 Feb 2003 18:34:54 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 948C767C8E; Sat, 15 Feb 2003 18:34:53 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id CCC7910F1; Sat, 15 Feb 2003 18:34:52 -0800 (PST) Date: Sat, 15 Feb 2003 18:34:52 -0800 From: Kris Kennaway To: phk@phk.freebsd.dk Cc: Kris Kennaway , current@FreeBSD.ORG Subject: Re: make depend broken in cpp0 Message-ID: <20030216023452.GA41301@rot13.obsecurity.org> References: <20030215221157.GG20462@rot13.obsecurity.org> <25572.1045347217@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <25572.1045347217@critter.freebsd.dk> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 15, 2003 at 11:13:37PM +0100, phk@phk.freebsd.dk wrote: > >OK, does buildworld fail in the same way? >=20 > Yes. I have no idea.. a fresh buildworld just succeeded for me. Kris --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TvjLWry0BWjoQKURAo5SAKDx7HEBIqfriMYrj9EOpJMyuudKIACfex+Q TzhvZfKjMTd1wYHSiL/9Aac= =9Uxw -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 18:39:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F237C37B401; Sat, 15 Feb 2003 18:39:29 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5F5243FBD; Sat, 15 Feb 2003 18:39:28 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G2dREJ074630; Sun, 16 Feb 2003 05:39:27 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G2dRcd074629; Sun, 16 Feb 2003 05:39:27 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 05:39:27 +0300 From: "Andrey A. Chernov" To: des@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: OPIE breakage: backout & patch for review Message-ID: <20030216023927.GA74559@nagual.pp.ru> References: <20030216014158.GA73950@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030216014158.GA73950@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 04:41:58 +0300, Andrey A. Chernov wrote: > des tries to fix OPIE config to add > additional things here not needed by standard OPIE setup at all. To be more specific, exact breakage after des is: Old non-PAMified OPIE variant: localhost allowed even there is no /etc/opieaccess at all. New variant from des: if there is no /etc/opieaccess, localhost is not allowed. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 20: 0:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E368937B401 for ; Sat, 15 Feb 2003 20:00:28 -0800 (PST) Received: from dilbert.robbins.dropbear.id.au (195.a.006.mel.iprimus.net.au [210.50.44.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3434C43F93 for ; Sat, 15 Feb 2003 20:00:26 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au (lotbv8dqsce0f9yt@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id h1G40N0n091953 for ; Sun, 16 Feb 2003 15:00:23 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id h1G40MDG091952 for current@freebsd.org; Sun, 16 Feb 2003 15:00:22 +1100 (EST) (envelope-from tim) Date: Sun, 16 Feb 2003 15:00:21 +1100 From: Tim Robbins To: current@freebsd.org Subject: sh broken on sparc64 (Re: cvs commit: src/bin/sh machdep.h memalloc.c nodes.c.pat) Message-ID: <20030216150021.A91809@dilbert.robbins.dropbear.id.au> References: <200302160328.h1G3SB3s074208@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302160328.h1G3SB3s074208@repoman.freebsd.org>; from tjr@FreeBSD.org on Sat, Feb 15, 2003 at 07:28:11PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 07:28:11PM -0800, Tim J. Robbins wrote: > tjr 2003/02/15 19:28:11 PST > > Modified files: > bin/sh memalloc.c nodes.c.pat > Added files: > bin/sh machdep.h > Log: > Temporarily back out machdep.h/ALIGN changes. It seems that on sparc64, > using the alignment from sys/param.h (16) instead of the alignment > from machdep.h (8) tickled a nasty bug in the memory allocator that I > haven't been able to track down yet. The change before this one broke sparc64 pretty spectacularly. If you built world in the past 24 hours, you'll need to manually build and reinstall a new /bin/sh before trying to build again. I did test the change on alpha, ia64 and sparc64 before committing it, but obviously did not prod it hard enough... Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 21: 4:37 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE0B37B401 for ; Sat, 15 Feb 2003 21:04:36 -0800 (PST) Received: from seed.net.tw (sn12.seed.net.tw [139.175.54.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE15343FCB for ; Sat, 15 Feb 2003 21:04:35 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.134.32] (port=49526 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18kGyg-0006nw-00 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 13:04:34 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1G54XLj039800 for ; Sun, 16 Feb 2003 13:04:34 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1G54XXS039795 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 13:04:33 +0800 (CST) Date: Sun, 16 Feb 2003 13:04:33 +0800 From: leafy To: freebsd-current@FreeBSD.ORG Subject: Re: gcc3.2.2 import might have trashed ld-elf.so.1 Message-ID: <20030216050433.GA38216@leafy.idv.tw> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <20030215180924.GA6102@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030215180924.GA6102@leafy.idv.tw> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 02:09:24AM +0800, leafy wrote: > Grepping the corresponding library: > leafy@leafy:/usr/X11R6/plugins/designer$ nm libwizards.so |grep Z22 > 000256f0 T _Z22qCleanupImages_wizardsv > > So ld is not finding a symbol which is in the correct library. > > Jiawei Ye 1. no CPU optimization used 2. no extra CFLAGS 3. no extra CXXFLAGS these apply to both world and ports. and the strange ld-elf.so.1 error still ocurs. -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 21:17: 6 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 734AA37B401 for ; Sat, 15 Feb 2003 21:17:05 -0800 (PST) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D02A43FAF for ; Sat, 15 Feb 2003 21:17:04 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.132.128] (port=49155 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:4) id 18kHAl-000LtJ-00 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 13:17:03 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1G5H1hW000660 for ; Sun, 16 Feb 2003 13:17:01 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1G5H160000659 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 13:17:01 +0800 (CST) Date: Sun, 16 Feb 2003 13:17:01 +0800 From: leafy To: freebsd-current@FreeBSD.ORG Subject: Re: gcc3.2.2 import might have trashed ld-elf.so.1-DAY3 Message-ID: <20030216051701.GA648@leafy.idv.tw> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <20030215180924.GA6102@leafy.idv.tw> <20030216050433.GA38216@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030216050433.GA38216@leafy.idv.tw> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Built world on Sun Feb 16 04:56:37 GMT, It still fails with the same message /usr/libexec/ld-elf.so.1: /usr/X11R6/plugins/designer/libwizards.so: Undefined symbol "_Z22qCleanupImages_wizardsv" -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 21:20:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01D9C37B401 for ; Sat, 15 Feb 2003 21:20:30 -0800 (PST) Received: from mx9.mail.ru (mx9.mail.ru [194.67.57.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86B5043FDD for ; Sat, 15 Feb 2003 21:20:28 -0800 (PST) (envelope-from kan@mail.ru) Received: from [141.154.59.211] (helo=kan.dnsalias.net) by mx9.mail.ru with esmtp (Exim SMTP.9) id 18kHDy-0007tq-00; Sun, 16 Feb 2003 08:20:23 +0300 Received: from kan.dnsalias.net (localhost [IPv6:::1]) by kan.dnsalias.net (8.12.7/8.12.6) with ESMTP id h1G5KKR3042828; Sun, 16 Feb 2003 00:20:20 -0500 (EST) (envelope-from kan@kan.dnsalias.net) Received: (from kan@localhost) by kan.dnsalias.net (8.12.7/8.12.6/Submit) id h1G5KI9B042767; Sun, 16 Feb 2003 00:20:18 -0500 (EST) Date: Sun, 16 Feb 2003 00:20:18 -0500 From: Alexander Kabaev To: leafy Cc: freebsd-current@FreeBSD.ORG Subject: Re: gcc3.2.2 import might have trashed ld-elf.so.1 Message-Id: <20030216002018.44231799.kabaev@bellatlantic.net> In-Reply-To: <20030215180924.GA6102@leafy.idv.tw> References: <20030215180924.GA6102@leafy.idv.tw> Reply-To: ak03@gte.com X-Mailer: Sylpheed version 0.8.9claws42 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 16 Feb 2003 02:09:24 +0800 leafy wrote: > I rebuilt and installed world on Friday and reinstalled ALL my ports > with 'portupgrade -ra'. I have found the exact line that will trigger > the ld "undefined symbol" error. > > /usr/X11R6/bin/uic -nounload -tr tr2i18n -i htmlpageinfo.h > ./htmlpageinfo.ui > htmlpageinfo.cc.temp ; ret=$?; sed -e "s,tr2i18n( > \"\" ),QString::null,g" htmlpageinfo.cc.temp | sed -e "s,tr2i18n( > \"\"\, \"\" ),QString::null,g" | sed -e > "s,image\([0-9][0-9]*\)_data,img\1_htmlpageinfo,g" >> htmlpageinfo.cc > ; rm -f htmlpageinfo.cc.temp ; if test "$ret" = 0; then echo '#include > "htmlpageinfo.moc"' >>htmlpageinfo.cc; else rm -f htmlpageinfo.cc ; > exit $ret ; fi QT's uic binary does not use libwizards.so. Please take time to dig a little deeper and figure what binary exactly is failing. It is doubtful someone will be able to help you otherwise. -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 21:52:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3F6237B401 for ; Sat, 15 Feb 2003 21:52:39 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 9FBA943F85 for ; Sat, 15 Feb 2003 21:52:38 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 43768 invoked by uid 1000); 16 Feb 2003 05:52:38 -0000 Date: Sat, 15 Feb 2003 21:52:38 -0800 (PST) From: Nate Lawson To: "Matthew N. Dodd" Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: sys/pci/if* fixes In-Reply-To: <20030215092452.E73971@sasami.jurai.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Matthew N. Dodd wrote: > On Fri, 14 Feb 2003, Nate Lawson wrote: > > Also, except for xl, all drivers have a common cleanup on error in > > attach that backs out allocated resources with no assumptions about the > > order they were allocated in. > > Please see if_pcn.c for the correct approach to freeing resources; its not > necessary to wrap evrything in 'if (sc && error != 0) {}'. If execution > reaches the 'fail' label then you assume that is what happened. The 'if' is a matter of coding style. Which is preferred: multiple returns from the same function (one which is only reachable from a goto) or one linear path with an 'if' to see if this is an error exit? Regardless, the 'if (sc)' is necessary in ti.diff because the KLD_MODULE check at the beginning may goto fail before device_get_softc(). > I also think you should just drop and reaquire locks around the > bus_setup_intr() rather than moving code around. See the previous thread on this regarding my original dc(4) changes. It is bogus to create a lock with mtx_init and then immediately lock it for the entire attach routine just for the intention of ensuring exclusive access to the device. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 22:13: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E53A637B401; Sat, 15 Feb 2003 22:13:02 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D6EE43FAF; Sat, 15 Feb 2003 22:13:02 -0800 (PST) (envelope-from winter@jurai.net) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.6/8.12.5) with ESMTP id h1G6D1vA056974; Sun, 16 Feb 2003 01:13:01 -0500 (EST) (envelope-from winter@jurai.net) Date: Sun, 16 Feb 2003 01:13:01 -0500 (EST) From: "Matthew N. Dodd" To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: sys/pci/if* fixes In-Reply-To: Message-ID: <20030216011126.D73971@sasami.jurai.net> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Nate Lawson wrote: > The 'if' is a matter of coding style. Which is preferred: multiple > returns from the same function (one which is only reachable from a goto) > or one linear path with an 'if' to see if this is an error exit? In this case a single return is harder to read. > See the previous thread on this regarding my original dc(4) changes. > It is bogus to create a lock with mtx_init and then immediately lock it > for the entire attach routine just for the intention of ensuring > exclusive access to the device. The problem is that the drivers aren't properly turning off interrrupts before setting up the interrupt handler. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 22:27: 8 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA57B37B401 for ; Sat, 15 Feb 2003 22:27:04 -0800 (PST) Received: from relay8.melbpc.org.au (newglider.melbpc.org.au [203.12.152.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 362F343FBD for ; Sat, 15 Feb 2003 22:27:03 -0800 (PST) (envelope-from kpeter@melbpc.org.au) Received: from melbpc.org.au (a2-34.melbpc.org.au [203.12.157.34]) by relay8.melbpc.org.au (8.12.6/8.12.6) with ESMTP id h1G6QwP5052328 for ; Sun, 16 Feb 2003 17:26:59 +1100 (EST) (envelope-from kpeter@melbpc.org.au) Message-ID: <3E4F2F30.1000906@melbpc.org.au> Date: Sun, 16 Feb 2003 17:26:56 +1100 From: Peter Kostouros Reply-To: kpeter@melbpc.org.au Organization: Private Individual User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3a) Gecko/20021222 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-current@FreeBSD.ORG Subject: Re: gcc3.2.2 import might have trashed ld-elf.so.1 References: <20030215180924.GA6102@leafy.idv.tw> <20030216002018.44231799.kabaev@bellatlantic.net> In-Reply-To: <20030216002018.44231799.kabaev@bellatlantic.net> Content-Type: multipart/mixed; boundary="------------090901090507050605030206" X-RAVMilter-Version: 8.3.4(snapshot 20020706) (relay1) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------090901090507050605030206 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi The problem I have is with designer, Qt's IDE. It was working well until a cvsup a few days ago. I hope the attached can help. Alexander Kabaev wrote: >On Sun, 16 Feb 2003 02:09:24 +0800 >leafy wrote: > > > >>I rebuilt and installed world on Friday and reinstalled ALL my ports >>with 'portupgrade -ra'. I have found the exact line that will trigger >>the ld "undefined symbol" error. >> >>/usr/X11R6/bin/uic -nounload -tr tr2i18n -i htmlpageinfo.h >>./htmlpageinfo.ui > htmlpageinfo.cc.temp ; ret=$?; sed -e "s,tr2i18n( >>\"\" ),QString::null,g" htmlpageinfo.cc.temp | sed -e "s,tr2i18n( >>\"\"\, \"\" ),QString::null,g" | sed -e >>"s,image\([0-9][0-9]*\)_data,img\1_htmlpageinfo,g" >> htmlpageinfo.cc >>; rm -f htmlpageinfo.cc.temp ; if test "$ret" = 0; then echo '#include >>"htmlpageinfo.moc"' >>htmlpageinfo.cc; else rm -f htmlpageinfo.cc ; >>exit $ret ; fi >> >> > >QT's uic binary does not use libwizards.so. Please take time to dig a >little deeper and figure what binary exactly is failing. It is doubtful >someone will be able to help you otherwise. > > > -- Regards Peter As always the organisation disavows knowledge of this email --------------090901090507050605030206 Content-Type: text/plain; name="typescript" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="typescript" Script started on Sun Feb 16 17:21:26 2003 bash-2.05b$ exitrm .*~*~jed .cvsrccdless cv*scd cvsup//usr/share/ex*                 gdb -f /opt/de  qt/bin/designer/q        signer GNU gdb 5.2.1 (FreeBSD) Copyright 2002 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-undermydesk-freebsd"... (no debugging symbols found)... (gdb) r Starting program: /opt/qt-x11-free-3.1.1/bin/designer (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... Xlib: extension "GLX" missing on display ":0.0". Xlib: extension "GLX" missing on display ":0.0". (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)... Program received signal SIGSEGV, Segmentation fault. 0x00000000 in ?? () (gdb) bt #0 0x00000000 in ?? () #1 0x28f8204c in __static_initialization_and_destruction_0(int, int) () from /opt/kde-3.1/lib/libkio.so.5 #2 0x28f8209a in _GLOBAL__D__ZNK13KOpenSSLProxy9hasLibSSLEv () from /opt/kde-3.1/lib/libkio.so.5 #3 0x28f6a6d9 in __do_global_dtors_aux () from /opt/kde-3.1/lib/libkio.so.5 #4 0x29101c91 in _fini () from /opt/kde-3.1/lib/libkio.so.5 #5 0x2827716c in dlclose () from /usr/libexec/ld-elf.so.1 #6 0x28749c89 in QLibraryPrivate::freeLibrary() () from /opt/qt/lib/libqt-mt.so.3 #7 0x2876a6bd in QLibrary::unload() () from /opt/qt/lib/libqt-mt.so.3 #8 0x2874ddc0 in QComLibrary::unload() () from /opt/qt/lib/libqt-mt.so.3 #9 0x2874dce9 in QComLibrary::~QComLibrary() () from /opt/qt/lib/libqt-mt.so.3 #10 0x28768147 in QGPluginManager::addLibrary(QLibrary*) () from /opt/qt/lib/libqt-mt.so.3 #11 0x28767495 in QGPluginManager::featureList() const () from /opt/qt/lib/libqt-mt.so.3 #12 0x08092fca in MainWindow::setupPluginManagers() () #13 0x0807cfcd in MainWindow::MainWindow(bool, bool, QString const&) () #14 0x0807b4db in main () #15 0x0807a995 in _start () (gdb) q up  q The program is running. Exit anyway? (y or n) y bash-2.05b$ exit exit Script done on Sun Feb 16 17:22:34 2003 --------------090901090507050605030206-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 22:28:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2EE237B401 for ; Sat, 15 Feb 2003 22:28:54 -0800 (PST) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F95F43F75 for ; Sat, 15 Feb 2003 22:28:54 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.132.128] (port=49173 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:4) id 18kIIH-000OPA-00 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 14:28:53 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.7/8.12.7) with ESMTP id h1G6SqhW017053 for ; Sun, 16 Feb 2003 14:28:52 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.7/8.12.7/Submit) id h1G6Sqx1017052 for freebsd-current@FreeBSD.ORG; Sun, 16 Feb 2003 14:28:52 +0800 (CST) Date: Sun, 16 Feb 2003 14:28:52 +0800 From: leafy To: freebsd-current@FreeBSD.ORG Subject: Re: gcc3.2.2 import might have trashed ld-elf.so.1 Message-ID: <20030216062852.GA17038@leafy.idv.tw> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <20030215180924.GA6102@leafy.idv.tw> <20030216002018.44231799.kabaev@bellatlantic.net> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030216002018.44231799.kabaev@bellatlantic.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 12:20:18AM -0500, Alexander Kabaev wrote: > QT's uic binary does not use libwizards.so. Please take time to dig a > little deeper and figure what binary exactly is failing. It is doubtful > someone will be able to help you otherwise. > > -- > Alexander Kabaev yes, ldd'ing uic reveals that as well. But running this line alone: /usr/X11R6/bin/uic -i htmlpageinfo.h ./htmlpageinfo.ui produces the above error. Any suggestion? -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 22:33:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3035537B401 for ; Sat, 15 Feb 2003 22:33:41 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 2D4A443FBD for ; Sat, 15 Feb 2003 22:33:40 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 43819 invoked by uid 1000); 16 Feb 2003 06:33:42 -0000 Date: Sat, 15 Feb 2003 22:33:42 -0800 (PST) From: Nate Lawson To: "Matthew N. Dodd" Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: sys/pci/if* fixes In-Reply-To: <20030216011126.D73971@sasami.jurai.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 16 Feb 2003, Matthew N. Dodd wrote: > On Sat, 15 Feb 2003, Nate Lawson wrote: > > The 'if' is a matter of coding style. Which is preferred: multiple > > returns from the same function (one which is only reachable from a goto) > > or one linear path with an 'if' to see if this is an error exit? > > In this case a single return is harder to read. I'm fine with going back to that style if someone else will corroborate this. One other advantage to the single return is that if a routine returns an error but this error is not checked, it will still be caught with my code whereas attach will return 0 unless code explicitly requests a failure. This is not a theoretical bug, many of the calls to bus_dma_tag_create() did not check for errors returned and would still return 0. However, this was never triggered due to that only happening on a very low memory condition. > > See the previous thread on this regarding my original dc(4) changes. > > It is bogus to create a lock with mtx_init and then immediately lock it > > for the entire attach routine just for the intention of ensuring > > exclusive access to the device. > > The problem is that the drivers aren't properly turning off interrrupts > before setting up the interrupt handler. This is on -current, turning off interrupts should be a very rare event. On -stable, I plan to only make the bugfixes in place since there is no locking to deal with. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Feb 15 23:35: 6 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2357837B401 for ; Sat, 15 Feb 2003 23:35:05 -0800 (PST) Received: from mail.musha.org (daemon.musha.org [210.189.104.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428D243FBD for ; Sat, 15 Feb 2003 23:35:04 -0800 (PST) (envelope-from knu@iDaemons.org) Received: from daemon.musha.org (daemon.local.idaemons.org [192.168.1.1]) by mail.musha.org (Postfix) with ESMTP id DA7A554C3B for ; Sun, 16 Feb 2003 16:35:02 +0900 (JST) Date: Sun, 16 Feb 2003 16:35:02 +0900 Message-ID: <86lm0gel09.wl%knu@iDaemons.org> From: "Akinori MUSHA" To: current@FreeBSD.org Subject: CURRENT reboots frequently User-Agent: Wanderlust/2.11.1 (Wonderwall) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.7 (Fujiidera) APEL/10.4 MULE XEmacs/21.4 (patch 12) (Portable Code) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by EMIKO 1.14.1 - "Choanoflagellata") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have frequent reboots on my CURRENT box and each time it boots up and falls onto the debugger with the following stack trace after local package initialization: Fatal trap 12: page fault while in kernel mode fault virtual address = 0xfc09423 fault code = supervisor read, page not present instruction pointer = 0x8:0xc03767e0 stack pointer = 0x10:0xd8de4560 frame pointer = 0x10:0xd8de4580 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = resume, IOPL = 0 current process = 676 (procmail) kernel: type 12 trap, code=0 Stopped at namei+0x12c: cmpxchgl %edx,0x50(%ecx) db> tr namei(d8de49c8,0,0,c45b72a0,d8de7ccc) at namei+0x12c vn_open_cred(d8de49c8,d8de4990,0,c150ae80,d8de4970) at vn_open_cred+0x26a nfs_dolock(d8de4ba0,c45b72a0,d8de4690,c45b72a0,c45b72a0) at nfs_dolock+0x2c5 nfs_advlock(d8de4ba0,c45b72a0,c041ed80,c466fe6c,c46788fc) at nfs_advlock+0x58 closef(c462d1a4,c45b72a0,d8de4c18,c02563a0,c083ad80) at closef+0x9c fdfree(c45b72a0,c044a140,0,2,0) at fdfree+0x196 exit1(c45b72a0,0,c46788fc,c45b72a0,805a030) at exit1+0x469 sys_exit(c45b72a0,d8de4d10,4,c45b72a0,1) at sys_exit+0x5e syscall(2f,2f,2f,805a030,2) at syscall+0x2aa Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (1, FreeBSD ELF32, sys_exit), eip = 0x280d4d37, esp = 0xbfbffbac, ebp = 0xbfbffbc8 --- Any ideas? -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "It went right by me -- At the time it went over my head I was looking out the window.. I should have looked at your face instead" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message