From owner-freebsd-stable@FreeBSD.ORG Sun May 11 00:20:53 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F50A37B404 for ; Sun, 11 May 2003 00:20:53 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F21543F85 for ; Sun, 11 May 2003 00:20:52 -0700 (PDT) (envelope-from eta@lclark.edu) Received: from [192.168.0.101] (12-224-152-126.client.attbi.com[12.224.152.126]) by attbi.com (sccrmhc02) with SMTP id <2003051107205100200h7o05e>; Sun, 11 May 2003 07:20:51 +0000 From: Eric Anholt To: Barry Irwin In-Reply-To: <01b501c3155d$c0397a40$4508a8c0@Beastie> References: <01b501c3155d$c0397a40$4508a8c0@Beastie> Content-Type: text/plain Organization: Message-Id: <1052638067.652.128.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 11 May 2003 00:27:48 -0700 Content-Transfer-Encoding: 7bit cc: freebsd-stable@freebsd.org Subject: Re: Problex with Matrox G450 and XFree86 4.3.0 on 4.8-STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 07:20:53 -0000 On Thu, 2003-05-08 at 05:31, Barry Irwin wrote: > Hi All > > I have just finished a re-install of a box that was previously working fine > under 4.7. > > The problem is that the matrox drm kernel module is failinf to initialise > correctly. > > :from the dmesg: > > FreeBSD 4.8-STABLE #0: Thu May 8 11:41:26 SAST 2003 > root@shagrat.prv.moria.org:/usr/src/sys/compile/SHAGRAT48 > Timecounter "i8254" frequency 1193182 Hz > CPU: Intel Pentium III (548.54-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x681 Stepping = 1 > > Features=0x383f9ff PAT,PSE36,MMX,FXSR,SSE> > real memory = 402587648 (393152K bytes) > avail memory = 386310144 (377256K bytes) > Preloaded elf kernel "kernel" at 0xc04fe000. > Preloaded elf module "vesa.ko" at 0xc04fe09c. > Preloaded elf module "linux.ko" at 0xc04fe138. > Preloaded elf module "agp.ko" at 0xc04fe1d8. > Preloaded elf module "mga.ko" at 0xc04fe274. > VESA: v3.0, 32768k memory, flags:0x1, mode table:0xc00c52cd (c00052cd) > VESA: Matrox Graphics Inc. > Pentium Pro MTRR support enabled > md0: Malloc disk > Using $PIR table, 7 entries at 0xc00fdba0 > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > agp0: mem 0xe0000000-0xe3ffffff > at device 0.0 on pci0 > pcib1: at device 1.0 on pci0 > pci1: on pcib1 > drm0: mem > 0xe5000000-0xe57fffff,0xe4000000-0xe4003fff,0xe8000000-0xe9ffffff irq 11 at > device 0.0 on pci1 > error: [drm:mga_init] *ERROR* Cannot initialize the agpgart module. > device_probe_and_attach: drm0 attach returned 12 > > System is running a world and kernel CVSUP'd today. > The agpgart device exists: > -bash-2.05b$ ls -lad /dev/agpgart > crw------- 1 root wheel 148, 0 May 8 11:06 /dev/agpgart > > Kernel Configuration also includes "agp" You can't have both agp_load="YES" in loader.conf and agp in your kernel. Remove it from loader.conf. > -bash-2.05b$ kldstat > Id Refs Address Size Name > 1 6 0xc0100000 3bae20 kernel > 2 1 0xc04bb000 5448 vesa.ko > 3 1 0xc04c1000 18ba4 linux.ko > 4 1 0xc04da000 ac8c agp.ko > 5 1 0xc04e5000 1738c mga.ko > 6 1 0xc1d9b000 2000 green_saver.ko > > When trying to start X: > > XFree86 Version 4.3.0 > Release Date: 27 February 2003 > X Protocol Version 11, Revision 0, Release 6.6 > Build Operating System: FreeBSD 4.8 i386 [ELF] > Build Date: 08 May 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: Thu May 8 14:36:26 2003 > (==) Using config file: "/etc/X11/XF86Config" > (EE) MGA: Failed to load module "mga_hal" (module does not exist, 0) > (EE) MGA: Failed to load module "mga_hal" (module does not exist, 0) > (EE) MGA(1): Not initializing the DRI on the second head > > I cant find any reference to the mga_hal module. I know that Previously I > needed to build the X Server with GXX_MATROX enable to use the matrox > supplied HAL driver. The hal module is not needed for the DRI, generally. I don't completely understand how the DRI works with multihead Matrox. I think you're supposed to be able to do accelerated DRI on both heads with the mga_hal module with one of the driver options, but I have never tested it. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-stable@FreeBSD.ORG Sun May 11 00:28:32 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4522537B401 for ; Sun, 11 May 2003 00:28:32 -0700 (PDT) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9724343F75 for ; Sun, 11 May 2003 00:28:31 -0700 (PDT) (envelope-from eta@lclark.edu) Received: from [192.168.0.101] (12-224-152-126.client.attbi.com[12.224.152.126]) by attbi.com (sccrmhc03) with SMTP id <20030511072830003000lm9be>; Sun, 11 May 2003 07:28:30 +0000 From: Eric Anholt To: Bjarne Wichmann Petersen In-Reply-To: <200305110858.58951.freebsd.nospam@mekanix.dk> References: <01b501c3155d$c0397a40$4508a8c0@Beastie> <200305110858.58951.freebsd.nospam@mekanix.dk> Content-Type: text/plain Organization: Message-Id: <1052638526.652.138.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 11 May 2003 00:35:27 -0700 Content-Transfer-Encoding: 7bit cc: freebsd-stable@freebsd.org cc: Barry Irwin Subject: Re: Problex with Matrox G450 and XFree86 4.3.0 on 4.8-STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 07:28:32 -0000 On Sat, 2003-05-10 at 23:58, Bjarne Wichmann Petersen wrote: > On Thursday 08 May 2003 14:31, Barry Irwin wrote: > > > Any bright ideas. I've had a look at > > http://people.freebsd.org/~anholt/dri/index.html and all seems ane to me. > > I'm using G450 as well and followed the above link. I'm not sure mga_hal is a > must if you want to run drm/dri. It doesn't load here either, and drm > works... sorta. But I've got a few issues: > > 1) drm can only be initialized after a reboot. Any resetting af X after a > reboot will make drm fail. > > 2) *sometimes* drm/dri/opengl doesn't look like it's working properly. Eg. > sometimes the KDE-screensaver only occupies a *part* of the upper left corner > (guess it's something like 640x480). You don't need mga_hal. On my X site I have: The MGA hal is a closed-source hardware access library from Matrox. XFree86 includes the ability to make a loadable module using this library to add features to XFree86's Matrox support. If the loadable module is present it enables TV Out and dualhead for G400 cards (non-G400 dualhead cards don't need it). If it isn't found, an error message is printed about it being missing but it's not a problem unless you need these features. There's some more that having the mga_hal changes, but I wasn't clear on what it was. I know about the drm not successfully initilizing on the second start of XFree86. This is something that, afaik, only occurs with KDE. My guess is that there's something going on with forking that some KDE program does which confuses the DRM. I made a patch for it, but the one person who has tested it so far said it didn't help. I don't know about #2. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-stable@FreeBSD.ORG Sun May 11 08:22:26 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F7B737B401 for ; Sun, 11 May 2003 08:22:26 -0700 (PDT) Received: from remt19.cluster1.charter.net (remt19.cluster1.charter.net [209.225.8.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 889CB43F3F for ; Sun, 11 May 2003 08:22:25 -0700 (PDT) (envelope-from glennpj@charter.net) Received: from [24.158.214.251] (HELO gforce.johnson.home) by remt19.cluster1.charter.net (CommuniGate Pro SMTP 4.0.6) with ESMTP id 25845356; Sun, 11 May 2003 11:22:24 -0400 Received: from gforce.johnson.home (localhost [127.0.0.1]) by gforce.johnson.home (8.12.9/8.12.9) with ESMTP id h4BFMOnR002020; Sun, 11 May 2003 10:22:24 -0500 (CDT) (envelope-from glenn@gforce.johnson.home) Received: (from glenn@localhost) by gforce.johnson.home (8.12.9/8.12.9/Submit) id h4BFMOUU002019; Sun, 11 May 2003 10:22:24 -0500 (CDT) (envelope-from glenn) From: Glenn Johnson Date: Sun, 11 May 2003 10:22:24 -0500 To: Eric Anholt Message-ID: <20030511152224.GA1028@gforce.johnson.home> Mail-Followup-To: Eric Anholt , Bjarne Wichmann Petersen , freebsd-stable@freebsd.org, Barry Irwin References: <01b501c3155d$c0397a40$4508a8c0@Beastie> <200305110858.58951.freebsd.nospam@mekanix.dk> <1052638526.652.138.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1052638526.652.138.camel@leguin> User-Agent: Mutt/1.4.1i cc: freebsd-stable@freebsd.org cc: Barry Irwin Subject: Re: Problex with Matrox G450 and XFree86 4.3.0 on 4.8-STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 15:22:26 -0000 On Sun, May 11, 2003 at 12:35:27AM -0700, Eric Anholt wrote: > On Sat, 2003-05-10 at 23:58, Bjarne Wichmann Petersen wrote: > > > On Thursday 08 May 2003 14:31, Barry Irwin wrote: > > > > > Any bright ideas. I've had a look at > > > http://people.freebsd.org/~anholt/dri/index.html and all seems ane > > > to me. > > > > I'm using G450 as well and followed the above link. I'm not sure > > mga_hal is a must if you want to run drm/dri. It doesn't load here > > either, and drm works... sorta. But I've got a few issues: > > > > 1) drm can only be initialized after a reboot. Any resetting af X > > after a reboot will make drm fail. > > > > 2) *sometimes* drm/dri/opengl doesn't look like it's working > > properly. Eg. sometimes the KDE-screensaver only occupies a *part* > > of the upper left corner (guess it's something like 640x480). > > You don't need mga_hal. On my X site I have: > > The MGA hal is a closed-source hardware access library from > Matrox. XFree86 includes the ability to make a loadable > module using this library to add features to XFree86's Matrox > support. If the loadable module is present it enables TV Out > and dualhead for G400 cards (non-G400 dualhead cards don't > need it). If it isn't found, an error message is printed about > it being missing but it's not a problem unless you need these > features. > > There's some more that having the mga_hal changes, but I wasn't clear > on what it was. I think it is also needed to support flat panel displays. -- Glenn Johnson glennpj@charter.net From owner-freebsd-stable@FreeBSD.ORG Sun May 11 13:07:42 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41CBB37B401 for ; Sun, 11 May 2003 13:07:42 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E2E243FE1 for ; Sun, 11 May 2003 13:07:41 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 18F28530E; Sun, 11 May 2003 22:07:39 +0200 (CEST) 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: Mario Pranjic References: From: Dag-Erling Smorgrav Date: Sun, 11 May 2003 22:07:38 +0200 In-Reply-To: (Mario Pranjic's message of "Thu, 8 May 2003 13:36:31 +0200 (MET DST)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: "Simon L. Nielsen" cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD5 make world fails X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 20:07:42 -0000 Mario Pranjic writes: > Sorry, misprint, I ment RELENG_5_0: > *default release=cvs tag=RELENG_5_0 You don't want that. DES -- Dag-Erling Smorgrav - des@ofug.org From owner-freebsd-stable@FreeBSD.ORG Sun May 11 15:08:22 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D136337B41B for ; Sun, 11 May 2003 15:08:22 -0700 (PDT) Received: from oja.braithwaite.net (foobar24.dsl.alink.net [207.135.75.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28F3643F3F for ; Sun, 11 May 2003 15:08:22 -0700 (PDT) (envelope-from matt@braithwaite.net) Received: from dogberry.braithwaite.net (foobar18.dsl.alink.net [207.135.75.18]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (verified OK)) by oja.braithwaite.net (Postfix) with ESMTP id F066093; Sun, 11 May 2003 15:08:20 -0700 (PDT) Received: by dogberry.braithwaite.net (Postfix, from userid 1001) id 771395294; Sun, 11 May 2003 15:08:18 -0700 (PDT) From: Matthew Braithwaite To: "Sam Leffler" References: <1a5401c2db63$945db690$52557f42@errno.com> Date: Sun, 11 May 2003 15:08:18 -0700 In-Reply-To: <1a5401c2db63$945db690$52557f42@errno.com> ("Sam Leffler"'s message of "Sun, 23 Feb 2003 09:47:05 -0800") Message-ID: <86llxdb0h9.fsf@limekiller.braithwaite.net> User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: stable@freebsd.org cc: matt@braithwaite.net Subject: Re: iHEADS UP: ipsec packet filtering change X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 22:08:23 -0000 On Sun, 23 Feb 2003 09:47:05 -0800, "Sam Leffler" said: > >> Add a new config option IPSEC_FILTERGIF to control whether or not >> packets coming out of a GIF tunnel are re-processed by ipfw, >> et. al. By default they are not reprocessed. With the option they >> are. > > This may affect your ipfw/ipf rules. If you are happy with the > current behaviour then add IPSEC_FILTERGIF to your kernel config > file. I'm sure this was discussed to death somewhere, since it's a reversion of an earlier change, but just to beat a dead horse ... I encountered this change in a surprising way: Being new to IPSec, I started by setting up a gif tunnel (without IPSec) between my singly-homed host, fred, running FreeBSD: ep0 192.168.0.2/24 gif0 ${mynet}.27 -> ${mynet}.17 tunnel 192.168.0.2 -> 192.168.0.1 and a dual-homed host, bob, running NetBSD: tlp0 ${mynet}.24/28 tlp1 192.168.0.1/24 gif0 ${mynet}.24 -> ${mynet}.27 tunnel 192.168.0.1 -> 192.168.0.2 I did this so I could test the tunneling and the firewalling, and then introduce IPSec after I knew all that was working. Fred's firewall at this point would pass only ipencap packets over ep0, and I filtered the untunneled traffic on gif0. That worked just fine; fred's firewall saw both incoming and outgoing traffic on gif0 and filtered it. But then I turned on IPSec AH between 192.168.0.1 and 192.168.0.2, and changed fred's firewall to pass ah instead of ipencap on ep0. When I made this change, fred's firewall continued seeing outbound packets on gif0, but stopped seeing inbound packets. The inbound packets on gif0 started bypassing the firewall entirely! Setting IPSEC_FILTERGIF fixed this, of course. But it seemed (and still seems) quite unintuitive: why should the presence or absence of IPSec over a tunnel determine whether firewall rules get applied? And what sense does it make to firewall outbound packets on gif0 but not incoming packets? I'm sure it makes sense from some perspective; I just wanted to contribute my confused little experience. :-) From owner-freebsd-stable@FreeBSD.ORG Sun May 11 16:30:00 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5206437B401 for ; Sun, 11 May 2003 16:30:00 -0700 (PDT) Received: from mail.2u2.nu (ns1.2u2.nu [62.59.31.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1933243FEA for ; Sun, 11 May 2003 16:29:59 -0700 (PDT) (envelope-from lj@2u2.nu) Received: from mail.2u2.nu (localhost [127.0.0.1]) by localhost (Postfix) with ESMTP id 1B87C625 for ; Sat, 10 May 2003 21:04:46 +0200 (CEST) Received: from localhost (atlantis.local.net [10.23.31.10]) by mail.2u2.nu (Postfix) with ESMTP id E953B54B for ; Sat, 10 May 2003 21:04:45 +0200 (CEST) Received: (qmail 13887 invoked by uid 109); 10 May 2003 19:08:38 -0000 Date: Sat, 10 May 2003 21:08:38 +0200 From: "L. Jankok" To: freebsd-stable@freebsd.org Message-ID: <20030510190836.GA13877@atlantis.local.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Operating-System: SunOS atlantis 5.9 sparc X-Sender: lj@2u2.nu X-message-flag: Outlook : A program to spread viri, but it can do mail too. Subject: make release headaches X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: lj@2u2.nu List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2003 23:30:00 -0000 Hi there, When I do a make buildworld and try to do a make release it will fail telling that it needs the CVSROOT directory. I do cvsup /etc/cvs-supfile and receive nothing ; # /etc/cvs-supfile *default host=cvsup3.nl.freebsd.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_4_8 *default delete use-rel-suffix *default compress cvsroot-all If I remove tag=RELENG_4_8 from the above I will receive the CVS* directories. I wonder why I have to remove tag=RELENG_4_8 to be able to receive the CVS dirs. I use the script below to me make the release, and it fails telling me the following ; Cannot check out files into the repository itself. Instead of moving the CVS* files to /home/newcvs I altered *default prefix=/usr to *default prefix=/home/newcvs and did a cvsup /etc/cvs-supfile again and also changed CVSROOT to /home/newcvs. Now another error occurs ; there is no repository /home/newcvs/src. A more /usr/src/release/Makefile showed me that I need to make three symlinks in /home/newcvs/{doc,ports,src}. This is already going much to far for a simple procedure.. And yet again I will receive another error : no such tag RELENG_4_8 If I change RELEASETAG from RELENG_4_8 to 4.8 make release will proceed (I tend to abort this mission now but I am curios where this will stop.. CVS insists on 4.8 Release all the time while cvsup has no problem..). Again I will receive an error message; cd: can't cd to /usr/release/usr/src/sys/conf.. and it stops here for me ;) .. going further will feel like remaking frankenstein. Can somebody explain to me why the above is going so terribly wrong ?. I tried man release ans the FreeBSD handbook without luck. # define needed variables for make release CHROOTDIR=/usr/release BUILDNAME=4.8-RELENG CVSROOT=/usr RELEASETAG=RELENG_4_8 NOPORTS=YES MAKE_ISOS=YES export CHROOTDIR BUILDNAME CVSROOT RELEASETAG NOPORTS MAKE_ISOS # make a ftp install dir and ISO's cd /usr/src/release make release -- The whole problem with the world is that fools and fanatics are always so certain of themselves, and wiser people so full of doubts. --Bertrand Russell From owner-freebsd-stable@FreeBSD.ORG Sun May 11 17:06:10 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 458DE37B401 for ; Sun, 11 May 2003 17:06:10 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls20o913.telia.com [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id E30FF43FE1 for ; Sun, 11 May 2003 17:06:07 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 51828 invoked by uid 1001); 12 May 2003 00:06:05 -0000 Date: Mon, 12 May 2003 02:06:04 +0200 From: Erik Trulsson To: "L. Jankok" Message-ID: <20030512000603.GA51514@falcon.midgard.homeip.net> Mail-Followup-To: "L. Jankok" , freebsd-stable@freebsd.org References: <20030510190836.GA13877@atlantis.local.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030510190836.GA13877@atlantis.local.net> User-Agent: Mutt/1.5.4i cc: freebsd-stable@freebsd.org Subject: Re: make release headaches X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 00:06:10 -0000 On Sat, May 10, 2003 at 09:08:38PM +0200, L. Jankok wrote: > > Hi there, > > When I do a make buildworld and try to do a make release it will fail > telling that it needs the CVSROOT directory. > > I do cvsup /etc/cvs-supfile and receive nothing ; > # /etc/cvs-supfile > *default host=cvsup3.nl.freebsd.org > *default base=/usr > *default prefix=/usr > *default release=cvs tag=RELENG_4_8 > *default delete use-rel-suffix > *default compress > cvsroot-all Shouldn't you have the src-all collection here also? Getting the actual sources also just might be useful, you know. > > If I remove tag=RELENG_4_8 from the above I will receive the CVS* directories. > I wonder why I have to remove tag=RELENG_4_8 to be able to receive the CVS dirs. 'make release' requires that you have a local copy of the whole cvs repository. It then checks out a copy of the desired release from the repository in order to create the release. If you don't specify a tag cvsup will fetch the whole repository for you (currently at some 1.5GB). If you specify a tag you will get only the sources with that tag, which is all that is needed for a normal buildworld. (The normal source tree is about 300MB in size.) -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-stable@FreeBSD.ORG Sun May 11 23:41:38 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7F2637B401 for ; Sun, 11 May 2003 23:41:38 -0700 (PDT) Received: from mail.2u2.nu (ns1.2u2.nu [62.59.31.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CE9C43F93 for ; Sun, 11 May 2003 23:41:35 -0700 (PDT) (envelope-from lj@2u2.nu) Received: from mail.2u2.nu (localhost [127.0.0.1]) by localhost (Postfix) with ESMTP id B5452622 for ; Mon, 12 May 2003 08:37:38 +0200 (CEST) Received: from localhost (atlantis.local.net [10.23.31.10]) by mail.2u2.nu (Postfix) with ESMTP id 8E480611 for ; Mon, 12 May 2003 08:37:38 +0200 (CEST) Received: (qmail 15735 invoked by uid 109); 12 May 2003 06:41:33 -0000 Date: Mon, 12 May 2003 08:41:33 +0200 From: "L. Jankok" To: freebsd-stable@freebsd.org Message-ID: <20030512064133.GA15722@atlantis.local.net> References: <20030510190836.GA13877@atlantis.local.net> <20030512000603.GA51514@falcon.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030512000603.GA51514@falcon.midgard.homeip.net> User-Agent: Mutt/1.4i X-Operating-System: SunOS atlantis 5.9 sparc X-Sender: lj@2u2.nu X-message-flag: Outlook : A program to spread viri, but it can do mail too. Subject: Re: make release headaches X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: lj@2u2.nu List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 06:41:39 -0000 Hi, I have two supfiles, one for the source and one for cvsroot. I have already downloaded the source did a make buildworld and a make buildkernel (with a different KERNCONF), then did a make installkernel to finally go to single user mode to do a make installworld.. all this went fine. It is the make release which is giving me a hard time. On Mon, May 12, 2003 at 02:06:04AM +0200, Erik Trulsson wrote: :On Sat, May 10, 2003 at 09:08:38PM +0200, L. Jankok wrote: :> :> Hi there, :> :> When I do a make buildworld and try to do a make release it will fail :> telling that it needs the CVSROOT directory. :> :> I do cvsup /etc/cvs-supfile and receive nothing ; :> # /etc/cvs-supfile :> *default host=cvsup3.nl.freebsd.org :> *default base=/usr :> *default prefix=/usr :> *default release=cvs tag=RELENG_4_8 :> *default delete use-rel-suffix :> *default compress :> cvsroot-all : :Shouldn't you have the src-all collection here also? Getting the :actual sources also just might be useful, you know. : :> :> If I remove tag=RELENG_4_8 from the above I will receive the CVS* directories. :> I wonder why I have to remove tag=RELENG_4_8 to be able to receive the CVS dirs. : : :'make release' requires that you have a local copy of the whole cvs :repository. It then checks out a copy of the desired release from the :repository in order to create the release. If you don't specify a tag :cvsup will fetch the whole repository for you (currently at some :1.5GB). If you specify a tag you will get only the sources with that :tag, which is all that is needed for a normal buildworld. (The normal :source tree is about 300MB in size.) : : :-- : :Erik Trulsson :ertr1013@student.uu.se -- The whole problem with the world is that fools and fanatics are always so certain of themselves, and wiser people so full of doubts. --Bertrand Russell From owner-freebsd-stable@FreeBSD.ORG Mon May 12 03:09:34 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4B9D37B401 for ; Mon, 12 May 2003 03:09:34 -0700 (PDT) Received: from host185.dolanmedia.com (host185.dolanmedia.com [209.98.197.185]) by mx1.FreeBSD.org (Postfix) with SMTP id C104543FEA for ; Mon, 12 May 2003 03:09:33 -0700 (PDT) (envelope-from greg.panula@dolaninformation.com) Received: (qmail 97605 invoked by uid 0); 12 May 2003 10:09:33 -0000 Received: from greg.panula@dolaninformation.com by proxy by uid 82 with qmail-scanner-1.15 ( Clear:. Processed in 1.21955 secs); 12 May 2003 10:09:33 -0000 X-Qmail-Scanner-Mail-From: greg.panula@dolaninformation.com via proxy X-Qmail-Scanner-Rcpt-To: matt-lists@braithwaite.net,stable@freebsd.org X-Qmail-Scanner: 1.15 (Clear:. Processed in 1.21955 secs) Received: from unknown (HELO mail.dolanmedia.com) (10.1.1.23) by host185.dolanmedia.com with SMTP; 12 May 2003 10:09:31 -0000 Received: from dolaninformation.com (10.1.1.135) by mail.dolanmedia.com (Worldmail 1.3.167); 12 May 2003 05:09:31 -0500 Sender: pang@FreeBSD.ORG Message-ID: <3EBF72DA.AB134EF0@dolaninformation.com> Date: Mon, 12 May 2003 05:09:30 -0500 From: Greg Panula Organization: Dolan Information Center Inc X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Matthew Braithwaite References: <1a5401c2db63$945db690$52557f42@errno.com> <86llxdb0h9.fsf@limekiller.braithwaite.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: stable@freebsd.org Subject: Re: iHEADS UP: ipsec packet filtering change X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: greg.panula@dolaninformation.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 10:09:35 -0000 Matthew Braithwaite wrote: > > On Sun, 23 Feb 2003 09:47:05 -0800, "Sam Leffler" said: > > > >> Add a new config option IPSEC_FILTERGIF to control whether or not > >> packets coming out of a GIF tunnel are re-processed by ipfw, > >> et. al. By default they are not reprocessed. With the option they > >> are. > > > > This may affect your ipfw/ipf rules. If you are happy with the > > current behaviour then add IPSEC_FILTERGIF to your kernel config > > file. > > I'm sure this was discussed to death somewhere, since it's a reversion > of an earlier change, but just to beat a dead horse ... I encountered > this change in a surprising way: > > Being new to IPSec, I started by setting up a gif tunnel (without > IPSec) between my singly-homed host, fred, running FreeBSD: > > ep0 192.168.0.2/24 > gif0 ${mynet}.27 -> ${mynet}.17 > tunnel 192.168.0.2 -> 192.168.0.1 > > and a dual-homed host, bob, running NetBSD: > > tlp0 ${mynet}.24/28 > tlp1 192.168.0.1/24 > gif0 ${mynet}.24 -> ${mynet}.27 > tunnel 192.168.0.1 -> 192.168.0.2 > > I did this so I could test the tunneling and the firewalling, and then > introduce IPSec after I knew all that was working. Fred's firewall at > this point would pass only ipencap packets over ep0, and I filtered > the untunneled traffic on gif0. That worked just fine; fred's > firewall saw both incoming and outgoing traffic on gif0 and filtered > it. > > But then I turned on IPSec AH between 192.168.0.1 and 192.168.0.2, and > changed fred's firewall to pass ah instead of ipencap on ep0. When I > made this change, fred's firewall continued seeing outbound packets on > gif0, but stopped seeing inbound packets. The inbound packets on gif0 > started bypassing the firewall entirely! > > Setting IPSEC_FILTERGIF fixed this, of course. But it seemed (and > still seems) quite unintuitive: why should the presence or absence of > IPSec over a tunnel determine whether firewall rules get applied? And > what sense does it make to firewall outbound packets on gif0 but not > incoming packets? > > I'm sure it makes sense from some perspective; I just wanted to > contribute my confused little experience. :-) You don't really need the gif tunnels for ipsec. Gif is more geared towards ipv4 <=> ipv6 type tunnels. A few of ipsec how-to's mention using gif tunnels and I've been tripped up by it, too. ipsec is much easier without the gif tunnels. The ipsec policy definition is explained in the setkey man page. Basically for tunnels it is: spdadd ${remote net} ${local net} any -P in ipsec esp/tunnel/${remote gateway}-${local gateway}/unqiue; and spdadd ${local net} ${remote net} any -P out ipsec esp/tunnel/${local gateway}-${remote gateway}/unique; In your example above it looks like you just want to encrypt traffic between two hosts in the same subnet. So, you would just use transport mode instead of tunnel. Something like: (for fred) spdadd 192.168.0.1 192.168.0.2 any -P in esp/transport//unique; spdadd 192.168.0.2 192.168.0.1 any -P out esp/transport//unique; greg From owner-freebsd-stable@FreeBSD.ORG Mon May 12 12:24:49 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19A1F37B401; Mon, 12 May 2003 12:24:49 -0700 (PDT) Received: from mail.dannysplace.net (allxs.xs4all.nl [194.109.223.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0965743FE5; Mon, 12 May 2003 12:24:44 -0700 (PDT) (envelope-from fbsd@dannysplace.net) Received: from [192.168.100.228] (helo=llama) by mail.dannysplace.net with smtp (Exim 4.12) id 19FIug-000Hse-00; Mon, 12 May 2003 21:24:42 +0200 Message-ID: <005901c318bc$23433070$e464a8c0@llama> From: "Danny Carroll" To: , , Date: Mon, 12 May 2003 21:24:42 +0200 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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19FIug-000Hse-00*Uw5t0UwTc7w* Subject: Re: Proliant on a 6500 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Danny Carroll List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 19:24:49 -0000 Sorry to reply to myself, but I wanted to expand this to -stable and add some more info... See the original post at the bottom of this msg. I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI slots.) Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... They were: SMP: AP CPU# 3 Launched! SMP: AP CPU# 1 Launched! SMP: AP CPU# 2 Launched! now they are: SMP: AP CPU# 1 Launched! SMP: AP CPU# 2 Launched! SMP: AP CPU# 3 Launched! I don't think this is a SMP problem, but rather a SMP/Smart2 combined problem... Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 with a Smart2/p? -D ----- Original Message ----- From: "Danny Carroll" To: Sent: Monday, May 12, 2003 6:29 PM Subject: Proliant on a 6500 > Hiya all... > > I have a compaq proliant 6500 with 4 cpu's > I am trying to install 4.8 on it (I got it installed but it's SMP that does > not work). > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > Actually it gets two lines extra (mounting root off the ida controller). > > Now, scrolllock and caps and everything still work, (I can even sroll back > and read the text) but nothing else happens. > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) and > we'll see what happens, but I was wondering if you have seen this problem > before. > > One more thing... I only had the first two SMP settings in the kernel I had > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do I find > out how many interupts to set?? > > Any more tips?? > > Thanks... > -D > From owner-freebsd-stable@FreeBSD.ORG Mon May 12 13:14:59 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B68437B405; Mon, 12 May 2003 13:14:59 -0700 (PDT) Received: from dsl-217-155-122-94.zen.co.uk (dsl-217-155-122-94.zen.co.uk [217.155.122.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id A742A43F85; Mon, 12 May 2003 13:14:57 -0700 (PDT) (envelope-from chris.scott@uk.tiscali.com) Received: from [192.168.0.93] (helo=viper) by dsl-217-155-122-94.zen.co.uk with esmtp (Exim 4.14) id 19FJhB-0001P4-JT; Mon, 12 May 2003 21:14:49 +0100 Message-ID: <03a501c318c3$23d692a0$5d00a8c0@viper> From: "chris scott" To: "Danny Carroll" , , , References: <005901c318bc$23433070$e464a8c0@llama> Date: Mon, 12 May 2003 21:14:44 +0100 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 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Re: Proliant on a 6500 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 20:15:00 -0000 try bsd 5 the smp support is far better in that, in fact it was once of the major things that was overhauled, it may solve your problem ----- Original Message ----- From: "Danny Carroll" To: ; ; Sent: Monday, May 12, 2003 8:24 PM Subject: Re: Proliant on a 6500 > Sorry to reply to myself, but I wanted to expand this to -stable and add > some more info... > See the original post at the bottom of this msg. > > I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI > slots.) > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... > > They were: > SMP: AP CPU# 3 Launched! > SMP: AP CPU# 1 Launched! > SMP: AP CPU# 2 Launched! > > now they are: > SMP: AP CPU# 1 Launched! > SMP: AP CPU# 2 Launched! > SMP: AP CPU# 3 Launched! > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > problem... > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 with a > Smart2/p? > -D > > ----- Original Message ----- > From: "Danny Carroll" > To: > Sent: Monday, May 12, 2003 6:29 PM > Subject: Proliant on a 6500 > > > > Hiya all... > > > > I have a compaq proliant 6500 with 4 cpu's > > I am trying to install 4.8 on it (I got it installed but it's SMP that > does > > not work). > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > Actually it gets two lines extra (mounting root off the ida controller). > > > > Now, scrolllock and caps and everything still work, (I can even sroll back > > and read the text) but nothing else happens. > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) and > > we'll see what happens, but I was wondering if you have seen this problem > > before. > > > > One more thing... I only had the first two SMP settings in the kernel I > had > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do I > find > > out how many interupts to set?? > > > > Any more tips?? > > > > Thanks... > > -D > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Mon May 12 14:12:51 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB8637B404; Mon, 12 May 2003 14:12:51 -0700 (PDT) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69F9043FAF; Mon, 12 May 2003 14:12:47 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.9/8.12.9) with ESMTP id h4CLCjLu010314; Mon, 12 May 2003 23:12:45 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.9/8.12.9/Submit) id h4CLCjfQ010313; Mon, 12 May 2003 23:12:45 +0200 (CEST) Date: Mon, 12 May 2003 23:12:45 +0200 From: Wilko Bulte To: chris scott Message-ID: <20030512211245.GB10256@freebie.xs4all.nl> References: <005901c318bc$23433070$e464a8c0@llama> <03a501c318c3$23d692a0$5d00a8c0@viper> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <03a501c318c3$23d692a0$5d00a8c0@viper> User-Agent: Mutt/1.4i X-OS: FreeBSD 4.8-STABLE X-PGP: finger wilko@freebsd.org cc: freebsd-smp@freebsd.org cc: freebsd-questions@freebsd.org cc: freebsd-stable@freebsd.org Subject: Re: Proliant on a 6500 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 21:12:52 -0000 On Mon, May 12, 2003 at 09:14:44PM +0100, chris scott wrote: I have been running 4.x on a quad 6500 at work. No problems. But not on a SmartArray in my case. W/ > try bsd 5 the smp support is far better in that, in fact it was once of the > major things that was overhauled, it may solve your problem > ----- Original Message ----- > From: "Danny Carroll" > To: ; ; > > Sent: Monday, May 12, 2003 8:24 PM > Subject: Re: Proliant on a 6500 > > > > Sorry to reply to myself, but I wanted to expand this to -stable and add > > some more info... > > See the original post at the bottom of this msg. > > > > I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI > > slots.) > > > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... > > > > They were: > > SMP: AP CPU# 3 Launched! > > SMP: AP CPU# 1 Launched! > > SMP: AP CPU# 2 Launched! > > > > now they are: > > SMP: AP CPU# 1 Launched! > > SMP: AP CPU# 2 Launched! > > SMP: AP CPU# 3 Launched! > > > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > > problem... > > > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 with > a > > Smart2/p? > > -D > > > > ----- Original Message ----- > > From: "Danny Carroll" > > To: > > Sent: Monday, May 12, 2003 6:29 PM > > Subject: Proliant on a 6500 > > > > > > > Hiya all... > > > > > > I have a compaq proliant 6500 with 4 cpu's > > > I am trying to install 4.8 on it (I got it installed but it's SMP that > > does > > > not work). > > > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > > Actually it gets two lines extra (mounting root off the ida controller). > > > > > > Now, scrolllock and caps and everything still work, (I can even sroll > back > > > and read the text) but nothing else happens. > > > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) and > > > we'll see what happens, but I was wondering if you have seen this > problem > > > before. > > > > > > One more thing... I only had the first two SMP settings in the kernel I > > had > > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do I > > find > > > out how many interupts to set?? > > > > > > Any more tips?? > > > > > > Thanks... > > > -D > > > > > > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" ---end of quoted text--- -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte From owner-freebsd-stable@FreeBSD.ORG Mon May 12 14:13:38 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6F4E37B407; Mon, 12 May 2003 14:13:37 -0700 (PDT) Received: from mail.dannysplace.net (allxs.xs4all.nl [194.109.223.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2296543FE5; Mon, 12 May 2003 14:13:36 -0700 (PDT) (envelope-from fbsd@dannysplace.net) Received: from [192.168.100.228] (helo=llama) by mail.dannysplace.net with smtp (Exim 4.12) id 19FKc2-000IL8-00; Mon, 12 May 2003 23:13:34 +0200 Message-ID: <006701c318cb$58cfd8b0$e464a8c0@llama> From: "Danny Carroll" To: , , References: <005901c318bc$23433070$e464a8c0@llama> Date: Mon, 12 May 2003 23:13:34 +0200 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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19FKc2-000IL8-00*WvubKGn6Iqg* cc: Poul-Henning Kamp Subject: Re: Proliant on a 6500 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Danny Carroll List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 21:13:38 -0000 More info... I freshly installed to a drive on the internal SCSI bus... Then I copied the smp kernel over and booted off the new drive (with the array card still inserted). The machine detected the array card and started up just fine... As soon as I tried to mount a logical drive the command froze. I was able to CTRL-C but it would not talk to the ida logical drives. This proves to me that it's an IDA thing... Now I'll cvsup to -STABLE and see if that makes a difference. After that I will try -CURRENT. Does anyone on the SMP lists (or Poul) want anything out of this machine (traces or whatever?) -D ----- Original Message ----- From: "Danny Carroll" To: ; ; Sent: Monday, May 12, 2003 9:24 PM Subject: Re: Proliant on a 6500 > Sorry to reply to myself, but I wanted to expand this to -stable and add > some more info... > See the original post at the bottom of this msg. > > I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI > slots.) > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... > > They were: > SMP: AP CPU# 3 Launched! > SMP: AP CPU# 1 Launched! > SMP: AP CPU# 2 Launched! > > now they are: > SMP: AP CPU# 1 Launched! > SMP: AP CPU# 2 Launched! > SMP: AP CPU# 3 Launched! > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > problem... > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 with a > Smart2/p? > -D > > ----- Original Message ----- > From: "Danny Carroll" > To: > Sent: Monday, May 12, 2003 6:29 PM > Subject: Proliant on a 6500 > > > > Hiya all... > > > > I have a compaq proliant 6500 with 4 cpu's > > I am trying to install 4.8 on it (I got it installed but it's SMP that > does > > not work). > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > Actually it gets two lines extra (mounting root off the ida controller). > > > > Now, scrolllock and caps and everything still work, (I can even sroll back > > and read the text) but nothing else happens. > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) and > > we'll see what happens, but I was wondering if you have seen this problem > > before. > > > > One more thing... I only had the first two SMP settings in the kernel I > had > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do I > find > > out how many interupts to set?? > > > > Any more tips?? > > > > Thanks... > > -D > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-stable@FreeBSD.ORG Mon May 12 16:09:50 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E194637B401; Mon, 12 May 2003 16:09:49 -0700 (PDT) Received: from mail.dannysplace.net (allxs.xs4all.nl [194.109.223.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id C935343FDD; Mon, 12 May 2003 16:09:48 -0700 (PDT) (envelope-from fbsd@dannysplace.net) Received: from [192.168.100.228] (helo=llama) by mail.dannysplace.net with smtp (Exim 4.12) id 19FMQV-000Ikg-00; Tue, 13 May 2003 01:09:47 +0200 Message-ID: <000401c318db$94ec3b80$e464a8c0@llama> From: "Danny Carroll" To: , , References: <005901c318bc$23433070$e464a8c0@llama> <006701c318cb$58cfd8b0$e464a8c0@llama> Date: Tue, 13 May 2003 01:09:47 +0200 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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19FMQV-000Ikg-00*avi4BXYzfN2* cc: Poul-Henning Kamp Subject: Re: Proliant on a 6500 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Danny Carroll List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2003 23:09:50 -0000 Still more info... It does not work on 5_0-RELEASE either. -D ----- Original Message ----- From: "Danny Carroll" To: ; ; Cc: "Poul-Henning Kamp" Sent: Monday, May 12, 2003 11:13 PM Subject: Re: Proliant on a 6500 > More info... > I freshly installed to a drive on the internal SCSI bus... > > Then I copied the smp kernel over and booted off the new drive (with the > array card still inserted). > The machine detected the array card and started up just fine... > As soon as I tried to mount a logical drive the command froze. I was able > to CTRL-C but it would not talk to the ida logical drives. > > This proves to me that it's an IDA thing... > > Now I'll cvsup to -STABLE and see if that makes a difference. > After that I will try -CURRENT. > > Does anyone on the SMP lists (or Poul) want anything out of this machine > (traces or whatever?) > > -D > > > ----- Original Message ----- > From: "Danny Carroll" > To: ; ; > > Sent: Monday, May 12, 2003 9:24 PM > Subject: Re: Proliant on a 6500 > > > > Sorry to reply to myself, but I wanted to expand this to -stable and add > > some more info... > > See the original post at the bottom of this msg. > > > > I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI > > slots.) > > > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... > > > > They were: > > SMP: AP CPU# 3 Launched! > > SMP: AP CPU# 1 Launched! > > SMP: AP CPU# 2 Launched! > > > > now they are: > > SMP: AP CPU# 1 Launched! > > SMP: AP CPU# 2 Launched! > > SMP: AP CPU# 3 Launched! > > > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > > problem... > > > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 with > a > > Smart2/p? > > -D > > > > ----- Original Message ----- > > From: "Danny Carroll" > > To: > > Sent: Monday, May 12, 2003 6:29 PM > > Subject: Proliant on a 6500 > > > > > > > Hiya all... > > > > > > I have a compaq proliant 6500 with 4 cpu's > > > I am trying to install 4.8 on it (I got it installed but it's SMP that > > does > > > not work). > > > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > > Actually it gets two lines extra (mounting root off the ida controller). > > > > > > Now, scrolllock and caps and everything still work, (I can even sroll > back > > > and read the text) but nothing else happens. > > > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) and > > > we'll see what happens, but I was wondering if you have seen this > problem > > > before. > > > > > > One more thing... I only had the first two SMP settings in the kernel I > > had > > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do I > > find > > > out how many interupts to set?? > > > > > > Any more tips?? > > > > > > Thanks... > > > -D > > > > > > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > From owner-freebsd-stable@FreeBSD.ORG Mon May 12 21:35:43 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EBE037B401; Mon, 12 May 2003 21:35:43 -0700 (PDT) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id C33A643F85; Mon, 12 May 2003 21:35:40 -0700 (PDT) (envelope-from eugen@kuzbass.ru) Received: from kuzbass.ru (kost [213.184.65.82])h4D4ZcFi058278; Tue, 13 May 2003 12:35:38 +0800 (KRAST) (envelope-from eugen@kuzbass.ru) Message-ID: <3EC075F2.D9A0AE10@kuzbass.ru> Date: Tue, 13 May 2003 12:34:58 +0800 From: Eugene Grosbein Organization: SVZServ X-Mailer: Mozilla 4.8 [en] (Win98; U) X-Accept-Language: ru,en MIME-Version: 1.0 To: bug-followup@freebsd.org Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit cc: stable@freebsd.org Subject: Re: bin/45754: vnconfig(8) fails to return correct exit status X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 04:35:43 -0000 Hi! Is there anyone interested in fixing vnconfig(8)? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=bin/45754 Eugene Grosbein From owner-freebsd-stable@FreeBSD.ORG Tue May 13 00:39:45 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AED937B401; Tue, 13 May 2003 00:39:45 -0700 (PDT) Received: from mail.dannysplace.net (allxs.xs4all.nl [194.109.223.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 767AF43F75; Tue, 13 May 2003 00:39:44 -0700 (PDT) (envelope-from danny@dannysplace.net) Received: from [192.168.1.3] (helo=localhost) by mail.dannysplace.net with esmtp (Exim 4.12) id 19FUNv-000Jop-00; Tue, 13 May 2003 09:39:39 +0200 Received: from pr1.ing.nl (pr1.ing.nl [145.221.92.40]) by www.dannysplace.com (Horde) with HTTP for ; Tue, 13 May 2003 09:39:38 +0200 Message-ID: <1052811578.71ac164fe0bc7@www.dannysplace.com> Date: Tue, 13 May 2003 09:39:38 +0200 From: danny@dannysplace.net To: Danny Carroll References: <005901c318bc$23433070$e464a8c0@llama> <006701c318cb$58cfd8b0$e464a8c0@llama> <000401c318db$94ec3b80$e464a8c0@llama> In-Reply-To: <000401c318db$94ec3b80$e464a8c0@llama> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19FUNv-000Jop-00*BLdcGYBId1A* cc: "freebsd-stable@freebsd.org" cc: Poul-Henning Kamp cc: "freebsd-smp@freebsd.org" cc: "freebsd-questions@freeBSD.org" Subject: SMP Proliants and Smart2 Array controllers. (Was: Proliant on a 6500) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 07:39:46 -0000 I've included all posts till now. Can I ask anyone with older proliant multi-cpu hardware using the smart2 controllers to get in touch with me? I am curious to know if this works for anyone... -D Quoting Danny Carroll : > Still more info... > It does not work on 5_0-RELEASE either. > > -D > ----- Original Message ----- > From: "Danny Carroll" > To: ; ; > > Cc: "Poul-Henning Kamp" > Sent: Monday, May 12, 2003 11:13 PM > Subject: Re: Proliant on a 6500 > > > > More info... > > I freshly installed to a drive on the internal SCSI bus... > > > > Then I copied the smp kernel over and booted off the new drive (with the > > array card still inserted). > > The machine detected the array card and started up just fine... > > As soon as I tried to mount a logical drive the command froze. I was > able > > to CTRL-C but it would not talk to the ida logical drives. > > > > This proves to me that it's an IDA thing... > > > > Now I'll cvsup to -STABLE and see if that makes a difference. > > After that I will try -CURRENT. > > > > Does anyone on the SMP lists (or Poul) want anything out of this machine > > (traces or whatever?) > > > > -D > > > > > > ----- Original Message ----- > > From: "Danny Carroll" > > To: ; ; > > > > Sent: Monday, May 12, 2003 9:24 PM > > Subject: Re: Proliant on a 6500 > > > > > > > Sorry to reply to myself, but I wanted to expand this to -stable and add > > > some more info... > > > See the original post at the bottom of this msg. > > > > > > I just took the Smart 2/P and put it in slot1 (one of the shared > Eisa/PCI > > > slots.) > > > > > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different > order... > > > > > > They were: > > > SMP: AP CPU# 3 Launched! > > > SMP: AP CPU# 1 Launched! > > > SMP: AP CPU# 2 Launched! > > > > > > now they are: > > > SMP: AP CPU# 1 Launched! > > > SMP: AP CPU# 2 Launched! > > > SMP: AP CPU# 3 Launched! > > > > > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > > > problem... > > > > > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 > with > > a > > > Smart2/p? > > > -D > > > > > > ----- Original Message ----- > > > From: "Danny Carroll" > > > To: > > > Sent: Monday, May 12, 2003 6:29 PM > > > Subject: Proliant on a 6500 > > > > > > > > > > Hiya all... > > > > > > > > I have a compaq proliant 6500 with 4 cpu's > > > > I am trying to install 4.8 on it (I got it installed but it's SMP that > > > does > > > > not work). > > > > > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > > > Actually it gets two lines extra (mounting root off the ida > controller). > > > > > > > > Now, scrolllock and caps and everything still work, (I can even sroll > > back > > > > and read the text) but nothing else happens. > > > > > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) > and > > > > we'll see what happens, but I was wondering if you have seen this > > problem > > > > before. > > > > > > > > One more thing... I only had the first two SMP settings in the kernel > I > > > had > > > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do > I > > > find > > > > out how many interupts to set?? > > > > > > > > Any more tips?? > > > > > > > > Thanks... > > > > -D > > > > > > > > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > > > > > _______________________________________________ > > freebsd-stable@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-stable@FreeBSD.ORG Tue May 13 00:43:59 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9387F37B401; Tue, 13 May 2003 00:43:59 -0700 (PDT) Received: from mail.dannysplace.net (allxs.xs4all.nl [194.109.223.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8194343F93; Tue, 13 May 2003 00:43:58 -0700 (PDT) (envelope-from fbsd@dannysplace.net) Received: from [192.168.1.3] (helo=localhost) by mail.dannysplace.net with esmtp (Exim 4.12) id 19FUS4-000Jpm-00; Tue, 13 May 2003 09:43:56 +0200 Received: from pr1.ing.nl (pr1.ing.nl [145.221.92.40]) by www.dannysplace.com (Horde) with HTTP for ; Tue, 13 May 2003 09:43:55 +0200 Message-ID: <1052811835.bce511511a67b@www.dannysplace.com> Date: Tue, 13 May 2003 09:43:55 +0200 From: Danny Carroll To: "freebsd-smp@freebsd.org" , "freebsd-stable@freebsd.org" , "freebsd-questions@freeBSD.org" , Poul-Henning Kamp MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19FUS4-000Jpm-00*k5YVHwdZ8.Q* Subject: SMP Proliants and Smart2 Array controllers. (Was: Proliant on a 6500) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 07:44:00 -0000 I've included all posts till now. Can I ask anyone with older proliant multi-cpu hardware using the smart2 controllers to get in touch with me? I am curious to know if this works for anyone... -D Quoting Danny Carroll : > Still more info... > It does not work on 5_0-RELEASE either. > > -D > ----- Original Message ----- > From: "Danny Carroll" > To: ; ; > > Cc: "Poul-Henning Kamp" > Sent: Monday, May 12, 2003 11:13 PM > Subject: Re: Proliant on a 6500 > > > > More info... > > I freshly installed to a drive on the internal SCSI bus... > > > > Then I copied the smp kernel over and booted off the new drive (with the > > array card still inserted). > > The machine detected the array card and started up just fine... > > As soon as I tried to mount a logical drive the command froze. I was > able > > to CTRL-C but it would not talk to the ida logical drives. > > > > This proves to me that it's an IDA thing... > > > > Now I'll cvsup to -STABLE and see if that makes a difference. > > After that I will try -CURRENT. > > > > Does anyone on the SMP lists (or Poul) want anything out of this machine > > (traces or whatever?) > > > > -D > > > > > > ----- Original Message ----- > > From: "Danny Carroll" > > To: ; ; > > > > Sent: Monday, May 12, 2003 9:24 PM > > Subject: Re: Proliant on a 6500 > > > > > > > Sorry to reply to myself, but I wanted to expand this to -stable and add > > > some more info... > > > See the original post at the bottom of this msg. > > > > > > I just took the Smart 2/P and put it in slot1 (one of the shared > Eisa/PCI > > > slots.) > > > > > > Now the Dmesg output shows the "SMP: AP CPU" lines in a different > order... > > > > > > They were: > > > SMP: AP CPU# 3 Launched! > > > SMP: AP CPU# 1 Launched! > > > SMP: AP CPU# 2 Launched! > > > > > > now they are: > > > SMP: AP CPU# 1 Launched! > > > SMP: AP CPU# 2 Launched! > > > SMP: AP CPU# 3 Launched! > > > > > > I don't think this is a SMP problem, but rather a SMP/Smart2 combined > > > problem... > > > > > > Has anyone got FreeBSD 4.8-RELEASE working on a Compaq Proliant 6500 > with > > a > > > Smart2/p? > > > -D > > > > > > ----- Original Message ----- > > > From: "Danny Carroll" > > > To: > > > Sent: Monday, May 12, 2003 6:29 PM > > > Subject: Proliant on a 6500 > > > > > > > > > > Hiya all... > > > > > > > > I have a compaq proliant 6500 with 4 cpu's > > > > I am trying to install 4.8 on it (I got it installed but it's SMP that > > > does > > > > not work). > > > > > > > > The kernel seems to hang after the SMP: AP CPU #3 Launched. > > > > Actually it gets two lines extra (mounting root off the ida > controller). > > > > > > > > Now, scrolllock and caps and everything still work, (I can even sroll > > back > > > > and read the text) but nothing else happens. > > > > > > > > I am about to wipe and choose UNIXWare 7 (I chose solaris last time) > and > > > > we'll see what happens, but I was wondering if you have seen this > > problem > > > > before. > > > > > > > > One more thing... I only had the first two SMP settings in the kernel > I > > > had > > > > none of that NCPU etc stuff,... Do I need it for 4.8? If so, how do > I > > > find > > > > out how many interupts to set?? > > > > > > > > Any more tips?? > > > > > > > > Thanks... > > > > -D > > > > > > > > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > > > > > _______________________________________________ > > freebsd-stable@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-stable@FreeBSD.ORG Tue May 13 01:22:06 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4626237B401 for ; Tue, 13 May 2003 01:22:06 -0700 (PDT) Received: from hotmail.com (bay2-dav35.bay2.hotmail.com [65.54.246.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id E39D043F85 for ; Tue, 13 May 2003 01:22:05 -0700 (PDT) (envelope-from dsnofe@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 13 May 2003 01:22:05 -0700 Received: from 202.199.66.11 by bay2-dav35.bay2.hotmail.com with DAV; Tue, 13 May 2003 08:22:05 +0000 X-Originating-IP: [202.199.66.11] X-Originating-Email: [dsnofe@hotmail.com] Date: Tue, 13 May 2003 16:23:25 +0800 From: Snofe Deng To: freebsd-stable@freebsd.org Message-Id: <20030513162313.52E5.DSNOFE@hotmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.05.10 X-OriginalArrivalTime: 13 May 2003 08:22:05.0791 (UTC) FILETIME=[BD1126F0:01C31928] Subject: where is mutexattr_setpshared()? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 08:22:06 -0000 As the title. I find it at pthread.h( cvs version 1.20) But now, it is not there. then how can I set the mutex with PTHREAD_PROCESS_SHARED?? use pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int) ????????? -- Snofe Deng From owner-freebsd-stable@FreeBSD.ORG Tue May 13 02:40:07 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 939C937B401 for ; Tue, 13 May 2003 02:40:07 -0700 (PDT) Received: from mail.cskmswia.pl (3.gallery.devs.futuro.pl [62.233.205.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id D606143FAF for ; Tue, 13 May 2003 02:40:05 -0700 (PDT) (envelope-from przemyslaw.wieclawek@cskmswia.pl) Received: from mail.cskmswia.pl (mail.cskmswia.pl [62.233.205.146]) by mail.cskmswia.pl (Postfix) with SMTP id 2BA695D27; Tue, 13 May 2003 11:39:59 +0200 (CEST) Received: from compaq (compaq.szpital.cskmswia.pl [10.0.0.201]) by mail.cskmswia.pl (Postfix) with SMTP id D624B5D02; Tue, 13 May 2003 11:39:58 +0200 (CEST) Message-ID: <012c01c31933$959bfb80$c900000a@compaq> From: "Przemyslaw Wieclawek" To: "Danny Carroll" , References: <1052811835.bce511511a67b@www.dannysplace.com> Date: Tue, 13 May 2003 11:39:43 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: Re: SMP Proliants and Smart2 Array controllers. (Was: Proliant on a6500) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 09:40:07 -0000 > > > I freshly installed to a drive on the internal SCSI bus... > > > > > > Then I copied the smp kernel over and booted off the new drive (with the > > > array card still inserted). > > > The machine detected the array card and started up just fine... > > > As soon as I tried to mount a logical drive the command froze. I was > > able > > > to CTRL-C but it would not talk to the ida logical drives. > > > > > > This proves to me that it's an IDA thing... > > > > > > Now I'll cvsup to -STABLE and see if that makes a difference. > > > After that I will try -CURRENT. > > > > > > Does anyone on the SMP lists (or Poul) want anything out of this machine > > > (traces or whatever?) I remember similar behavior with 4-STABLE around 4.6 time. Proliant 3000 dual PIII + SmartArray: 1. runs fine on properly installed non SMP kernel 2. runs fine on properly installed SMP kernel 3. freezes during boot on mounting ida0 on non SMP kernel with SMP modules and vice versa It happend after installing SMP kernel that didn't boot. I booted kernel.GENERIC and wasn't able to mount my ida volumes. Fortunately I had system installed on regular SCSI disk, and restoring modules proper for kernel I had booted helped. Przemek Wieclawek From owner-freebsd-stable@FreeBSD.ORG Tue May 13 02:57:50 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0F8137B401 for ; Tue, 13 May 2003 02:57:50 -0700 (PDT) Received: from bebop.inter-sonic.com (bebop.inter-sonic.com [212.247.185.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0551443FAF for ; Tue, 13 May 2003 02:57:50 -0700 (PDT) (envelope-from peo@intersonic.se) Message-ID: <3EC0C19A.10702@intersonic.se> Date: Tue, 13 May 2003 11:57:46 +0200 From: "Per olof Ljungmark" Organization: Intersonic AB User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-102.3 required=5.2 tests=EMAIL_ATTRIBUTION,NOSPAM_INC,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MOZILLA_UA,USER_IN_WHITELIST,X_ACCEPT_LANG version=2.44 X-Spam-Level: X-Sanitizer: bebop mail filter Subject: 4.8-RELEASE not identifying scsi drives X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: peo@intersonic.se List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 09:57:50 -0000 A problem with 4.8 reported by myself and Aaron D. Gifford. Anyone in -stable who knows more? ******** I'm assembling a Compaq 1850R with attached storage system. For the built in scsi controller (sym), there are three drives internally on channel 1 + 5 drives externally on channel 2. During boot, I can see all disks being identified first by the machine itself and then in the early part of the process (something scrolls by talking about BIOS drive numbering). However, the result is not 8 drives but 5 in total in a mix between the channels, see below. da0 at sym0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 8678MB (17773500 512 byte sectors: 255H 63S/T 1106C) da4 at sym1 bus 0 target 4 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 40.000MB/s transfers (20.000MHz, offset 16, 16bit), Tagged Queueing Enabled da4: 8678MB (17773500 512 byte sectors: 255H 63S/T 1106C) da2 at sym0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da2: 8678MB (17773500 512 byte sectors: 255H 63S/T 1106C) da3 at sym1 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da3: 8678MB (17773500 512 byte sectors: 255H 63S/T 1106C) da1 at sym0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 8678MB (17773500 512 byte sectors: 255H 63S/T 1106C) Aaron D. Gifford wrote: We ran into a perhaps similar problem with 4.8-RELEASE and 4.8-STABLE when we attempted to upgrade an old Compaq Proliant machine on Friday. Under 4.7, the sym driver would see all 5 SCSI drives. But after a CVSupdate and build/install of world and reboot, the machine failed to boot because the first drive, the root drive, was no longer visible to the kernel. The FreeBSD boot loader could still see the drive, but the kernel would never detect it. At first we couldn't figure out what was going wrong. After some hours including an attempt to install 4.8-RELEASE on another drive that also failed because of the disappearing drive problem, we reinstalled 4.7-RELEASE and have been running RELENG_4_7 since. I think our old system uses the NCR 875 chipset. Anyone know what changes between 4.7 and 4.8 to sym might be responsible for the disappearing drive trick? From owner-freebsd-stable@FreeBSD.ORG Tue May 13 03:15:55 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3912137B401 for ; Tue, 13 May 2003 03:15:55 -0700 (PDT) Received: from mailrouter2.strath.ac.uk (harris.cc.strath.ac.uk [130.159.248.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id B98F443FB1 for ; Tue, 13 May 2003 03:15:53 -0700 (PDT) (envelope-from jethro.binks@strath.ac.uk) Received: from khafre.cc.strath.ac.uk ([130.159.248.48] helo=vrouter1.strath.ac.uk) by mailrouter2.strath.ac.uk with esmtp (Exim 3.14 #1) id 19FWp6-00001S-00 for stable@freebsd.org; Tue, 13 May 2003 11:15:52 +0100 Received: from orkney.cc.strath.ac.uk ([130.159.248.40] helo=mailrouter1.strath.ac.uk) by khafre.cc.strath.ac.uk with esmtp (Exim 3.32 #1) id 19FWm4-0003rH-00 for stable@freebsd.org; Tue, 13 May 2003 11:12:44 +0100 Received: from defjam.cc.strath.ac.uk ([130.159.96.19]) by mailrouter1.strath.ac.uk with esmtp (Exim 3.32 #2) id 19FWoK-0005sd-00 for stable@freebsd.org; Tue, 13 May 2003 11:15:04 +0100 Date: Tue, 13 May 2003 11:15:20 +0100 (BST) From: Jethro R Binks X-X-Sender: ras99101@defjam.cc.strath.ac.uk To: stable@freebsd.org In-Reply-To: <3EC0C19A.10702@intersonic.se> Message-ID: <20030513110920.F46156-100000@defjam.cc.strath.ac.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Strath-Scan: clean Subject: Re: 4.8-RELEASE not identifying scsi drives X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 10:15:55 -0000 On Tue, 13 May 2003, Per olof Ljungmark wrote: > A problem with 4.8 reported by myself and Aaron D. Gifford. > > Anyone in -stable who knows more? > [...] I had what might be a similarish problem in 2001 (but only relating to internal disks), described here: http://www.geocrawler.com/mail/thread.php3?subject=Missing+SCSI+disk+on+Compaq+%28others+visible%29&list=168 I never solved it, but found if I use the NCR driver rather than the SYM one, things were fine (apart from the message shown below). I've never tried the SYM driver since to see if the problem still exists. I still have the hardware (but it is in production) -- if I get an opportunity, I will try a kernel with the SYM driver and see if it is any better these days (not that that will help you two much!): (probe2:ncr0:0:2:0): MSG_IGN_WIDE_RESIDUE received, but not yet implemented. (probe0:ncr0:0:0:0): MSG_IGN_WIDE_RESIDUE received, but not yet implemented. (probe1:ncr0:0:1:0): MSG_IGN_WIDE_RESIDUE received, but not yet implemented. (probe4:ncr0:0:4:0): MSG_IGN_WIDE_RESIDUE received, but not yet implemented. Mounting root from ufs:/dev/da0s1a da3 at ncr0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-3 device da3: 40.000MB/s transfers (20.000MHz, offset 16, 16bit), Tagged Queueing Enabled da3: 17366MB (35566000 512 byte sectors: 255H 63S/T 2213C) da2 at ncr0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 40.000MB/s transfers (20.000MHz, offset 16, 16bit), Tagged Queueing Enabled da2: 17366MB (35566000 512 byte sectors: 255H 63S/T 2213C) da1 at ncr0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 4094MB (8386000 512 byte sectors: 255H 63S/T 522C) da0 at ncr0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 4094MB (8386000 512 byte sectors: 255H 63S/T 522C) da4 at ncr0 bus 0 target 4 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da4: 4094MB (8386000 512 byte sectors: 255H 63S/T 522C) Jethro. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Jethro R Binks Computing Officer, IT Services University Of Strathclyde, Glasgow, UK From owner-freebsd-stable@FreeBSD.ORG Tue May 13 03:58:18 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A80537B401 for ; Tue, 13 May 2003 03:58:18 -0700 (PDT) Received: from smtp.terrabee.net (smtp.terrabee.net [193.138.102.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B7F243FD7 for ; Tue, 13 May 2003 03:58:16 -0700 (PDT) (envelope-from chris@terrabee.net) Received: from home.terrabee.net (as19-5-7.bi.s.bonet.se [217.215.73.79]) by smtp.terrabee.net (Postfix) with ESMTP id 0DA885726D for ; Mon, 12 May 2003 00:10:51 +0200 (CEST) Date: Mon, 12 May 2003 00:10:49 +0200 (CEST) From: Christopher Arnold To: freebsd-stable@freebsd.org Message-ID: <20030511234953.K1173@home.terrabee.net> X-message-flag: =?ISO-8859-1?Q?Outlook_isn=B4t_compliant_with_current_standards?= =?ISO-8859-1?Q?_please_install_another_mail_client!?= MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Health monitoring X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2003 10:58:18 -0000 Hi all, is there a known issue with health monitoring on supermicro SuperServer 6010H? (Im primarily interested in temeperature monitoring) I have tried both mbmon and lmmon with the following results: stats# mbmon -d SMBus[ServerWorks(ServerSet Chipset)] found, but No HWM available on it!! No Hardware Monitor found!! InitMBInfo: Unknown error: 0 stats# lmmon IOCTL: Operation not supported by device This is on a fresh 4.8-STABLE, from cvs today. Running on: http://www.supermicro.com/PRODUCT/SUPERServer/SuperServer6010H.htm And the motherboard is "SUPER 370DER" A complete dmesg is at the end of this message. So does anyone have any more input? With google i have found others who have asked similar questions, but never a clear answer if its possible to do or not. /Chris 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 4.8-STABLE #0: Sun May 11 14:46:24 CEST 2003 chris@tmp2.terrabee.net:/usr/src/sys/compile/CHRIS Timecounter "i8254" frequency 1193182 Hz CPU: Intel Pentium III (799.62-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 268369920 (262080K bytes) avail memory = 255750144 (249756K bytes) Preloaded elf kernel "kernel" at 0xc0541000. Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 7 entries at 0xc00f5380 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib4: at device 0.1 on pci0 pci1: on pcib4 pci1: at 0.0 irq 11 fxp0: port 0xc800-0xc83f mem 0xfe800000-0xfe8fffff,0xfeafb000-0xfeafbfff irq 7 at device 4.0 on pci0 fxp0: Ethernet address 00:30:48:10:6b:9e inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ahc0: port 0xd000-0xd0ff mem 0xfeafc000-0xfeafcfff irq 5 at device 5.0 on pci0 aic7899: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs ahc1: port 0xd800-0xd8ff mem 0xfeaff000-0xfeafffff irq 10 at device 5.1 on pci0 aic7899: Ultra160 Wide Channel B, SCSI Id=7, 32/253 SCBs fxp1: port 0xd400-0xd43f mem 0xfe900000-0xfe9fffff,0xfeafd000-0xfeafdfff irq 9 at device 6.0 on pci0 fxp1: Ethernet address 00:30:48:10:6b:9d inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ohci0: irq 0 at device 15.2 on pci0 ohci0: Could not map memory device_probe_and_attach: ohci0 attach returned 6 pcib1: on motherboard pci2: on pcib1 pcib2: on motherboard pci3: on pcib2 pcib3: on motherboard pci4: on pcib3 orm0: