From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 01:43:23 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6211F106566C; Sun, 15 Mar 2009 01:43:23 +0000 (UTC) (envelope-from nick@nickwithers.com) Received: from mail.nickwithers.com (mail.nickwithers.com [123.243.228.66]) by mx1.freebsd.org (Postfix) with ESMTP id 8787E8FC15; Sun, 15 Mar 2009 01:43:21 +0000 (UTC) (envelope-from nick@nickwithers.com) Received: from [10.0.0.245] (presario.shmon.net [10.0.0.245]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.nickwithers.com (Postfix) with ESMTPSA id E106644; Sun, 15 Mar 2009 12:43:08 +1100 (EST) From: Nick Withers To: Robert Watson In-Reply-To: References: <1236920519.1490.30.camel@localhost> <1237020646.1532.24.camel@localhost> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-cLe9RqL1Ai6FM3YmThmg" Date: Sun, 15 Mar 2009 12:43:01 +1100 Message-Id: <1237081381.1581.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-MailScanner-ID: E106644.E9FA3 X-nickwithers-MailScanner: Found to be clean X-nickwithers-MailScanner-From: nick@nickwithers.com Cc: freebsd-stable@freebsd.org Subject: Re: NICs locking up, "*tcp_sc_h" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 01:43:23 -0000 --=-cLe9RqL1Ai6FM3YmThmg Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2009-03-14 at 18:01 +0000, Robert Watson wrote: > On Sat, 14 Mar 2009, Nick Withers wrote: >=20 > > Right, here we go! > ... >=20 > Turns out that the problem is a lock cycle triggered by the syncache call= ing,=20 > indirectly, the firewall during output, and the firewall trying to look u= p the=20 > connection for the packet. Thread one: >=20 > > Tracing PID 31 tid 100030 td 0xffffff00012016e0 > > sched_switch() at sched_switch+0xdf > > mi_switch() at mi_switch+0x18b > > turnstile_wait() at turnstile_wait+0x1c4 > > _mtx_lock_sleep() at _mtx_lock_sleep+0x76 > > _mtx_lock_flags() at _mtx_lock_flags+0x95 > > syncache_lookup() at syncache_lookup+0xee > > syncache_expand() at syncache_expand+0x38 > > tcp_input() at tcp_input+0x99b > > ip_input() at ip_input+0xaf > > ether_demux() at ether_demux+0x1b9 > > ether_input() at ether_input+0x1bb > > fxp_intr() at fxp_intr+0x224 > > ithread_loop() at ithread_loop+0xe9 > > fork_exit() at fork_exit+0x112 > > fork_trampoline() at fork_trampoline+0xe > > --- trap 0, rip =3D 0, rsp =3D 0xfffffffe80174d30, rbp =3D 0 --- >=20 > This thread holds TCP locks and is trying to acquire the syncache lock.=20 > Thread two: >=20 > > sched_switch() at sched_switch+0xdf > > mi_switch() at mi_switch+0x18b > > turnstile_wait() at turnstile_wait+0x1c4 > > _rw_rlock() at _rw_rlock+0x9c > > ipfw_chk() at ipfw_chk+0x3ac1 > > ipfw_check_out() at ipfw_check_out+0xb1 > > pfil_run_hooks() at pfil_run_hooks+0xac > > ip_output() at ip_output+0x357 > > syncache_respond() at syncache_respond+0x2fd > > syncache_timer() at syncache_timer+0x15a > > softclock() at softclock+0x270 > > ithread_loop() at ithread_loop+0xe9 > > fork_exit() at fork_exit+0x112 > > fork_trampoline() at fork_trampoline+0xe >=20 > This is the syncache timer holding syncache locks, calling IP output, and= IPFW=20 > trying to acquire TCP locks. >=20 > Am I right in thinking that you are using uid/gid/jail firewall rules? You are indeed. > They=20 > suffer from a fundamental architectural problem in that they require reac= hing=20 > "up" to a higher level of the stack at times when it's not always a good = idea=20 > to do so. In general we solve the problem by passing "down" the inpcb fo= r a=20 > connection in the output path so that TCP doesn't have to look it up --=20 > however, in the case of the syncache we actually don't have the inpcb eas= ily=20 > in hand (or at least, we have it, but we can't just lock it because synca= che=20 > locks are after TCP locks in the lock order...). It transpires that what= the=20 > firewall really wants is not the inpcb, but the credential, but those are= =20 > interfaces we can't change right now. Thanks for the explanation! > I'll need to think a bit about a proper fix for this, but you'll find the= =20 > problem likely goes away if you eliminate all uid/gid/jail rules from you= r=20 > firewall. You could also tweak the syncache logic not to use a retransmi= t=20 > timer, which might slightly extend the time it takes for systems to conne= ct to=20 > your host in the presence of packet loss, but would eliminate this=20 > transmission path entirely. We'll need a real and more general fix, howe= ver,=20 > to commit, and I'll look and see what I can come up with. Brilliant, thanks very much. I'll work without uid rules for the time being, then. Ta for your time and help on this! > Robert N M Watson > Computer Laboratory > University of Cambridge --=20 Nick Withers email: nick@nickwithers.com Web: http://www.nickwithers.com Mobile: +61 414 397 446 --=-cLe9RqL1Ai6FM3YmThmg Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm8XSUACgkQ3wcG/Pf4Wrjd4wCglWdiU6OFd6gChYVP3yLS6TOv qr8AnR7WHu2DdH16HnILcpNIgxJRwFJR =1DFu -----END PGP SIGNATURE----- --=-cLe9RqL1Ai6FM3YmThmg-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 07:48:32 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09059106564A for ; Sun, 15 Mar 2009 07:48:32 +0000 (UTC) (envelope-from twiggy@everest.scorpionshops.com) Received: from everest.scorpionshops.com (83.140.32.144.dyn.rp80.se [83.140.32.144]) by mx1.freebsd.org (Postfix) with ESMTP id 86E5A8FC0A for ; Sun, 15 Mar 2009 07:48:31 +0000 (UTC) (envelope-from twiggy@everest.scorpionshops.com) Received: by everest.scorpionshops.com (Postfix, from userid 45639) id AA896808F8A; Sun, 15 Mar 2009 08:48:30 +0100 (CET) To: freebsd-stable@freebsd.org From: jashari Content-Transfer-Encoding: 8bit Message-Id: <20090315074830.AA896808F8A@everest.scorpionshops.com> Date: Sun, 15 Mar 2009 08:48:30 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: visit dhis baners X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jashari@live.co.uk List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 07:48:32 -0000 [1]Musicload [2]First Affair - Erotische Abenteuer & Seitensprünge [3]www.s-partnerclub.de [4]C-Date your casual dating site [5]Liebe.de - Die Datingplattform [6]Erotikabenteuer gesucht? Dann kommen sie zu LOVEPOINT.de [7]PARSHIP.de - Die Online Partneragentur [8]girls.parship.de [9]StayFriends - Die Freundesuchmaschine [10]Das groÃe iPhone Gewinnspiel [11]Hummer Gewinnspiel [12]Spanien Gewinnspiel References 1. http://partners.webmasterplan.com/click.asp?ref=480282&site=3752&type=b74&bnb=74 2. http://partners.webmasterplan.com/click.asp?ref=480282&site=3211&type=b8&bnb=8 3. http://partners.webmasterplan.com/click.asp?ref=480282&site=5615&type=b18&bnb=18 4. http://partners.webmasterplan.com/click.asp?ref=480282&site=5597&type=b16&bnb=16 5. http://partners.webmasterplan.com/click.asp?ref=480282&site=5704&type=b14&bnb=14 6. http://partners.webmasterplan.com/click.asp?ref=480282&site=623&type=b50&bnb=50 7. http://partners.webmasterplan.com/click.asp?ref=480282&site=3629&type=b1&bnb=1 8. http://partners.webmasterplan.com/click.asp?ref=480282&site=4150&type=b9&bnb=9 9. http://partners.webmasterplan.com/click.asp?ref=480282&site=3735&type=b33&bnb=33 10. http://partners.webmasterplan.com/click.asp?ref=480282&site=5671&type=b101&bnb=101 11. http://partners.webmasterplan.com/click.asp?ref=480282&site=5567&type=b10&bnb=10 12. http://partners.webmasterplan.com/click.asp?ref=480282&site=5566&type=b9&bnb=9 From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 07:48:39 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D0D91065674 for ; Sun, 15 Mar 2009 07:48:39 +0000 (UTC) (envelope-from twiggy@everest.scorpionshops.com) Received: from everest.scorpionshops.com (83.140.32.144.dyn.rp80.se [83.140.32.144]) by mx1.freebsd.org (Postfix) with ESMTP id D9C058FC17 for ; Sun, 15 Mar 2009 07:48:38 +0000 (UTC) (envelope-from twiggy@everest.scorpionshops.com) Received: by everest.scorpionshops.com (Postfix, from userid 45639) id 02E07808FA7; Sun, 15 Mar 2009 08:48:37 +0100 (CET) To: stable@freebsd.org From: jashari Content-Transfer-Encoding: 8bit Message-Id: <20090315074838.02E07808FA7@everest.scorpionshops.com> Date: Sun, 15 Mar 2009 08:48:38 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: visit dhis baners X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jashari@live.co.uk List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 07:48:39 -0000 [1]Musicload [2]First Affair - Erotische Abenteuer & Seitensprünge [3]www.s-partnerclub.de [4]C-Date your casual dating site [5]Liebe.de - Die Datingplattform [6]Erotikabenteuer gesucht? Dann kommen sie zu LOVEPOINT.de [7]PARSHIP.de - Die Online Partneragentur [8]girls.parship.de [9]StayFriends - Die Freundesuchmaschine [10]Das groÃe iPhone Gewinnspiel [11]Hummer Gewinnspiel [12]Spanien Gewinnspiel References 1. http://partners.webmasterplan.com/click.asp?ref=480282&site=3752&type=b74&bnb=74 2. http://partners.webmasterplan.com/click.asp?ref=480282&site=3211&type=b8&bnb=8 3. http://partners.webmasterplan.com/click.asp?ref=480282&site=5615&type=b18&bnb=18 4. http://partners.webmasterplan.com/click.asp?ref=480282&site=5597&type=b16&bnb=16 5. http://partners.webmasterplan.com/click.asp?ref=480282&site=5704&type=b14&bnb=14 6. http://partners.webmasterplan.com/click.asp?ref=480282&site=623&type=b50&bnb=50 7. http://partners.webmasterplan.com/click.asp?ref=480282&site=3629&type=b1&bnb=1 8. http://partners.webmasterplan.com/click.asp?ref=480282&site=4150&type=b9&bnb=9 9. http://partners.webmasterplan.com/click.asp?ref=480282&site=3735&type=b33&bnb=33 10. http://partners.webmasterplan.com/click.asp?ref=480282&site=5671&type=b101&bnb=101 11. http://partners.webmasterplan.com/click.asp?ref=480282&site=5567&type=b10&bnb=10 12. http://partners.webmasterplan.com/click.asp?ref=480282&site=5566&type=b9&bnb=9 From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 13:37:45 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 509D01065673; Sun, 15 Mar 2009 13:37:45 +0000 (UTC) (envelope-from fk@fabiankeil.de) Received: from smtprelay10.ispgateway.de (smtprelay10.ispgateway.de [80.67.29.24]) by mx1.freebsd.org (Postfix) with ESMTP id 05C888FC1B; Sun, 15 Mar 2009 13:37:44 +0000 (UTC) (envelope-from fk@fabiankeil.de) Received: from [88.153.16.241] (helo=localhost) by smtprelay10.ispgateway.de with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1LiqMx-0004bs-LF; Sun, 15 Mar 2009 14:27:11 +0100 Date: Sun, 15 Mar 2009 14:27:06 +0100 From: Fabian Keil To: Robert Noland Message-ID: <20090315142706.16ffca16@fabiankeil.de> In-Reply-To: <1237016323.1789.13.camel@balrog.2hip.net> References: <1236997834.1735.30.camel@balrog.2hip.net> <1237016323.1789.13.camel@balrog.2hip.net> X-Mailer: Claws Mail 3.7.0 (GTK+ 2.14.7; i386-portbld-freebsd8.0) X-PGP-KEY-URL: http://www.fabiankeil.de/gpg-keys/fk-2008-08-18.asc Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/=q78XNA4=WazWoWFXtmFOW_"; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Df-Sender: 180909 Cc: freebsd-stable@FreeBSD.org, "Sean C. Farley" Subject: Re: Panic in radeon_get_vblank_counter() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 13:37:45 -0000 --Sig_/=q78XNA4=WazWoWFXtmFOW_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Robert Noland wrote: > On Fri, 2009-03-13 at 23:33 -0500, Sean C. Farley wrote:=20 > > On Fri, 13 Mar 2009, Robert Noland wrote: > > If I start rebooting before it is printed, the system locks up. Of=20 > > course, this is only after rebooting several times. > >=20 > > Here is a successful start and shutdown: > > http://people.freebsd.org/~scf/drm-dmesg.log > > http://people.freebsd.org/~scf/Xorg.0.log >=20 > Ok, I'll spend some time staring at the current code... Thanks for the > backtrace too, it's nice to get those... This seems to be the same panic I mentioned in the "Filesystems being eaten?" thread on freebsd-current. I reproducible got this panic on: FreeBSD 8.0-CURRENT #39: Sat Mar 7 20:37:29 CET 2009 when shutting Xorg down. I can no longer reproduce it with: FreeBSD 8.0-CURRENT #42: Sat Mar 14 00:47:09 CET 2009 Fabian --Sig_/=q78XNA4=WazWoWFXtmFOW_ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEUEARECAAYFAkm9AioACgkQSMVSH78upWNgHgCWOL10ERgFaA1/gHx19jS6ERYw dACbBqeoVt5cs2fY7ag1zafRmMKzDK4= =+b36 -----END PGP SIGNATURE----- --Sig_/=q78XNA4=WazWoWFXtmFOW_-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 17:07:24 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5332106564A; Sun, 15 Mar 2009 17:07:24 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 7F72F8FC1E; Sun, 15 Mar 2009 17:07:24 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2FH5xTC047398 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 15 Mar 2009 13:05:59 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Fabian Keil In-Reply-To: <20090315142706.16ffca16@fabiankeil.de> References: <1236997834.1735.30.camel@balrog.2hip.net> <1237016323.1789.13.camel@balrog.2hip.net> <20090315142706.16ffca16@fabiankeil.de> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-WwkbArxSO915uf27o7sg" Organization: FreeBSD Date: Sun, 15 Mar 2009 12:07:08 -0500 Message-Id: <1237136828.1774.4.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-stable@FreeBSD.org, "Sean C. Farley" Subject: Re: Panic in radeon_get_vblank_counter() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 17:07:25 -0000 --=-WwkbArxSO915uf27o7sg Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2009-03-15 at 14:27 +0100, Fabian Keil wrote: > Robert Noland wrote: >=20 > > On Fri, 2009-03-13 at 23:33 -0500, Sean C. Farley wrote:=20 > > > On Fri, 13 Mar 2009, Robert Noland wrote: >=20 > > > If I start rebooting before it is printed, the system locks up. Of=20 > > > course, this is only after rebooting several times. > > >=20 > > > Here is a successful start and shutdown: > > > http://people.freebsd.org/~scf/drm-dmesg.log > > > http://people.freebsd.org/~scf/Xorg.0.log > >=20 > > Ok, I'll spend some time staring at the current code... Thanks for the > > backtrace too, it's nice to get those... >=20 > This seems to be the same panic I mentioned in the > "Filesystems being eaten?" thread on freebsd-current. >=20 > I reproducible got this panic on: > FreeBSD 8.0-CURRENT #39: Sat Mar 7 20:37:29 CET 2009 > when shutting Xorg down. I can no longer reproduce it with: > FreeBSD 8.0-CURRENT #42: Sat Mar 14 00:47:09 CET 2009 Hrm, ok... let's do this.... The only thing that I have that is in that window that isn't past the MFC date I set, is the r600 code. It's been in for a little over a week now and hasn't killed anyone that I'm aware of, so I'll go ahead and merge everything outstanding from -CURRENT. robert. > Fabian --=20 Robert Noland FreeBSD --=-WwkbArxSO915uf27o7sg Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm9NbwACgkQM4TrQ4qfROPv8wCdGCewBVxNAZbX4ZDliQNYTd1A qdoAnAsHgUnK4zfnxBna5Ex7Azj9Jtq5 =N+Sj -----END PGP SIGNATURE----- --=-WwkbArxSO915uf27o7sg-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 17:29:38 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C72931065680; Sun, 15 Mar 2009 17:29:38 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 7106C8FC1A; Sun, 15 Mar 2009 17:29:38 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2FHSE1E047599 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 15 Mar 2009 13:28:14 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Fabian Keil In-Reply-To: <20090315142706.16ffca16@fabiankeil.de> References: <1236997834.1735.30.camel@balrog.2hip.net> <1237016323.1789.13.camel@balrog.2hip.net> <20090315142706.16ffca16@fabiankeil.de> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-1JMyKkRNIkRUv/eCLEu/" Organization: FreeBSD Date: Sun, 15 Mar 2009 12:29:23 -0500 Message-Id: <1237138163.1774.5.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-stable@FreeBSD.org, "Sean C. Farley" Subject: Re: Panic in radeon_get_vblank_counter() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 17:29:39 -0000 --=-1JMyKkRNIkRUv/eCLEu/ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2009-03-15 at 14:27 +0100, Fabian Keil wrote: > Robert Noland wrote: >=20 > > On Fri, 2009-03-13 at 23:33 -0500, Sean C. Farley wrote:=20 > > > On Fri, 13 Mar 2009, Robert Noland wrote: >=20 > > > If I start rebooting before it is printed, the system locks up. Of=20 > > > course, this is only after rebooting several times. > > >=20 > > > Here is a successful start and shutdown: > > > http://people.freebsd.org/~scf/drm-dmesg.log > > > http://people.freebsd.org/~scf/Xorg.0.log > >=20 > > Ok, I'll spend some time staring at the current code... Thanks for the > > backtrace too, it's nice to get those... >=20 > This seems to be the same panic I mentioned in the > "Filesystems being eaten?" thread on freebsd-current. >=20 > I reproducible got this panic on: > FreeBSD 8.0-CURRENT #39: Sat Mar 7 20:37:29 CET 2009 > when shutting Xorg down. I can no longer reproduce it with: > FreeBSD 8.0-CURRENT #42: Sat Mar 14 00:47:09 CET 2009 Ok, everything from HEAD is merged... Give it a little while for the mirrors to catch up and give it a shot. robert. > Fabian --=20 Robert Noland FreeBSD --=-1JMyKkRNIkRUv/eCLEu/ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm9OvMACgkQM4TrQ4qfROP4wwCfceL/MrFIfhDE0vcPSCEKrref Vt4An1T1Gny/4Dg99FPpYEFOPDdAoTRM =DCQZ -----END PGP SIGNATURE----- --=-1JMyKkRNIkRUv/eCLEu/-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 18:49:25 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D873F10656BB; Sun, 15 Mar 2009 18:49:25 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 9CC0E8FC22; Sun, 15 Mar 2009 18:49:25 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2FIm2IK047986 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 15 Mar 2009 14:48:03 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: freebsd-x11 , freebsd-stable Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-PIk2vDHrztSpXhe9lbsb" Organization: FreeBSD Date: Sun, 15 Mar 2009 13:49:12 -0500 Message-Id: <1237142952.1774.22.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: Subject: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 18:49:27 -0000 --=-PIk2vDHrztSpXhe9lbsb Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I went ahead and merged the Radeon R6/7xx code to -STABLE a while ago. The current xorg drivers will not enable it by default on R600+ chips. You will need to be using xf86-video-ati-6.12.0, xf86-video-radeonhd-devel or possibly even better git master of either. You will need to add the following to the Device section of your xorg.conf to enable it. If you are experiencing issues, commenting these two options out, will prevent Xorg from auto-loading the kernel module. Options "DRI" Options "AccelMethod" "EXA" robert. --=20 Robert Noland FreeBSD --=-PIk2vDHrztSpXhe9lbsb Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm9TagACgkQM4TrQ4qfRON4cACfUnTM8hopqLSbyRme3nlo5DtU BJwAnjXmZ5ycduzcmOX3r52tZSeWkVGM =uwTv -----END PGP SIGNATURE----- --=-PIk2vDHrztSpXhe9lbsb-- From owner-freebsd-stable@FreeBSD.ORG Sun Mar 15 21:33:29 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49A3B1065670 for ; Sun, 15 Mar 2009 21:33:29 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id DE3138FC08 for ; Sun, 15 Mar 2009 21:33:28 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LixxX-000OMR-68; Sun, 15 Mar 2009 23:33:27 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n2FLXOA3017477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 15 Mar 2009 23:33:24 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n2FLXOsV061935; Sun, 15 Mar 2009 23:33:24 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n2FLXOwr061934; Sun, 15 Mar 2009 23:33:24 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 15 Mar 2009 23:33:23 +0200 From: Kostik Belousov To: Robert Noland Message-ID: <20090315213323.GH41617@deviant.kiev.zoral.com.ua> References: <1237142952.1774.22.camel@balrog.2hip.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="v8LD186us6PWbfBU" Content-Disposition: inline In-Reply-To: <1237142952.1774.22.camel@balrog.2hip.net> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LixxX-000OMR-68 e75f497d1ef53e6874d1c6e9e69fe0f8 X-Terabit: YES Cc: freebsd-x11 , freebsd-stable Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2009 21:33:29 -0000 --v8LD186us6PWbfBU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 15, 2009 at 01:49:12PM -0500, Robert Noland wrote: > I went ahead and merged the Radeon R6/7xx code to -STABLE a while ago. >=20 > The current xorg drivers will not enable it by default on R600+ chips. > You will need to be using xf86-video-ati-6.12.0, > xf86-video-radeonhd-devel or possibly even better git master of either. >=20 > You will need to add the following to the Device section of your > xorg.conf to enable it. If you are experiencing issues, commenting > these two options out, will prevent Xorg from auto-loading the kernel > module. >=20 > Options "DRI" > Options "AccelMethod" "EXA" With this code and ati 6.12.0, I get the awful performance. Kernel says drm0: on vgapci0 vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xd0020000 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.29.0 20080528 vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xc0000000 info: [drm] Setting GART location based on new memory map error: [drm:pid1494:r600_do_init_cp] *ERROR* Need gart offset from userspace Then, the Xorg.0.log =2E.. (II) RADEON(0): [drm] register handle =3D 0xd0020000 (II) RADEON(0): [dri] Visual configs initialized (II) RADEON(0): RADEONRestoreMemMapRegisters() : (II) RADEON(0): MC_FB_LOCATION : 0x00df00c0 0x00df00c0 (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000 (=3D=3D) RADEON(0): Backing store disabled (II) RADEON(0): [DRI] installation complete (II) RADEON(0): [drm] removed 1 reserved context for kernel (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc731d000 at 0x286fd000 (II) RADEON(0): [drm] Closed DRM master. (WW) RADEON(0): Direct rendering disabled (EE) RADEON(0): Acceleration initialization failed =2E.. --v8LD186us6PWbfBU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkm9dCMACgkQC3+MBN1Mb4ir4wCaAuKyqzQguU4YEevZEHOalHRt xTUAoI7E3jmsV3fMNDhcZ+/Z9s4JilSu =f6A4 -----END PGP SIGNATURE----- --v8LD186us6PWbfBU-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 02:14:17 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75C35106566C for ; Mon, 16 Mar 2009 02:14:17 +0000 (UTC) (envelope-from peter.jeremy@alcatel-lucent.com.au) Received: from ausyds0105.alcatel.com.au (ausyds0105.alcatel.com.au [203.62.196.17]) by mx1.freebsd.org (Postfix) with ESMTP id EA33B8FC18 for ; Mon, 16 Mar 2009 02:14:16 +0000 (UTC) (envelope-from peter.jeremy@alcatel-lucent.com.au) Received: from insmb.au.alcatel-lucent.com (insmb.au.alcatel-lucent.com [139.188.42.184]) by ausyds0105.alcatel.com.au (8.12.11.20060308/8.12.11) with ESMTP id n2G2EEJ6016657; Mon, 16 Mar 2009 13:14:14 +1100 Received: from pjdesk.au.alcatel-lucent.com (pjdesk.au.alcatel-lucent.com [139.188.12.170]) by insmb.au.alcatel-lucent.com (8.13.8+Sun/8.13.3) with ESMTP id n2G2EHPZ025192; Mon, 16 Mar 2009 13:14:17 +1100 (EST) X-Bogosity: Ham, spamicity=0.000000 Received: from pjdesk.au.alcatel-lucent.com (localhost [127.0.0.1]) by pjdesk.au.alcatel-lucent.com (8.14.2/8.14.2) with ESMTP id n2G2ECoK037017; Mon, 16 Mar 2009 13:14:12 +1100 (EST) (envelope-from peter.jeremy@alcatel-lucent.com.au) Received: (from pjeremy@localhost) by pjdesk.au.alcatel-lucent.com (8.14.2/8.14.2/Submit) id n2G2ECkg037016; Mon, 16 Mar 2009 13:14:12 +1100 (EST) (envelope-from peter.jeremy@alcatel-lucent.com.au) Date: Mon, 16 Mar 2009 13:14:12 +1100 From: Peter Jeremy To: John Baldwin Message-ID: <20090316021412.GI5857@pjdesk.au.alcatel-lucent.com> References: <20090312043646.GB8352@pjdesk.au.alcatel-lucent.com> <200903120846.50630.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qpPEP5KwiTnADq8L" Content-Disposition: inline In-Reply-To: <200903120846.50630.jhb@freebsd.org> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.18 (2008-05-17) X-Scanned-By: MIMEDefang 2.64 on 139.188.119.54 Cc: Alan Cox , freebsd-stable@freebsd.org Subject: Re: 7.1 panic "vm_page_startup: inconsistent page counts" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 02:14:17 -0000 --qpPEP5KwiTnADq8L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2009-Mar-12 08:46:50 -0400, John Baldwin wrote: >On Thursday 12 March 2009 12:36:46 am Peter Jeremy wrote: >> I'm trying to upgrade an 11 month old FreeBSD 7 image in a VMware >> 4.5.2 guest to an up-to-date -stable and it panics as above. I've >> added a printf to report the two counts and there's a difference of >> one page. I don't have any problems with the old 7-stable image or >> up-to-date 6-stable or -current using the same VMware version. >>=20 >> A screendump for a verbose boot can be found at >> http://imagebin.ca/img/wahNNw.gif >>=20 >> Can I safely delete the assert? > >I don't think so, I would report it to Alan. The one earlier report of th= is=20 >didn't include the detail that it was only off by one page. This is a bit moot now since you've disabled the test but rolling back to a kernel from 26th Feb (before the superpages MFC) doesn't have the page count discrepancy. --=20 Peter Jeremy --qpPEP5KwiTnADq8L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkm9tfQACgkQ/opHv/APuIeALgCeK5a4E9+jvyXf+Nby7Lc2zmXA U+MAoIDErXUswvE8+EZVUPqOtFgg/65O =iRy1 -----END PGP SIGNATURE----- --qpPEP5KwiTnADq8L-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 03:28:07 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCF44106564A; Mon, 16 Mar 2009 03:28:07 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 7A1468FC15; Mon, 16 Mar 2009 03:28:07 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2G3Qiue050448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 15 Mar 2009 23:26:45 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Kostik Belousov In-Reply-To: <20090315213323.GH41617@deviant.kiev.zoral.com.ua> References: <1237142952.1774.22.camel@balrog.2hip.net> <20090315213323.GH41617@deviant.kiev.zoral.com.ua> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-Z74DwQqEE2UaKPQFO8JE" Organization: FreeBSD Date: Sun, 15 Mar 2009 22:27:53 -0500 Message-Id: <1237174073.18826.9.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 03:28:08 -0000 --=-Z74DwQqEE2UaKPQFO8JE Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2009-03-15 at 23:33 +0200, Kostik Belousov wrote: > On Sun, Mar 15, 2009 at 01:49:12PM -0500, Robert Noland wrote: > > I went ahead and merged the Radeon R6/7xx code to -STABLE a while ago. > >=20 > > The current xorg drivers will not enable it by default on R600+ chips. > > You will need to be using xf86-video-ati-6.12.0, > > xf86-video-radeonhd-devel or possibly even better git master of either. > >=20 > > You will need to add the following to the Device section of your > > xorg.conf to enable it. If you are experiencing issues, commenting > > these two options out, will prevent Xorg from auto-loading the kernel > > module. > >=20 > > Options "DRI" > > Options "AccelMethod" "EXA" >=20 > With this code and ati 6.12.0, I get the awful performance. > Kernel says > drm0: on vgapci0 > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xd0020000 > vgapci0: child drm0 requested pci_enable_busmaster > info: [drm] Initialized radeon 1.29.0 20080528 > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xc0000000 > info: [drm] Setting GART location based on new memory map > error: [drm:pid1494:r600_do_init_cp] *ERROR* Need gart offset from usersp= ace Your card was agp right? What happens if you force pci mode? Options "BusType" "PCI" robert. > Then, the Xorg.0.log > ... > (II) RADEON(0): [drm] register handle =3D 0xd0020000 > (II) RADEON(0): [dri] Visual configs initialized > (II) RADEON(0): RADEONRestoreMemMapRegisters() : > (II) RADEON(0): MC_FB_LOCATION : 0x00df00c0 0x00df00c0 > (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000 > (=3D=3D) RADEON(0): Backing store disabled > (II) RADEON(0): [DRI] installation complete > (II) RADEON(0): [drm] removed 1 reserved context for kernel > (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc731d000 at 0x286fd= 000 > (II) RADEON(0): [drm] Closed DRM master. > (WW) RADEON(0): Direct rendering disabled > (EE) RADEON(0): Acceleration initialization failed > ... --=20 Robert Noland FreeBSD --=-Z74DwQqEE2UaKPQFO8JE Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm9xzkACgkQM4TrQ4qfROP5GQCeIpMFQRZTY5SPoTxXmNhPp49n m4gAn3obZ6gDA5eFAT4rCvFRabceZYTX =GlzT -----END PGP SIGNATURE----- --=-Z74DwQqEE2UaKPQFO8JE-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 09:43:28 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E1C11065687; Mon, 16 Mar 2009 09:43:28 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id 835DC8FC2C; Mon, 16 Mar 2009 09:43:27 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Lj9Lx-000OM5-9p; Mon, 16 Mar 2009 11:43:25 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n2G9hDSI071240 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Mar 2009 11:43:13 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n2G9hDCx066973; Mon, 16 Mar 2009 11:43:13 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n2G9hCxb066972; Mon, 16 Mar 2009 11:43:12 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 16 Mar 2009 11:43:12 +0200 From: Kostik Belousov To: Robert Noland Message-ID: <20090316094312.GI41617@deviant.kiev.zoral.com.ua> References: <1237142952.1774.22.camel@balrog.2hip.net> <20090315213323.GH41617@deviant.kiev.zoral.com.ua> <1237174073.18826.9.camel@balrog.2hip.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jq2WJ0WviOMIaGZ0" Content-Disposition: inline In-Reply-To: <1237174073.18826.9.camel@balrog.2hip.net> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1Lj9Lx-000OM5-9p bbef41b7d49da1b93ba3c74ec55547c3 X-Terabit: YES Cc: freebsd-x11 , freebsd-stable Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 09:43:29 -0000 --jq2WJ0WviOMIaGZ0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 15, 2009 at 10:27:53PM -0500, Robert Noland wrote: > On Sun, 2009-03-15 at 23:33 +0200, Kostik Belousov wrote: > > On Sun, Mar 15, 2009 at 01:49:12PM -0500, Robert Noland wrote: > > > I went ahead and merged the Radeon R6/7xx code to -STABLE a while ago. > > >=20 > > > The current xorg drivers will not enable it by default on R600+ chips. > > > You will need to be using xf86-video-ati-6.12.0, > > > xf86-video-radeonhd-devel or possibly even better git master of eithe= r. > > >=20 > > > You will need to add the following to the Device section of your > > > xorg.conf to enable it. If you are experiencing issues, commenting > > > these two options out, will prevent Xorg from auto-loading the kernel > > > module. > > >=20 > > > Options "DRI" > > > Options "AccelMethod" "EXA" > >=20 > > With this code and ati 6.12.0, I get the awful performance. > > Kernel says > > drm0: on vgapci0 > > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xd0020000 > > vgapci0: child drm0 requested pci_enable_busmaster > > info: [drm] Initialized radeon 1.29.0 20080528 > > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xc0000000 > > info: [drm] Setting GART location based on new memory map > > error: [drm:pid1494:r600_do_init_cp] *ERROR* Need gart offset from user= space >=20 > Your card was agp right? No, this is PCIe card. It is reported correctly as Radeon HD 2600 XT. Motherboard chipset is Intel P43, if this makes any useful information. >=20 > What happens if you force pci mode? >=20 > Options "BusType" "PCI" >=20 > robert. >=20 > > Then, the Xorg.0.log > > ... > > (II) RADEON(0): [drm] register handle =3D 0xd0020000 > > (II) RADEON(0): [dri] Visual configs initialized > > (II) RADEON(0): RADEONRestoreMemMapRegisters() : > > (II) RADEON(0): MC_FB_LOCATION : 0x00df00c0 0x00df00c0 > > (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000 > > (=3D=3D) RADEON(0): Backing store disabled > > (II) RADEON(0): [DRI] installation complete > > (II) RADEON(0): [drm] removed 1 reserved context for kernel > > (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc731d000 at 0x286= fd000 > > (II) RADEON(0): [drm] Closed DRM master. > > (WW) RADEON(0): Direct rendering disabled > > (EE) RADEON(0): Acceleration initialization failed > > ... > --=20 > Robert Noland > FreeBSD --jq2WJ0WviOMIaGZ0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkm+HzAACgkQC3+MBN1Mb4jQOQCfTEnV3YXb1jiR7Ukz1JsEEdjj V5YAoNlB74DeiccPiC7q/CnX1jgnJYnW =kU4x -----END PGP SIGNATURE----- --jq2WJ0WviOMIaGZ0-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 10:36:18 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AECAE106566B for ; Mon, 16 Mar 2009 10:36:18 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-bw0-f164.google.com (mail-bw0-f164.google.com [209.85.218.164]) by mx1.freebsd.org (Postfix) with ESMTP id 3DB378FC08 for ; Mon, 16 Mar 2009 10:36:17 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by bwz8 with SMTP id 8so3317629bwz.43 for ; Mon, 16 Mar 2009 03:36:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=Ce8GNUrsjnTGFbTZ+RBhH0/QZE4/viLUJq3es+bZBnk=; b=WLk73t32TQJSfSOjukHzCIDlJT/YstugaE4LcYhkryBBEVtH3okB0FefM//5GDLoMb /IXL8BmDMggyNNcVwu0BWhDG+gJO2lV3g6bo/mWpYNAJ1xGtD8sTDwvnDshqCijwN3gd CzidGAOYARQF+YICsd+eARDF+fYSafb19Aoic= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=U0UOb9W/v8IyPziT1guq3yzU9I3emkr1ibHzDNCBaI0D7UpA7929UBACY3/jc4m7Hz sSrnhMQJpSTAw+3RqrPvF88jKccPT4Kjp3nan6VycE8+Xy3+Wm89eHH234o7Ztv+/CgL ETNIgFyac+C8QGLCRFfthfGGXTUsqhBaywK4s= MIME-Version: 1.0 Received: by 10.103.213.10 with SMTP id p10mr2045833muq.17.1237199777099; Mon, 16 Mar 2009 03:36:17 -0700 (PDT) Date: Mon, 16 Mar 2009 13:36:17 +0300 Message-ID: From: pluknet To: FreeBSD Stable Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: bge0: EEPROM read timed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 10:36:19 -0000 Hi. I got this on today's RELENG_6 with Broadcom BCM5722 A0, ASIC rev. 0xa200. >From dmesg (bge related): bge0: mem 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 bge0: firmware handshake timed out, found 0x4b657654 bge0: firmware handshake timed out, found 0x4b657654 bge0: EEPROM read timed out bge0: failed to read EEPROM device_attach: bge0 attach returned 6 bge1: mem 0xe8600000-0xe860ffff irq 21 at device 1.0 on pci3 miibus0: on bge1 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto bge1: Ethernet address: 00:21:5e:4d:05:c8 any hints? P.S. I see EEPROM timeout fixes were already merged to RELENG_6 (I have post-fix version certainly). May that issue be somehow related? -- wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 10:55:43 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 350A91065670; Mon, 16 Mar 2009 10:55:43 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [IPv6:2a01:170:102f::2]) by mx1.freebsd.org (Postfix) with ESMTP id A98238FC1A; Mon, 16 Mar 2009 10:55:42 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (localhost [127.0.0.1]) by lurza.secnetix.de (8.14.3/8.14.3) with ESMTP id n2GAtHlb077733; Mon, 16 Mar 2009 11:55:40 +0100 (CET) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.14.3/8.14.3/Submit) id n2GAtHkt077732; Mon, 16 Mar 2009 11:55:17 +0100 (CET) (envelope-from olli) Date: Mon, 16 Mar 2009 11:55:17 +0100 (CET) Message-Id: <200903161055.n2GAtHkt077732@lurza.secnetix.de> From: Oliver Fromme To: freebsd-stable@FreeBSD.ORG, dougb@FreeBSD.ORG In-Reply-To: <49BA1BAA.3080905@FreeBSD.org> X-Newsgroups: list.freebsd-stable User-Agent: tin/1.8.3-20070201 ("Scotasay") (UNIX) (FreeBSD/6.4-PRERELEASE-20080904 (i386)) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Mon, 16 Mar 2009 11:55:40 +0100 (CET) Cc: Subject: Re: mergemaster annoyance or not? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@FreeBSD.ORG, dougb@FreeBSD.ORG List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 10:55:43 -0000 Doug Barton wrote: > The attached patch adds a -F option to automatically install files > when only the FreeBSD $Ids differ. I've tested this and it seems to do > what the people concerned about this issue are asking for. That seems to be a useful feature. You need to quote the dollar signs, though. However, maybe the best solution is to add a new keyword for mergemaster.rc, so the user can exactly specify which kind of changes should be always installed. So the new -L option (which could still exist as a short-cut) would be the same as the following line in mergemaster.rc: AUTO_INSTALL_DIFF='-I[$]FreeBSD:.*[$]' For example, if someone is not interested in pure white- space changes and changes to #-style comments, he could let those be auto-installed thusly: AUTO_INSTALL_DIFF='-Bb -I#.* -I[$]FreeBSD:.*[$]' What do you think? Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing b. M. Handelsregister: Registergericht Muenchen, HRA 74606, Geschäftsfuehrung: secnetix Verwaltungsgesellsch. mbH, Handelsregister: Registergericht Mün- chen, HRB 125758, Geschäftsführer: Maik Bachmann, Olaf Erb, Ralf Gebhart FreeBSD-Dienstleistungen, -Produkte und mehr: http://www.secnetix.de/bsd "I have stopped reading Stephen King novels. Now I just read C code instead." -- Richard A. O'Keefe From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 12:08:28 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA13710657B4 for ; Mon, 16 Mar 2009 12:08:27 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-fx0-f158.google.com (mail-fx0-f158.google.com [209.85.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id 3F13F8FC23 for ; Mon, 16 Mar 2009 12:08:27 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by fxm2 with SMTP id 2so3317727fxm.43 for ; Mon, 16 Mar 2009 05:08:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Wp6utCSucgm/T51vuHI4SuK8TvtrP4PmTUumHo/t7Os=; b=HumUs6f5CUj+IQkDPuC7P8T4MEnWDeCsRo+RkD2bd9rp3brbRCrrjmnoYdl5I71UuI NBf26XdK4r+i9nGSYtrvdPlRNJYDGOEOhaZfMKisEDOgDgu7CEhD0q5sq86J/m1JSHOF JIX+Nab6bqU2KEWanNcmzRTHu0Sz9lub3hFxk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=NSf71zJP+PxJsqOMfwPnQkzTqlIcsbxbX56PxSwvrqTioLRwkR7hEb7AE8UnRiw2GN ECVnSv92pB3h8qzkrTMd7h10JYjcqu0aLLGiD9QuJNRkga/QlduPbOr1NHEfbh1aHa4h Mj+LVaP7JR/0WMVGFe2wPWpj7BNObCJpWk8hA= MIME-Version: 1.0 Received: by 10.103.240.5 with SMTP id s5mr2122378mur.133.1237205306265; Mon, 16 Mar 2009 05:08:26 -0700 (PDT) In-Reply-To: References: Date: Mon, 16 Mar 2009 15:08:26 +0300 Message-ID: From: pluknet To: FreeBSD Stable Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: bge0: EEPROM read timed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 12:08:40 -0000 2009/3/16 pluknet : > Hi. > > I got this on today's RELENG_6 with Broadcom BCM5722 A0, ASIC rev. 0xa200= . > > From dmesg (bge related): > > bge0: mem > 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 > bge0: firmware handshake timed out, found 0x4b657654 > bge0: firmware handshake timed out, found 0x4b657654 > bge0: EEPROM read timed out > bge0: failed to read EEPROM > device_attach: bge0 attach returned 6 > bge1: mem > 0xe8600000-0xe860ffff irq 21 at device 1.0 on pci3 > miibus0: on bge1 > brgphy0: on miibus0 > brgphy0: =A010baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, > 1000baseT-FDX, auto > bge1: Ethernet address: 00:21:5e:4d:05:c8 > > > any hints? > > P.S. I see EEPROM timeout fixes were already merged to RELENG_6 (I > have post-fix version certainly). > May that issue be somehow related? > I guess it's a regression. Below are my speculations. I tried to build on 6.2-R the bge(4) sources checked from later RELENG_6 just after BCM5722 support (from if_bgereg.h 1.36.2.11/ if_bge.c1.91.2.26) in order to backport BCM5722 support into 6.2-R. After some tweaks it was built, so.. What I got in dmesg (after native statically built bge(4) replacement in boot loader prompt) is: FreeBSD 6.2-RELEASE-p8 #13: Thu Feb 19 14:52:30 MSK 2009 [..snip..] bgex0: mem 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 bgex0: Ethernet address: 00:21:5e:4d:05:c7 Whoohoo.. So, here it even reached macaddr designation. (and going to panic at nfs boot time (probably to different locking scheme between 6.2 and 6.4, but it's an another story)= ). --=20 wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 17:02:11 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 086511065722 for ; Mon, 16 Mar 2009 17:02:11 +0000 (UTC) (envelope-from h.schmalzbauer@OmniLAN.de) Received: from host.omnilan.net (host.omnilan.net [62.245.232.135]) by mx1.freebsd.org (Postfix) with ESMTP id 830838FC15 for ; Mon, 16 Mar 2009 17:02:10 +0000 (UTC) (envelope-from h.schmalzbauer@OmniLAN.de) Received: from titan.flintsbach.schmalzbauer.de (titan.flintsbach.schmalzbauer.de [172.21.1.150]) (authenticated bits=0) by host.omnilan.net (8.13.8/8.13.8) with ESMTP id n2GGpWid048399 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 16 Mar 2009 17:51:35 +0100 (CET) (envelope-from h.schmalzbauer@OmniLAN.de) Message-ID: <49BE8389.8010805@OmniLAN.de> Date: Mon, 16 Mar 2009 17:51:21 +0100 From: Harald Schmalzbauer Organization: OmniLAN User-Agent: Thunderbird 2.0.0.19 (X11/20090202) MIME-Version: 1.0 To: freebsd-stable@freebsd.org X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigF08E78412FB93E3384178F8D" Subject: FIB (routing table) question with jailed service X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 17:02:14 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF08E78412FB93E3384178F8D Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Hello, I set up a second routingtable and told rc.d/jail to use the FIB1. Now I wonder why the SSHd in the jail isn't responding. I set the=20 default router to a local address and the second default router in FIB1=20 to the ISP router, reachable via a second NIC. Does the FIb only work for outgoing, intiating connections? Best regards, -Harry --------------enigF08E78412FB93E3384178F8D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkm+g5QACgkQLDqVQ9VXb8i7ygCdEYfK3hLe3e1eQhtlljUtQzL/ O5wAoL7BtRA9RnQW0BgJvOaauCKstfxL =/MtT -----END PGP SIGNATURE----- --------------enigF08E78412FB93E3384178F8D-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 17:33:40 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A65B106564A; Mon, 16 Mar 2009 17:33:40 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 5CE228FC0C; Mon, 16 Mar 2009 17:33:40 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2GHWHbZ055133 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Mar 2009 13:32:18 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Kostik Belousov In-Reply-To: <20090316094312.GI41617@deviant.kiev.zoral.com.ua> References: <1237142952.1774.22.camel@balrog.2hip.net> <20090315213323.GH41617@deviant.kiev.zoral.com.ua> <1237174073.18826.9.camel@balrog.2hip.net> <20090316094312.GI41617@deviant.kiev.zoral.com.ua> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-VGZMNQ2jjSsQeSieJ+1l" Organization: FreeBSD Date: Mon, 16 Mar 2009 12:33:26 -0500 Message-Id: <1237224806.1865.72.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 17:33:41 -0000 --=-VGZMNQ2jjSsQeSieJ+1l Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2009-03-16 at 11:43 +0200, Kostik Belousov wrote: > On Sun, Mar 15, 2009 at 10:27:53PM -0500, Robert Noland wrote: > > On Sun, 2009-03-15 at 23:33 +0200, Kostik Belousov wrote: > > > On Sun, Mar 15, 2009 at 01:49:12PM -0500, Robert Noland wrote: > > > > I went ahead and merged the Radeon R6/7xx code to -STABLE a while a= go. > > > >=20 > > > > The current xorg drivers will not enable it by default on R600+ chi= ps. > > > > You will need to be using xf86-video-ati-6.12.0, > > > > xf86-video-radeonhd-devel or possibly even better git master of eit= her. > > > >=20 > > > > You will need to add the following to the Device section of your > > > > xorg.conf to enable it. If you are experiencing issues, commenting > > > > these two options out, will prevent Xorg from auto-loading the kern= el > > > > module. > > > >=20 > > > > Options "DRI" > > > > Options "AccelMethod" "EXA" > > >=20 > > > With this code and ati 6.12.0, I get the awful performance. > > > Kernel says > > > drm0: on vgapci0 > > > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xd0020000 > > > vgapci0: child drm0 requested pci_enable_busmaster > > > info: [drm] Initialized radeon 1.29.0 20080528 > > > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xc0000000 > > > info: [drm] Setting GART location based on new memory map > > > error: [drm:pid1494:r600_do_init_cp] *ERROR* Need gart offset from us= erspace > >=20 > > Your card was agp right? > No, this is PCIe card. It is reported correctly as Radeon HD 2600 XT. > Motherboard chipset is Intel P43, if this makes any useful information. Ok, let me look over the code again and figure out how we get into this state. I may need more details, let me figure out what I need. robert. > >=20 > > What happens if you force pci mode? > >=20 > > Options "BusType" "PCI" > >=20 > > robert. > >=20 > > > Then, the Xorg.0.log > > > ... > > > (II) RADEON(0): [drm] register handle =3D 0xd0020000 > > > (II) RADEON(0): [dri] Visual configs initialized > > > (II) RADEON(0): RADEONRestoreMemMapRegisters() : > > > (II) RADEON(0): MC_FB_LOCATION : 0x00df00c0 0x00df00c0 > > > (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000 > > > (=3D=3D) RADEON(0): Backing store disabled > > > (II) RADEON(0): [DRI] installation complete > > > (II) RADEON(0): [drm] removed 1 reserved context for kernel > > > (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc731d000 at 0x2= 86fd000 > > > (II) RADEON(0): [drm] Closed DRM master. > > > (WW) RADEON(0): Direct rendering disabled > > > (EE) RADEON(0): Acceleration initialization failed > > > ... > > --=20 > > Robert Noland > > FreeBSD >=20 >=20 --=20 Robert Noland FreeBSD --=-VGZMNQ2jjSsQeSieJ+1l Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm+jWYACgkQM4TrQ4qfROPELgCfSlwbwrZRPNs3TBQ79+9IZiyr hpsAnjBaG8ssNywlHxWvkw/F7J37TSuO =fXvJ -----END PGP SIGNATURE----- --=-VGZMNQ2jjSsQeSieJ+1l-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 17:41:00 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2799106566B; Mon, 16 Mar 2009 17:41:00 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from mail.farley.org (mail.farley.org [IPv6:2001:470:1f0f:20:2::11]) by mx1.freebsd.org (Postfix) with ESMTP id 014C68FC17; Mon, 16 Mar 2009 17:40:59 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from thor.farley.org (HPooka@thor.farley.org [IPv6:2001:470:1f0f:20:1::5]) by mail.farley.org (8.14.3/8.14.3) with ESMTP id n2GHewbO005728; Mon, 16 Mar 2009 12:40:58 -0500 (CDT) (envelope-from scf@FreeBSD.org) Date: Mon, 16 Mar 2009 12:40:58 -0500 (CDT) From: "Sean C. Farley" To: Robert Noland In-Reply-To: <1237138163.1774.5.camel@balrog.2hip.net> Message-ID: References: <1236997834.1735.30.camel@balrog.2hip.net> <1237016323.1789.13.camel@balrog.2hip.net> <20090315142706.16ffca16@fabiankeil.de> <1237138163.1774.5.camel@balrog.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Spam-Status: No, score=-3.0 required=3.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on mail.farley.org Cc: freebsd-stable@FreeBSD.org Subject: Re: Panic in radeon_get_vblank_counter() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 17:41:01 -0000 On Sun, 15 Mar 2009, Robert Noland wrote: > On Sun, 2009-03-15 at 14:27 +0100, Fabian Keil wrote: >> Robert Noland wrote: >>> On Fri, 2009-03-13 at 23:33 -0500, Sean C. Farley wrote: >>>> On Fri, 13 Mar 2009, Robert Noland wrote: >> >>>> If I start rebooting before it is printed, the system locks up. Of >>>> course, this is only after rebooting several times. >>>> >>>> Here is a successful start and shutdown: >>>> http://people.freebsd.org/~scf/drm-dmesg.log >>>> http://people.freebsd.org/~scf/Xorg.0.log >>> >>> Ok, I'll spend some time staring at the current code... Thanks for >>> the backtrace too, it's nice to get those... >> >> This seems to be the same panic I mentioned in the >> "Filesystems being eaten?" thread on freebsd-current. >> >> I reproducible got this panic on: >> FreeBSD 8.0-CURRENT #39: Sat Mar 7 20:37:29 CET 2009 >> when shutting Xorg down. I can no longer reproduce it with: >> FreeBSD 8.0-CURRENT #42: Sat Mar 14 00:47:09 CET 2009 > > Ok, everything from HEAD is merged... Give it a little while for the > mirrors to catch up and give it a shot. I tried several times, and I was unable to get it to panic again. Thank you! Sean -- scf@FreeBSD.org From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 17:59:44 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 680811065673 for ; Mon, 16 Mar 2009 17:59:44 +0000 (UTC) (envelope-from nakal@web.de) Received: from fmmailgate01.web.de (fmmailgate01.web.de [217.72.192.221]) by mx1.freebsd.org (Postfix) with ESMTP id EC3748FC18 for ; Mon, 16 Mar 2009 17:59:43 +0000 (UTC) (envelope-from nakal@web.de) Received: from smtp07.web.de (fmsmtp07.dlan.cinetic.de [172.20.5.215]) by fmmailgate01.web.de (Postfix) with ESMTP id 58CF4FEA2BCA for ; Mon, 16 Mar 2009 18:36:21 +0100 (CET) Received: from [217.236.19.116] (helo=zelda.local) by smtp07.web.de with asmtp (TLSv1:AES128-SHA:128) (WEB.DE 4.110 #277) id 1LjGjc-0001NR-00 for stable@freebsd.org; Mon, 16 Mar 2009 18:36:21 +0100 Date: Mon, 16 Mar 2009 18:36:09 +0100 From: Martin To: stable@freebsd.org Message-ID: <20090316183609.2b948933@zelda.local> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.14.7; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: nakal@web.de X-Sender: nakal@web.de X-Provags-ID: V01U2FsdGVkX18iWmxx7saG2ocasSW6fty3s4Jw1IE/fl2ZlEeM VxZqhBt1/CYJ3SxKiPc7PW8kYOC0PUdrwEMYWQRog/L+7rUO34 6e9D5C/4Y= Cc: Subject: IPv6 gif(4) MTU: manpage vs src inconsistency? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 17:59:44 -0000 Hi, it seems I have trouble to reach some websites using IPv6 through a gif tunnel. Most websites work, except for these two: www.freebsd.org www.kame.net I've searched for problems and it seems, I cannot send ping packets larger than 1232 from the host behind my router. That's why I wanted to decrease the MTU on gif from 1280 to 1240, as the manpage gif(4) suggests: "If the outer protocol is IPv6, path MTU discovery for encapsulated packets may affect communication over the interface. The first bigger-than- pmtu packet may be lost. To avoid the problem, you may want to set the interface MTU for gif to 1240 or smaller, when the outer header is IPv6 and the inner header is IPv4." And I tried it: # ifconfig gif0 mtu 1240 ifconfig: ioctl (set mtu): Invalid argument It does not work, because in source, you can find: if_gif.h: #define GIF_MTU (1280) /* Default MTU */ #define GIF_MTU_MIN (1280) /* Minimum MTU */ #define GIF_MTU_MAX (8192) /* Maximum MTU */ What now? One of the values is wrong, in my opinion. I still don't know the exact cause of the IPv6 website problems. Is there anyone who has a solution for this? I can access ALL WEBSITES from my router directly that has configured the gif tunnel. But all hosts that use the router for default route cannot access the two websites. I have also no issues with traffic to IRC server and so on. I've just found these two hosts that are "different" somehow. This is confusing. Router configuration: tun0: flags=8051 metric 0 mtu 1492 inet xx.xx.xx.xx --> yy.yy.yy.yy netmask 0xffffffff Opened by PID 433 gif0: flags=8051 metric 0 mtu 1280 tunnel inet xx.xx.xx.xx --> 192.88.99.1 inet6 2002:xxxx:xxxx::1 prefixlen 64 Host behind the router that chokes on the two websites: re0: flags=8843 metric 0 mtu 1500 options=389b ether zz:zz:zz:zz:zz:zz inet6 fe80::zzzz:zzzz:zzzz:zzzz%re0 prefixlen 64 scopeid 0x1 inet 192.168.0.12 netmask 0xffffff00 broadcast 192.168.0.255 inet6 fde2:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz prefixlen 64 autoconf inet6 2002:xxxx:xxxx:1:zzzz:zzzz:zzzz:zzzz prefixlen 64 autoconf media: Ethernet autoselect (100baseTX ) status: active -- Martin From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 18:02:27 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DEE61065674 for ; Mon, 16 Mar 2009 18:02:27 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: from mail.utahbroadband.com (mail.utahbroadband.com [204.14.20.91]) by mx1.freebsd.org (Postfix) with ESMTP id 14BC18FC17 for ; Mon, 16 Mar 2009 18:02:26 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: (qmail 16055 invoked by uid 89); 16 Mar 2009 17:57:43 -0000 Received: from unknown (HELO ?192.168.0.18?) (danallen46@airwired.net@66.29.174.6) by 0 with ESMTPA; 16 Mar 2009 17:57:43 -0000 Message-Id: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> From: Dan Allen To: FreeBSD-STABLE Mailing List Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Mon, 16 Mar 2009 11:59:25 -0600 X-Mailer: Apple Mail (2.930.3) Subject: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 18:02:27 -0000 I saw that someone else had this happen last week... It is not a hardware failure. While building the latest GCC 4.4 from /usr/ports/lang/gcc44 I got a core dump with the message vm_page_insert: page already inserted I build this port every week on a Toshiba laptop (1.8GHz Core 2 Duo, 1 GB RAM, 160 GB HD, plenty of free space, RELENG_7). I have never seen this until today. Just before building this port I completely built the kernel and world and installed them, so I am as up-to-date as you could be. I suspect recent changes to vm code... perhaps in /usr/src/sys/vm/ vm_meter.c or vm_page.c ? The compressed core dump is 41 MB. Dan From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 18:20:09 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B850F106564A; Mon, 16 Mar 2009 18:20:09 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 60B728FC1D; Mon, 16 Mar 2009 18:20:09 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2GIIkxO055477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Mar 2009 14:18:46 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: "Sean C. Farley" In-Reply-To: References: <1236997834.1735.30.camel@balrog.2hip.net> <1237016323.1789.13.camel@balrog.2hip.net> <20090315142706.16ffca16@fabiankeil.de> <1237138163.1774.5.camel@balrog.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-Gzq8ssc9akc4iMQIcVhX" Organization: FreeBSD Date: Mon, 16 Mar 2009 13:19:54 -0500 Message-Id: <1237227594.1865.89.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-stable@FreeBSD.org Subject: Re: Panic in radeon_get_vblank_counter() X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 18:20:10 -0000 --=-Gzq8ssc9akc4iMQIcVhX Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2009-03-16 at 12:40 -0500, Sean C. Farley wrote: > On Sun, 15 Mar 2009, Robert Noland wrote: >=20 > > On Sun, 2009-03-15 at 14:27 +0100, Fabian Keil wrote: > >> Robert Noland wrote: > >>> On Fri, 2009-03-13 at 23:33 -0500, Sean C. Farley wrote: > >>>> On Fri, 13 Mar 2009, Robert Noland wrote: > >> > >>>> If I start rebooting before it is printed, the system locks up. Of > >>>> course, this is only after rebooting several times. > >>>> > >>>> Here is a successful start and shutdown: > >>>> http://people.freebsd.org/~scf/drm-dmesg.log > >>>> http://people.freebsd.org/~scf/Xorg.0.log > >>> > >>> Ok, I'll spend some time staring at the current code... Thanks for=20 > >>> the backtrace too, it's nice to get those... > >> > >> This seems to be the same panic I mentioned in the > >> "Filesystems being eaten?" thread on freebsd-current. > >> > >> I reproducible got this panic on: > >> FreeBSD 8.0-CURRENT #39: Sat Mar 7 20:37:29 CET 2009 > >> when shutting Xorg down. I can no longer reproduce it with: > >> FreeBSD 8.0-CURRENT #42: Sat Mar 14 00:47:09 CET 2009 > > > > Ok, everything from HEAD is merged... Give it a little while for the=20 > > mirrors to catch up and give it a shot. >=20 > I tried several times, and I was unable to get it to panic again. Cool, glad it worked out. robert. > Thank you! >=20 > Sean --=20 Robert Noland FreeBSD --=-Gzq8ssc9akc4iMQIcVhX Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm+mEoACgkQM4TrQ4qfROM8fACfTI5m9gcuoYmkqiPVJ6cKhgRD f/0AnjnvQgNhtzPbOd6CcymBJEzq2Cmx =c1YM -----END PGP SIGNATURE----- --=-Gzq8ssc9akc4iMQIcVhX-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 19:01:41 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 890D010656DE for ; Mon, 16 Mar 2009 19:01:41 +0000 (UTC) (envelope-from alan.l.cox@gmail.com) Received: from mail-gx0-f176.google.com (mail-gx0-f176.google.com [209.85.217.176]) by mx1.freebsd.org (Postfix) with ESMTP id 3EBBC8FC1A for ; Mon, 16 Mar 2009 19:01:41 +0000 (UTC) (envelope-from alan.l.cox@gmail.com) Received: by gxk24 with SMTP id 24so1214655gxk.19 for ; Mon, 16 Mar 2009 12:01:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=8teZecuHxOKWFq64X412SqMVNzXIHn5tjeS6svD++Zo=; b=QJynW+hFllTfujv/rEH+Qj8Wkte3b8DnYFVN6C5iSqsNPZOpG6GOuysg7SaylWHVX/ YztzS60Sv8PMsEgYDcmNd3zyJcO+cIFNhTqr1+jgaA4N60XCrC6mSwk0jCrxx596+a45 V5fQNDV5H5oAf7S1CtN/MEH4vEAUjJrSqTIiE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=PDbZhXVW+JyjwbSC2XxTKcdoRt015nuWnC7F/xNbm+RWpUhdUyHtFdut2gITQU8ORL R6YHOkqMmh+KCrJUtocqkoAkJBmpswsbjB5cYV8w9OHaODgx0LkD01BwqS9AGsOdEU2g rF1ZiRNtm5OqY1mHzdBbxghVikJjMsQBE/rNk= MIME-Version: 1.0 Received: by 10.150.98.18 with SMTP id v18mr9073682ybb.95.1237230100480; Mon, 16 Mar 2009 12:01:40 -0700 (PDT) In-Reply-To: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> Date: Mon, 16 Mar 2009 14:01:40 -0500 Message-ID: From: Alan Cox To: Dan Allen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD-STABLE Mailing List Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: alc@freebsd.org List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 19:01:42 -0000 On Mon, Mar 16, 2009 at 12:59 PM, Dan Allen wrote: > I saw that someone else had this happen last week... It is not a hardware > failure. > I have not seen that. I have only seen an assertion failure that would have nothing to do with your reported panic. > > While building the latest GCC 4.4 from /usr/ports/lang/gcc44 I got a core > dump with the message > > vm_page_insert: page already inserted > > I build this port every week on a Toshiba laptop (1.8GHz Core 2 Duo, 1 GB > RAM, 160 GB HD, plenty of free space, RELENG_7). I have never seen this > until today. Just before building this port I completely built the kernel > and world and installed them, so I am as up-to-date as you could be. > > I suspect recent changes to vm code... perhaps in > /usr/src/sys/vm/vm_meter.c or vm_page.c ? > > The compressed core dump is 41 MB. > For now, can you just provide the stack trace? Regards, Alan From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 19:11:31 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3242710656D7 for ; Mon, 16 Mar 2009 19:11:31 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (mail.cs.rice.edu [128.42.1.31]) by mx1.freebsd.org (Postfix) with ESMTP id 056B38FC18 for ; Mon, 16 Mar 2009 19:11:30 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (localhost.localdomain [127.0.0.1]) by mail.cs.rice.edu (Postfix) with ESMTP id A97592C2ACE; Mon, 16 Mar 2009 13:49:23 -0500 (CDT) X-Virus-Scanned: by amavis-2.4.0 at mail.cs.rice.edu Received: from mail.cs.rice.edu ([127.0.0.1]) by mail.cs.rice.edu (mail.cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id YxJIe-F5T6O0; Mon, 16 Mar 2009 13:49:16 -0500 (CDT) Received: from adsl-216-63-78-18.dsl.hstntx.swbell.net (adsl-216-63-78-18.dsl.hstntx.swbell.net [216.63.78.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cs.rice.edu (Postfix) with ESMTP id A139E2C2A7E; Mon, 16 Mar 2009 13:49:15 -0500 (CDT) Message-ID: <49BE9F2A.7040901@cs.rice.edu> Date: Mon, 16 Mar 2009 13:49:14 -0500 From: Alan Cox User-Agent: Thunderbird 2.0.0.19 (X11/20090124) MIME-Version: 1.0 To: Peter Jeremy References: <20090312043646.GB8352@pjdesk.au.alcatel-lucent.com> <200903120846.50630.jhb@freebsd.org> <20090316021412.GI5857@pjdesk.au.alcatel-lucent.com> In-Reply-To: <20090316021412.GI5857@pjdesk.au.alcatel-lucent.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Alan Cox , freebsd-stable@freebsd.org, John Baldwin Subject: Re: 7.1 panic "vm_page_startup: inconsistent page counts" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 19:11:33 -0000 Peter Jeremy wrote: > On 2009-Mar-12 08:46:50 -0400, John Baldwin wrote: > >> On Thursday 12 March 2009 12:36:46 am Peter Jeremy wrote: >> >>> I'm trying to upgrade an 11 month old FreeBSD 7 image in a VMware >>> 4.5.2 guest to an up-to-date -stable and it panics as above. I've >>> added a printf to report the two counts and there's a difference of >>> one page. I don't have any problems with the old 7-stable image or >>> up-to-date 6-stable or -current using the same VMware version. >>> >>> A screendump for a verbose boot can be found at >>> http://imagebin.ca/img/wahNNw.gif >>> >>> Can I safely delete the assert? >>> >> I don't think so, I would report it to Alan. The one earlier report of this >> didn't include the detail that it was only off by one page. >> > > This is a bit moot now since you've disabled the test but rolling back > to a kernel from 26th Feb (before the superpages MFC) doesn't have the > page count discrepancy. > > It's useful to know that the older kernel doesn't fail the assertion. Thanks. Alan From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 19:49:57 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00CFE1065718; Mon, 16 Mar 2009 19:49:56 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id 903728FC1A; Mon, 16 Mar 2009 19:49:56 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LjIot-000Kch-C4; Mon, 16 Mar 2009 21:49:55 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n2GJnnrF019552 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Mar 2009 21:49:49 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n2GJnniP082281; Mon, 16 Mar 2009 21:49:49 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n2GJnn7u082280; Mon, 16 Mar 2009 21:49:49 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 16 Mar 2009 21:49:49 +0200 From: Kostik Belousov To: Robert Noland Message-ID: <20090316194949.GP41617@deviant.kiev.zoral.com.ua> References: <1237142952.1774.22.camel@balrog.2hip.net> <20090315213323.GH41617@deviant.kiev.zoral.com.ua> <1237174073.18826.9.camel@balrog.2hip.net> <20090316094312.GI41617@deviant.kiev.zoral.com.ua> <1237224806.1865.72.camel@balrog.2hip.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/3M4yvOp2yGuEOBn" Content-Disposition: inline In-Reply-To: <1237224806.1865.72.camel@balrog.2hip.net> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LjIot-000Kch-C4 1baf84e2a31f4ecd5508961067eb2d0e X-Terabit: YES Cc: freebsd-x11 , freebsd-stable Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 19:49:58 -0000 --/3M4yvOp2yGuEOBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 16, 2009 at 12:33:26PM -0500, Robert Noland wrote: > On Mon, 2009-03-16 at 11:43 +0200, Kostik Belousov wrote: > > On Sun, Mar 15, 2009 at 10:27:53PM -0500, Robert Noland wrote: > > > On Sun, 2009-03-15 at 23:33 +0200, Kostik Belousov wrote: > > > > On Sun, Mar 15, 2009 at 01:49:12PM -0500, Robert Noland wrote: > > > > > I went ahead and merged the Radeon R6/7xx code to -STABLE a while= ago. > > > > >=20 > > > > > The current xorg drivers will not enable it by default on R600+ c= hips. > > > > > You will need to be using xf86-video-ati-6.12.0, > > > > > xf86-video-radeonhd-devel or possibly even better git master of e= ither. > > > > >=20 > > > > > You will need to add the following to the Device section of your > > > > > xorg.conf to enable it. If you are experiencing issues, commenti= ng > > > > > these two options out, will prevent Xorg from auto-loading the ke= rnel > > > > > module. > > > > >=20 > > > > > Options "DRI" > > > > > Options "AccelMethod" "EXA" > > > >=20 > > > > With this code and ati 6.12.0, I get the awful performance. > > > > Kernel says > > > > drm0: on vgapci0 > > > > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xd0020000 > > > > vgapci0: child drm0 requested pci_enable_busmaster > > > > info: [drm] Initialized radeon 1.29.0 20080528 > > > > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xc0000000 > > > > info: [drm] Setting GART location based on new memory map > > > > error: [drm:pid1494:r600_do_init_cp] *ERROR* Need gart offset from = userspace > > >=20 > > > Your card was agp right? > > No, this is PCIe card. It is reported correctly as Radeon HD 2600 XT. > > Motherboard chipset is Intel P43, if this makes any useful information. >=20 > Ok, let me look over the code again and figure out how we get into this > state. I may need more details, let me figure out what I need. >=20 > robert. >=20 > > >=20 > > > What happens if you force pci mode? > > >=20 > > > Options "BusType" "PCI" For the record. It appeared that I already had this option in the xorg.conf, and it was the cause of the problem. DRI works after removing this line. > > >=20 > > > robert. > > >=20 > > > > Then, the Xorg.0.log > > > > ... > > > > (II) RADEON(0): [drm] register handle =3D 0xd0020000 > > > > (II) RADEON(0): [dri] Visual configs initialized > > > > (II) RADEON(0): RADEONRestoreMemMapRegisters() : > > > > (II) RADEON(0): MC_FB_LOCATION : 0x00df00c0 0x00df00c0 > > > > (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000 > > > > (=3D=3D) RADEON(0): Backing store disabled > > > > (II) RADEON(0): [DRI] installation complete > > > > (II) RADEON(0): [drm] removed 1 reserved context for kernel > > > > (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xc731d000 at 0= x286fd000 > > > > (II) RADEON(0): [drm] Closed DRM master. > > > > (WW) RADEON(0): Direct rendering disabled > > > > (EE) RADEON(0): Acceleration initialization failed > > > > ... > > > --=20 > > > Robert Noland > > > FreeBSD > >=20 > >=20 > --=20 > Robert Noland > FreeBSD --/3M4yvOp2yGuEOBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkm+rVwACgkQC3+MBN1Mb4jAywCeKAB3oQYeernoqYZarSClMWDo VBMAoNSvDJjbJe7rW44I+3vYhSl9Xwtt =hl0N -----END PGP SIGNATURE----- --/3M4yvOp2yGuEOBn-- From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 20:49:47 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 342551065670 for ; Mon, 16 Mar 2009 20:49:47 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: from mail.utahbroadband.com (mail.utahbroadband.com [204.14.20.91]) by mx1.freebsd.org (Postfix) with ESMTP id EABB68FC23 for ; Mon, 16 Mar 2009 20:49:46 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: (qmail 1405 invoked by uid 89); 16 Mar 2009 20:45:00 -0000 Received: from unknown (HELO ?192.168.0.18?) (danallen46@airwired.net@66.29.174.6) by 0 with ESMTPA; 16 Mar 2009 20:45:00 -0000 Message-Id: From: Dan Allen To: alc@freebsd.org In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Mon, 16 Mar 2009 14:49:43 -0600 References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> X-Mailer: Apple Mail (2.930.3) Cc: FreeBSD-STABLE Mailing List Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 20:49:47 -0000 On 16 Mar 2009, at 1:01 PM, Alan Cox wrote: > For now, can you just provide the stack trace? How do I do this? Is there a tool that I run against the core dump? BTW, I just did the same gcc-4.4 build on my Mac and it built fine without any core dumps... Dan From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 21:42:03 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E476B1065676 for ; Mon, 16 Mar 2009 21:42:03 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from smtp.lamaiziere.net (net.lamaiziere.net [91.121.44.19]) by mx1.freebsd.org (Postfix) with ESMTP id A5D2D8FC12 for ; Mon, 16 Mar 2009 21:42:03 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from baby-jane.lamaiziere.net (166.10.87-79.rev.gaoland.net [79.87.10.166]) by smtp.lamaiziere.net (Postfix) with ESMTPA id E176D6332D9; Mon, 16 Mar 2009 22:42:01 +0100 (CET) Received: from baby-jane.lamaiziere.net (localhost [127.0.0.1]) by baby-jane.lamaiziere.net (Postfix) with ESMTP id F3600CCAD; Mon, 16 Mar 2009 22:42:03 +0100 (CET) Date: Mon, 16 Mar 2009 22:42:03 +0100 From: Patrick =?ISO-8859-15?Q?Lamaizi=E8re?= To: freebsd-stable@freebsd.org Message-ID: <20090316224203.0781a280@baby-jane.lamaiziere.net> In-Reply-To: References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> Organization: /dave/nulle X-Mailer: Claws Mail 3.7.1 (GTK+ 2.14.7; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Dan Allen Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 21:42:04 -0000 Le Mon, 16 Mar 2009 14:49:43 -0600, Dan Allen : > > For now, can you just provide the stack trace? > > How do I do this? Is there a tool that I run against the core dump? See http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html Regards. From owner-freebsd-stable@FreeBSD.ORG Mon Mar 16 23:23:12 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16010106566B for ; Mon, 16 Mar 2009 23:23:12 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: from mail.utahbroadband.com (mail.utahbroadband.com [204.14.20.91]) by mx1.freebsd.org (Postfix) with ESMTP id CB39A8FC1F for ; Mon, 16 Mar 2009 23:23:11 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: (qmail 9372 invoked by uid 89); 16 Mar 2009 23:18:24 -0000 Received: from unknown (HELO ?192.168.0.18?) (danallen46@airwired.net@66.29.174.6) by 0 with ESMTPA; 16 Mar 2009 23:18:24 -0000 Message-Id: From: Dan Allen To: =?ISO-8859-1?Q?Patrick_Lamaizi=E8re?= In-Reply-To: <20090316224203.0781a280@baby-jane.lamaiziere.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v930.3) Date: Mon, 16 Mar 2009 17:23:09 -0600 References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> <20090316224203.0781a280@baby-jane.lamaiziere.net> X-Mailer: Apple Mail (2.930.3) Cc: freebsd-stable@freebsd.org Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2009 23:23:12 -0000 On 16 Mar 2009, at 3:42 PM, Patrick Lamaizi=E8re wrote: > Le Mon, 16 Mar 2009 14:49:43 -0600, > Dan Allen : > >>> For now, can you just provide the stack trace? >> >> How do I do this? Is there a tool that I run against the core dump? > > See > = http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.html > > Regards. Thanks! It turns out that one must have a debug kernel around. I use STABLE =20 as a production system. There is no "kernel.debug" on my system. I =20 guess I therefore cannot provide a stack trace. Sorry. Dan From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 00:31:17 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5777D106566C for ; Tue, 17 Mar 2009 00:31:17 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.freebsd.org (Postfix) with ESMTP id C11698FC15 for ; Tue, 17 Mar 2009 00:31:16 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.localnet (Inchoate.gsoft.com.au [203.31.81.30]) (authenticated bits=0) by cain.gsoft.com.au (8.13.8/8.13.8) with ESMTP id n2H0V7hl069481 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Mar 2009 11:01:07 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: freebsd-stable@freebsd.org Date: Tue, 17 Mar 2009 11:00:54 +1030 User-Agent: KMail/1.10.4 (Linux/2.6.27-11-generic; KDE/4.1.4; i686; ; ) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart18753867.H2cCFLJ0zp"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200903171101.02846.doconnor@gsoft.com.au> X-Spam-Score: -3.977 () ALL_TRUSTED,BAYES_00 X-Scanned-By: MIMEDefang 2.63 on 203.31.81.10 Subject: Calling NUT users in America (and other 110V countries) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 00:31:17 -0000 --nextPart18753867.H2cCFLJ0zp Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Does anyone have a 110V MGE Pulsar connected to NUT via RS232? The reason I am asking is that we ship systems overseas (from Australia lan= d=20 of 230V) and typically have the customer purchase a UPS (or arrange for one= to=20 be delivered to the site) and I find that I can't communicate with them usi= ng=20 NUT. All of the MGE UPSs we have shipped from Australia work fine, and the hardw= are=20 and software is identical to 110V sites (Super micro C2SBA, FreeBSD 6.3). I have talked to the NUT maintainers but they are primarily Linux oriented = =20 and haven't yet cranked up a FreeBSD box to have a look at it. The symptoms are that it can talk to the UPS but there are frequent drops i= n=20 communication (very annoying as it fills the logs with crap), yet 230V unit= s=20 work flawlessly. I am not using USB because it was not reliable until very recently (and sti= ll=20 reconnects alarmingly often..) =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart18753867.H2cCFLJ0zp Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iD8DBQBJvu8/5ZPcIHs/zowRAnEiAJ9oYZnYWPKig3z3uN/ciLCJwGpq+gCeOGD1 DBro11T1TZkkVSscFHigYac= =kbq/ -----END PGP SIGNATURE----- --nextPart18753867.H2cCFLJ0zp-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 00:47:32 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AAF9106564A for ; Tue, 17 Mar 2009 00:47:32 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: from mail.utahbroadband.com (mail.utahbroadband.com [204.14.20.91]) by mx1.freebsd.org (Postfix) with ESMTP id E25468FC18 for ; Tue, 17 Mar 2009 00:47:31 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: (qmail 9118 invoked by uid 89); 17 Mar 2009 00:42:41 -0000 Received: from unknown (HELO ?192.168.0.18?) (danallen46@airwired.net@66.29.174.6) by 0 with ESMTPA; 17 Mar 2009 00:42:41 -0000 Message-Id: From: Dan Allen To: alc@freebsd.org In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Mon, 16 Mar 2009 18:47:27 -0600 References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> X-Mailer: Apple Mail (2.930.3) Cc: FreeBSD-STABLE Mailing List Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 00:47:32 -0000 On 16 Mar 2009, at 1:01 PM, Alan Cox wrote: > For now, can you just provide the stack trace? As I mentioned, I am unable to do so - I have no kernel.debug. However, I am trying to reproduce the bug again. (It takes a while.) Although it has not yet crashed, I noticed another unusual behavior: Normally during my gcc builds the 1 GB of swap space is never touched. My main 1 GB of RAM is sufficient and there is always at least 100 MB of free memory. Today I saw a STATE listed when running top that I have never seen, called "wdrain". This happened when I saw my free memory plummet down to only 20 MB free (out of 1 GB). This state appears to be set in / usr/src/sys/kern/vfs_bio.c in a routine called waitrunningbufspace(). This file also was modified March 1st. I do not know if there is a connection... The last time I built gcc-4.4 was probably just before this. (I build gcc whenever there is a new version, within a couple of days of it being added to ports. There was about two weeks with no new versions this first half of March so it has been a couple of weeks...) I am tempted to go back to about Feb 28th kernel-wise and try the gcc build again and see if it works or panics. Any suggestions as to how I can help narrow this down? Dan From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 09:31:13 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A91FE10656C7 for ; Tue, 17 Mar 2009 09:31:13 +0000 (UTC) (envelope-from ardovm@yahoo.it) Received: from swip.net (mailfe03.tele2.it [212.247.154.77]) by mx1.freebsd.org (Postfix) with ESMTP id 3B4E58FC1C for ; Tue, 17 Mar 2009 09:31:12 +0000 (UTC) (envelope-from ardovm@yahoo.it) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=rf1iHxr0XwcA:10 a=pMgg6Vs9YuMA:10 a=kudR0qoUhnPaFvcQ1yqVNg==:17 a=-GkPRAReAAAA:8 a=qYLNIm5Zd92r1PAlPWkA:9 a=BlC-cYMqggmMLpLajTbehisBABIA:4 a=b8hG5vVbyAkA:10 Received: from [93.145.70.47] (account cxu-m4-ftb@tele2.it HELO snail) by mailfe03.swip.net (CommuniGate Pro SMTP 5.2.6) with ESMTPA id 1215450931; Tue, 17 Mar 2009 10:31:11 +0100 Received: by snail (Postfix, from userid 1000) id AEB93178047; Tue, 17 Mar 2009 10:31:06 +0100 (CET) Date: Tue, 17 Mar 2009 10:31:06 +0100 From: Arrigo Marchiori To: spara Message-ID: <20090317093106.GA16813@snail.casa> References: <20090313122457.GD20585@snail.casa> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20090313122457.GD20585@snail.casa> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-stable@freebsd.org Subject: Re: Page fault panic in scioctl and console-kit-daemon X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 09:31:14 -0000 Hello, On Fri, Mar 13, 2009 at 01:24:57PM +0100, Arrigo Marchiori wrote: > On Mon, Mar 09, 2009 at 12:15:15PM +0100, spara wrote: [...] > > Any other fix ? > > It seems to me that no package has been depending on consolekit, since > a couple of days. At least, portupgrade is not showing any more "stale > dependencies" when I try to "portupgrade -aR" without having > consolekit installed. So I'm living happily without it. :-) I answer to myself: after upgrading to hal-0.5.11_21 consolekit is required again. This problem has returned. :-( -- rigo http://rigo.altervista.org From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 11:22:20 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17E64106564A for ; Tue, 17 Mar 2009 11:22:20 +0000 (UTC) (envelope-from spara@online.fr) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by mx1.freebsd.org (Postfix) with ESMTP id 73FA18FC17 for ; Tue, 17 Mar 2009 11:22:17 +0000 (UTC) (envelope-from spara@online.fr) Received: from smtp2-g21.free.fr (localhost [127.0.0.1]) by smtp2-g21.free.fr (Postfix) with ESMTP id 7E98B4B018A; Tue, 17 Mar 2009 12:22:12 +0100 (CET) Received: from [192.168.0.1] (cvl92-2-82-228-144-126.fbx.proxad.net [82.228.144.126]) by smtp2-g21.free.fr (Postfix) with ESMTP id 83B3C4B014F; Tue, 17 Mar 2009 12:22:10 +0100 (CET) Message-Id: <16E92772-CF8A-46F0-8757-97C38FF952A8@online.fr> From: spara To: Arrigo Marchiori In-Reply-To: <20090317093106.GA16813@snail.casa> Content-Type: text/plain; charset=WINDOWS-1252; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v930.3) Date: Tue, 17 Mar 2009 12:19:59 +0100 References: <20090313122457.GD20585@snail.casa> <20090317093106.GA16813@snail.casa> X-Mailer: Apple Mail (2.930.3) Cc: freebsd-stable@freebsd.org Subject: Re: Page fault panic in scioctl and console-kit-daemon X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 11:22:20 -0000 I switched to xfce myself and did not reinstall consolekit=85 don't know = =20 how armfull it could be though=85 Le 17 mars 09 =E0 10:31, Arrigo Marchiori a =E9crit : > Hello, > > On Fri, Mar 13, 2009 at 01:24:57PM +0100, Arrigo Marchiori wrote: > >> On Mon, Mar 09, 2009 at 12:15:15PM +0100, spara wrote: > [...] >>> Any other fix ? >> >> It seems to me that no package has been depending on consolekit, =20 >> since >> a couple of days. At least, portupgrade is not showing any more =20 >> "stale >> dependencies" when I try to "portupgrade -aR" without having >> consolekit installed. So I'm living happily without it. :-) > > I answer to myself: after upgrading to hal-0.5.11_21 consolekit is > required again. This problem has returned. :-( > --=20 > rigo > > http://rigo.altervista.org > From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 11:52:46 2009 Return-Path: Delivered-To: stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79AC21065678 for ; Tue, 17 Mar 2009 11:52:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 57B1A8FC17 for ; Tue, 17 Mar 2009 11:52:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 129A246B03 for ; Tue, 17 Mar 2009 07:52:46 -0400 (EDT) Date: Tue, 17 Mar 2009 11:52:45 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: stable@FreeBSD.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Cc: Subject: Appeal for active bug reports relating to TCP, UDP, routing locking in 7-STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 11:52:46 -0000 Dear all: With 7.2 approaching, I wanted to review the set of known network bug reports (especially panics, hangs, lock order reversals) relating to TCP, UDP, sockets, and routing in 7-STABLE. If you are aware of problems along these that you can confirm definitely occur with 7-STABLE checked out no earlier than 17 March, 2009, please drop me a private e-mail with a pointer to the thread, PR, or a reminder that you've sent me the details already. If you don't have a PR open on the problem, opening one and forwarding me the receipt so I can grab ownership would be most welcome. I don't promise I can get them fixed by the release, but doing a review and prioritizing the bugs that are known is a useful step in that direction. I am specifically not interested in device driver-related problems, not because they shouldn't be fixed, but because there's only so much time in the day and it appears folks like Pyun have it well in hand :-). Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 12:09:44 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43B1D1065672; Tue, 17 Mar 2009 12:09:44 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.freebsd.org (Postfix) with ESMTP id 968288FC25; Tue, 17 Mar 2009 12:09:43 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.3/8.14.3) with ESMTP id n2HC9fZL011730; Tue, 17 Mar 2009 15:09:41 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Tue, 17 Mar 2009 15:09:41 +0300 (MSK) From: Dmitry Morozovsky To: freebsd-stable@FreeBSD.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (woozle.rinet.ru [0.0.0.0]); Tue, 17 Mar 2009 15:09:41 +0300 (MSK) Cc: Pawel Jakub Dawidek Subject: RELENG_7/i386: ZFS panic on reboot X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 12:09:44 -0000 while rebooting: (kgdb) bt #0 doadump () at pcpu.h:196 #1 0x80514298 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:418 #2 0x80514575 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:574 #3 0x806a74d4 in trap_fatal (frame=0xbf5b9a24, eva=12) at /usr/src/sys/i386/i386/trap.c:939 #4 0x806a771d in trap_pfault (frame=0xbf5b9a24, usermode=0, eva=12) at /usr/src/sys/i386/i386/trap.c:852 #5 0x806a808a in trap (frame=0xbf5b9a24) at /usr/src/sys/i386/i386/trap.c:530 #6 0x8069016b in calltrap () at /usr/src/sys/i386/i386/exception.s:159 #7 0x80806610 in gfs_dir_create (struct_size=132, pvp=0x87b388a0, vfsp=0x87a93b40, ops=0x808817a0, entries=0x0, inode_cb=0, maxlen=256, readdir_cb=0x808636c6 , lookup_cb=0) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/gfs.c:420 #8 0x80863420 in zfsctl_mknode_snapdir (pvp=0x87b388a0) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c:783 #9 0x808069e9 in gfs_dir_lookup (dvp=0x87b388a0, nm=0x8087dfae "snapshot", vpp=0xbf5b9b60) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/gfs.c:630 #10 0x808630bc in zfsctl_root_lookup (dvp=0x87b388a0, nm=0x8087dfae "snapshot", vpp=0xbf5b9b60, pnp=0x0, flags=0, rdir=0x0, cr=0x85e84000) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c:396 #11 0x808638fa in zfsctl_umount_snapshots (vfsp=0x87a93b40, fflags=524288, cr=0x85e84000) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c:1063 #12 0x8086b1dc in zfs_umount (vfsp=0x87a93b40, fflag=524288, td=0x85e8ecc0) at /usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c:692 #13 0x80586ea4 in dounmount (mp=0x87a93b40, flags=524288, td=0x85e8ecc0) at /usr/src/sys/kern/vfs_mount.c:1293 #14 0x8058a4e8 in vfs_unmountall () at /usr/src/sys/kern/vfs_subr.c:2944 #15 0x80514005 in boot (howto=16392) at /usr/src/sys/kern/kern_shutdown.c:400 #16 0x8051445d in reboot (td=0x85e8ecc0, uap=0xbf5b9cfc) at /usr/src/sys/kern/kern_shutdown.c:172 #17 0x806a7a60 in syscall (frame=0xbf5b9d38) at /usr/src/sys/i386/i386/trap.c:1090 #18 0x806901d0 in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:255 #19 0x00000033 in ?? () Any additional info needed? Thanks! -- Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] [ FreeBSD committer: marck@FreeBSD.org ] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 12:52:52 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42AC710656FE for ; Tue, 17 Mar 2009 12:52:52 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-gx0-f176.google.com (mail-gx0-f176.google.com [209.85.217.176]) by mx1.freebsd.org (Postfix) with ESMTP id C997B8FC0C for ; Tue, 17 Mar 2009 12:52:51 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by gxk24 with SMTP id 24so29991gxk.19 for ; Tue, 17 Mar 2009 05:52:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=3ThjrtlPcWmkfUIYWAJNfPbwW/qJZn4zQjSh8UD/5VQ=; b=OVthrLgjOfV5mP/4Dnh1owPCuXg6mfXrj7TdNzZTRccXB3zE8rUe9YWG8eeYzxFFgd u7VUXiiU8tqFjkgimpNBnH9Td3W6+2RyMaDovPPcqjAJ7oeaULHiKDB6PX0aq/+PA8P3 bmRpJNAuqz663PNPT6xJxsu02ijixuKsKDjG4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=oTE7RetzjmAD+ITY34qxzL12eThgb4ZiXzCyS5BTxwiGnwmEdta3CO2ymiW/mFhtzn bE3FgMYcASkY6pnzTbz5+vhPLhktdRM4G3YwiQskmP2ZuYqdwTKgu/8EpEDjty5RL2g7 kPzsR0KGdMt+6jGRcfJKXvT84cKjGzKJqjb4c= MIME-Version: 1.0 Received: by 10.142.156.2 with SMTP id d2mr2747747wfe.179.1237292572159; Tue, 17 Mar 2009 05:22:52 -0700 (PDT) In-Reply-To: References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> Date: Tue, 17 Mar 2009 05:22:52 -0700 Message-ID: <7d6fde3d0903170522l6c7d7df8w3bff02ba5eee560f@mail.gmail.com> From: Garrett Cooper To: Dan Allen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: alc@freebsd.org, FreeBSD-STABLE Mailing List Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 12:52:53 -0000 On Mon, Mar 16, 2009 at 5:47 PM, Dan Allen wrote: > > On 16 Mar 2009, at 1:01 PM, Alan Cox wrote: > >> For now, can you just provide the stack trace? > > As I mentioned, I am unable to do so - I have no kernel.debug. > > However, I am trying to reproduce the bug again. =A0(It takes a while.) > =A0Although it has not yet crashed, I noticed another unusual behavior: > > Normally during my gcc builds the 1 GB of swap space is never touched. = =A0My > main 1 GB of RAM is sufficient and there is always at least 100 MB of fre= e > memory. > > Today I saw a STATE listed when running top that I have never seen, calle= d > "wdrain". =A0This happened when I saw my free memory plummet down to only= 20 > MB free (out of 1 GB). =A0This state appears to be set in > /usr/src/sys/kern/vfs_bio.c in a routine called waitrunningbufspace(). = =A0This > file also was modified March 1st. =A0I do not know if there is a connecti= on... > > The last time I built gcc-4.4 was probably just before this. =A0(I build = gcc > whenever there is a new version, within a couple of days of it being adde= d > to ports. =A0There was about two weeks with no new versions this first ha= lf of > March so it has been a couple of weeks...) > > I am tempted to go back to about Feb 28th kernel-wise and try the gcc bui= ld > again and see if it works or panics. > > Any suggestions as to how I can help narrow this down? - Which platform are you using: i386 or amd64? - Is there a particular file that it tries to compile when it runs out of memory? - What are your CFLAGS in make.conf? Thanks, -Garrett From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 14:07:56 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B83171065670 for ; Tue, 17 Mar 2009 14:07:56 +0000 (UTC) (envelope-from ns@got2get.net) Received: from secure.guildage.net (confighell.com [78.47.207.147]) by mx1.freebsd.org (Postfix) with ESMTP id 678618FC24 for ; Tue, 17 Mar 2009 14:07:54 +0000 (UTC) (envelope-from ns@got2get.net) Received: from secure.guildage.net (confighell.com [78.47.207.147]) by secure.guildage.net (8.14.3/8.14.2) with ESMTP id n2HDrHKm092753 for ; Tue, 17 Mar 2009 13:53:17 GMT (envelope-from ns@got2get.net) Received: (from www@localhost) by secure.guildage.net (8.14.3/8.14.2/Submit) id n2HDrHDb092752; Tue, 17 Mar 2009 13:53:17 GMT (envelope-from ns@got2get.net) X-Authentication-Warning: secure.guildage.net: www set sender to ns@got2get.net using -f To: MIME-Version: 1.0 Date: Tue, 17 Mar 2009 13:53:17 +0000 From: Nicolai Message-ID: X-Sender: ns@got2get.net User-Agent: RoundCube Webmail/0.2 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Crazy "interrupt storm detected" on atapic0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 14:07:58 -0000 Hi all, I have had this problem since day 1 on my new server. It has run since November 15th 2008, and serve approx. 10 GB worth of web traffic per month for the main site and then some 40 domains with mail and small web pages. (hence - it's NOT that busy yet) I started with 7.1-RELEASE-pX since I didn't have problems straight off - but it didn't last long. After a few days of running, the interrupt storm on atapci0 starts to show. It slowly builds up and continues. When it reaches 150-200k/sec. I reboot just to be on the safe side. I have also upgraded to 7.1-STABLE to get all the ATA driver changes S.O.S. have been including. Still no visible change. To give you an impression of its impact, I will let the numbers speak for thmeselves: $ uname -v FreeBSD 7.1-STABLE #1: Thu Mar 12 14:22:49 CET 2009 $ uname -m amd64 $ uptime 2:36PM up 4 days, 22:12, 5 users, load averages: 0.28, 0.40, 0.19 $ tail -10 messages Mar 17 13:42:37 box last message repeated 600 times Mar 17 13:52:37 box last message repeated 600 times Mar 17 14:02:37 box last message repeated 600 times Mar 17 14:12:37 box last message repeated 600 times Mar 17 14:22:37 box last message repeated 600 times Mar 17 14:32:22 box last message repeated 585 times Mar 17 14:32:23 box kernel: pid 78195 (try), uid 0: exited on signal 10 (core dumped) Mar 17 14:32:23 box kernel: interrupt storm detected on "irq22:"; throttling interrupt source Mar 17 14:32:54 box last message repeated 31 times Mar 17 14:34:55 box last message repeated 121 times $ vmstat -i interrupt total rate irq1: atkbd0 3 0 irq9: acpi0 1 0 irq16: ohci0 1 0 irq17: ohci1 ohci3 1 0 irq18: ohci2 ohci4 1 0 irq22: atapci0 57317362717 134713 cpu0: timer 850996016 2000 cpu1: timer 850995703 2000 Total 59019354443 138713 [root@box /etc]# atacontrol mode ad4 current mode = SATA300 [root@box /etc]# atacontrol mode ad6 current mode = SATA300 Some relevant lines from dmesg: atapci0: port 0xb000-0xb007,0xa000-0xa003,0x9000-0x9007,0x8000-0x8003,0x7000-0x700f mem 0xfe7ff800-0xfe7ffbff irq 22 at device 18.0 on pci0 atapci0: [ITHREAD] atapci0: AHCI Version 01.10 controller with 4 ports detected ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] ata4: on atapci0 ata4: [ITHREAD] ata5: on atapci0 ata5: [ITHREAD] And a few lines from pciconf: atapci0@pci0:0:18:0: class=0x01018f card=0x73271462 chip=0x43801002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc' device = 'IXP SB600 Serial ATA Controller' class = mass storage subclass = ATA ...so - this is where I'm at. Interrupt storm raises through the roof in just 3 days, and continues to raise. Just for kicks I tried disabling AHCI with nextboot, but that made the box not boot. Also - I'm 1000 KM. away from the box - so I'm a little limited to testing fancy boot options - apart from things that can go in nextboot.conf. If anyone have any hints on how to proceed, I would be grateful. Thank you in advance - Nicolai From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 14:32:46 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9DCB10656F8 for ; Tue, 17 Mar 2009 14:32:46 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from phoebe.cse.buffalo.edu (phoebe.cse.buffalo.edu [128.205.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id AD5C08FC22 for ; Tue, 17 Mar 2009 14:32:46 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from [128.205.32.76] (bauer.cse.buffalo.edu [128.205.32.76]) (authenticated bits=0) by phoebe.cse.buffalo.edu (8.14.1/8.13.7) with ESMTP id n2HEJChn027486 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 17 Mar 2009 10:19:14 -0400 (EDT) (envelope-from kensmith@cse.buffalo.edu) From: Ken Smith To: freebsd-stable Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-aJRjA40B1vCFZe53LK0H" Organization: U. Buffalo CSE Department Date: Tue, 17 Mar 2009 10:19:11 -0400 Message-Id: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port X-DCC-Buffalo.EDU-Metrics: phoebe.cse.buffalo.edu 1029; Body=0 Fuz1=0 Fuz2=0 Subject: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 14:32:48 -0000 --=-aJRjA40B1vCFZe53LK0H Content-Type: text/plain Content-Transfer-Encoding: quoted-printable We're starting the release process for FreeBSD 7.2-RELEASE. The major highlights of the schedule are: Code Freeze: March 23rd BETA1 March 30th Branch April 10th RC1 April 13th RC2 April 20th Release: May 4th The full schedule is here: http://www.freebsd.org/releases/7.2R/schedule.html though most of "the other events" haven't been given specific dates yet. Since it's often the case that developers process quite a few outstanding MFCs during the last couple days before a code freeze starts I have changed RELENG_7 to say it is 7.2-PRERELEASE now as a bit of a heads-up that the release cycle is imminent. You might need to be a tiny bit more careful using RELENG_7 right now because the odds of you getting a snapshot of the tree taken part way through someone doing something that required multiple commits goes up during this phase of a release. Thanks. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-aJRjA40B1vCFZe53LK0H Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEABECAAYFAkm/sV8ACgkQ/G14VSmup/YNVwCbBGioSjESsEDiPkGCjG8Yl9O0 ET0An3A/7rKyOGq3QS+1X8jthWhWFkLf =qG0E -----END PGP SIGNATURE----- --=-aJRjA40B1vCFZe53LK0H-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 15:17:12 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3715106567E for ; Tue, 17 Mar 2009 15:17:12 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id 8473E8FC13 for ; Tue, 17 Mar 2009 15:17:12 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Ljb2V-0007P8-Lf for freebsd-stable@freebsd.org; Tue, 17 Mar 2009 08:17:11 -0700 Message-ID: <22561413.post@talk.nabble.com> Date: Tue, 17 Mar 2009 08:17:11 -0700 (PDT) From: Nicolais To: freebsd-stable@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: ns@got2get.net References: Subject: Re: Crazy "interrupt storm detected" on atapci0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 15:17:13 -0000 Also - this was extracted from kenv: LINES="24" acpi_load="YES" bootfile="kernel" comconsole_speed="9600" console="vidconsole" currdev="disk0s1a:" hint.acpi.0.oem="ACPIAM" hint.acpi.0.revision="1" hint.acpi.0.rsdp="0xf98a0" hint.acpi.0.rsdt="0x7dfd0000" hint.atkbd.0.at="atkbdc" hint.atkbd.0.irq="1" hint.atkbdc.0.at="isa" hint.atkbdc.0.port="0x060" hint.fd.0.at="fdc0" hint.fd.0.drive="0" hint.fd.1.at="fdc0" hint.fd.1.drive="1" hint.fdc.0.at="isa" hint.fdc.0.drq="2" hint.fdc.0.irq="6" hint.fdc.0.port="0x3F0" hint.ppc.0.at="isa" hint.ppc.0.irq="7" hint.psm.0.at="atkbdc" hint.psm.0.irq="12" hint.sc.0.at="isa" hint.sc.0.flags="0x100" hint.sio.0.at="isa" hint.sio.0.flags="0x10" hint.sio.0.irq="4" hint.sio.0.port="0x3F8" hint.sio.1.at="isa" hint.sio.1.irq="3" hint.sio.1.port="0x2F8" hint.sio.2.at="isa" hint.sio.2.disabled="1" hint.sio.2.irq="5" hint.sio.2.port="0x3E8" hint.sio.3.at="isa" hint.sio.3.disabled="1" hint.sio.3.irq="9" hint.sio.3.port="0x2E8" hint.vga.0.at="isa" interpret="OK" kernel="kernel" kernel_options="" kernelname="/boot/kernel/kernel" loaddev="disk0s1a:" mac_ifoff="NO" module_path="/boot/kernel;/boot/modules" smbios.bios.reldate="10/31/2007" smbios.bios.vendor="American Megatrends Inc." smbios.bios.version="V1.5B2" smbios.chassis.maker="To Be Filled By O.E.M." smbios.chassis.serial="To Be Filled By O.E.M." smbios.chassis.tag="To Be Filled By O.E.M." smbios.chassis.version="To Be Filled By O.E.M." smbios.planar.maker="MICRO-STAR INTERANTIONAL CO.,LTD" smbios.planar.product="MS-7368" smbios.planar.serial="To be filled by O.E.M." smbios.planar.version="1.0" smbios.socket.enabled="1" smbios.socket.populated="1" smbios.system.maker="MICRO-STAR INTERANTIONAL CO.,LTD" smbios.system.product="MS-7368" smbios.system.serial="To Be Filled By O.E.M." smbios.system.version="1.0" vfs.root.mountfrom="ufs:/dev/mirror/gm0s1a" (sorry for spelling error in subject s/atapic/atapci/) -- View this message in context: http://www.nabble.com/Crazy-%22interrupt-storm-detected%22-on-atapic0-tp22560101p22561413.html Sent from the freebsd-stable mailing list archive at Nabble.com. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 15:26:54 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1648C1065670 for ; Tue, 17 Mar 2009 15:26:54 +0000 (UTC) (envelope-from amarat@ksu.ru) Received: from mx.kzn.ru (mx.kzn.ru [194.85.243.38]) by mx1.freebsd.org (Postfix) with ESMTP id 832E38FC14 for ; Tue, 17 Mar 2009 15:26:53 +0000 (UTC) (envelope-from amarat@ksu.ru) X-IronPort-AV: E=Sophos;i="4.38,379,1233522000"; d="scan'208";a="2360504" Received: from mail.ksu.ru (HELO ruby.ksu.ru) ([193.232.252.56]) by iout.kzn.ru with ESMTP; 17 Mar 2009 18:14:32 +0300 X-Pass-Through: Kazan State University Network Received: from zealot.ksu.ru ([194.85.245.161]) by ksu.ru (8.13.4/8.13.4) with ESMTP id n2HFBx3K023077; Tue, 17 Mar 2009 15:11:59 GMT Received: from zealot.ksu.ru (localhost.lnet [127.0.0.1]) by zealot.ksu.ru (8.14.3/8.14.3) with ESMTP id n2HFDKAs033935; Tue, 17 Mar 2009 18:13:21 +0300 (MSK) (envelope-from amarat@ksu.ru) Message-ID: <49BFBE10.50309@ksu.ru> Date: Tue, 17 Mar 2009 18:13:20 +0300 From: "Marat N.Afanasyev" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.19) Gecko/20090124 SeaMonkey/1.1.14 MIME-Version: 1.0 To: Nicolai References: In-Reply-To: Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Crazy "interrupt storm detected" on atapic0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 15:26:54 -0000 Nicolai wrote: > > Hi all, > > I have had this problem since day 1 on my new server. > > It has run since November 15th 2008, and serve approx. 10 GB worth of web > traffic per month for the main site and then some 40 domains with mail and > small web pages. (hence - it's NOT that busy yet) > > I started with 7.1-RELEASE-pX since I didn't have problems straight off - > but it didn't last long. > > After a few days of running, the interrupt storm on atapci0 starts to > show. It slowly builds up and continues. When it reaches 150-200k/sec. I > reboot just to be on the safe side. > > I have also upgraded to 7.1-STABLE to get all the ATA driver changes > S.O.S. have been including. Still no visible change. > > To give you an impression of its impact, I will let the numbers speak for > thmeselves: > > $ uname -v > FreeBSD 7.1-STABLE #1: Thu Mar 12 14:22:49 CET 2009 > > $ uname -m > amd64 > > $ uptime > 2:36PM up 4 days, 22:12, 5 users, load averages: 0.28, 0.40, 0.19 > > $ tail -10 messages > Mar 17 13:42:37 box last message repeated 600 > times > Mar 17 13:52:37 box last message repeated 600 times > Mar 17 14:02:37 box last message repeated 600 times > Mar 17 14:12:37 box last message repeated 600 times > Mar 17 14:22:37 box last message repeated 600 times > Mar 17 14:32:22 box last message repeated 585 times > Mar 17 14:32:23 box kernel: pid 78195 (try), uid 0: exited on signal 10 > (core dumped) > Mar 17 14:32:23 box kernel: interrupt storm detected on "irq22:"; > throttling interrupt source > Mar 17 14:32:54 box last message repeated 31 times > Mar 17 14:34:55 box last message repeated 121 times > > $ vmstat -i > interrupt total rate > irq1: atkbd0 3 0 > irq9: acpi0 1 0 > irq16: ohci0 1 0 > irq17: ohci1 ohci3 1 0 > irq18: ohci2 ohci4 1 0 > irq22: atapci0 57317362717 134713 > cpu0: timer 850996016 2000 > cpu1: timer 850995703 2000 > Total 59019354443 138713 > > [root@box /etc]# atacontrol mode ad4 > current mode = SATA300 > [root@box /etc]# atacontrol mode ad6 > current mode = SATA300 > > Some relevant lines from dmesg: > > atapci0: > port > 0xb000-0xb007,0xa000-0xa003,0x9000-0x9007,0x8000-0x8003,0x7000-0x700f mem > 0xfe7ff800-0xfe7ffbff irq 22 at device 18.0 on pci0 > atapci0: [ITHREAD] > atapci0: AHCI Version 01.10 controller with 4 ports detected > ata2: on atapci0 > ata2: [ITHREAD] > ata3: on atapci0 > ata3: [ITHREAD] > ata4: on atapci0 > ata4: [ITHREAD] > ata5: on atapci0 > ata5: [ITHREAD] > > And a few lines from pciconf: > > atapci0@pci0:0:18:0: class=0x01018f card=0x73271462 chip=0x43801002 > rev=0x00 hdr=0x00 > vendor = 'ATI Technologies Inc' > device = 'IXP SB600 Serial ATA Controller' > class = mass storage > subclass = ATA > > ...so - this is where I'm at. Interrupt storm raises through the roof in > just 3 days, and continues to raise. > > Just for kicks I tried disabling AHCI with nextboot, but that made the box > not boot. Also - I'm 1000 KM. away from the box - so I'm a little limited > to testing fancy boot options - apart from things that can go in > nextboot.conf. > > If anyone have any hints on how to proceed, I would be grateful. > > > Thank you in advance > > - Nicolai > _______________________________________________ > 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" > take a look of our 'interrupt storm issue' in January, I "resolved" similar case by installing KDB/DDB enabled kernel i suppose that MB is Microstar? -- SY, Marat From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 16:54:36 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 649B41065670 for ; Tue, 17 Mar 2009 16:54:36 +0000 (UTC) (envelope-from amarat@ksu.ru) Received: from mx.kzn.ru (mx.kzn.ru [194.85.243.38]) by mx1.freebsd.org (Postfix) with ESMTP id D21B58FC16 for ; Tue, 17 Mar 2009 16:54:35 +0000 (UTC) (envelope-from amarat@ksu.ru) X-IronPort-AV: E=Sophos;i="4.38,379,1233522000"; d="scan'208";a="2362824" Received: from mail.ksu.ru (HELO ruby.ksu.ru) ([193.232.252.56]) by iout.kzn.ru with ESMTP; 17 Mar 2009 19:54:34 +0300 X-Pass-Through: Kazan State University Network Received: from zealot.ksu.ru ([194.85.245.161]) by ksu.ru (8.13.4/8.13.4) with ESMTP id n2HGpspO003112; Tue, 17 Mar 2009 16:52:04 GMT Received: from zealot.ksu.ru (localhost.lnet [127.0.0.1]) by zealot.ksu.ru (8.14.3/8.14.3) with ESMTP id n2HGrG17034979; Tue, 17 Mar 2009 19:53:16 +0300 (MSK) (envelope-from amarat@ksu.ru) Message-ID: <49BFD57C.5010301@ksu.ru> Date: Tue, 17 Mar 2009 19:53:16 +0300 From: "Marat N.Afanasyev" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.19) Gecko/20090124 SeaMonkey/1.1.14 MIME-Version: 1.0 To: Nicolais References: <22561413.post@talk.nabble.com> In-Reply-To: <22561413.post@talk.nabble.com> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Crazy "interrupt storm detected" on atapci0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 16:54:36 -0000 Nicolais wrote: > Also - this was extracted from kenv: > > smbios.system.maker="MICRO-STAR INTERANTIONAL CO.,LTD" > smbios.system.product="MS-7368" as I supposed in previous message your MB is MicroStar product. So I insist that you read thread [1] in freebsd-stable named 'Interrupt storm' started by Dan Langille [1] http://lists.freebsd.org/pipermail/freebsd-stable/2009-January/047645.html -- SY, Marat From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 17:20:30 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F9B61065679 for ; Tue, 17 Mar 2009 17:20:30 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from QMTA10.emeryville.ca.mail.comcast.net (qmta10.emeryville.ca.mail.comcast.net [76.96.30.17]) by mx1.freebsd.org (Postfix) with ESMTP id F11928FC14 for ; Tue, 17 Mar 2009 17:20:24 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from OMTA07.emeryville.ca.mail.comcast.net ([76.96.30.59]) by QMTA10.emeryville.ca.mail.comcast.net with comcast id UH7H1b01j1GXsucAAHLR1e; Tue, 17 Mar 2009 17:20:25 +0000 Received: from roadkill.tharned.org ([75.145.12.185]) by OMTA07.emeryville.ca.mail.comcast.net with comcast id UHLN1b00s3zZBGT8THLQm2; Tue, 17 Mar 2009 17:20:25 +0000 Received: from roadkill.tharned.org (11008@localhost [127.0.0.1]) by roadkill.tharned.org (8.14.3/8.14.3) with ESMTP id n2HHKLsf031584 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Mar 2009 12:20:21 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by roadkill.tharned.org (8.14.3/8.14.3/Submit) with ESMTP id n2HHKKoV031581; Tue, 17 Mar 2009 12:20:20 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Tue, 17 Mar 2009 12:20:20 -0500 (CDT) From: Greg Rivers To: Robert Noland In-Reply-To: <1231599679.1837.13.camel@wombat.2hip.net> Message-ID: References: <1231599679.1837.13.camel@wombat.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (roadkill.tharned.org [127.0.0.1]); Tue, 17 Mar 2009 12:20:21 -0500 (CDT) Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 17:20:30 -0000 On Sat, 10 Jan 2009, Robert Noland wrote: > I just merged drm (Direct Rendering) from HEAD. > > - Support for latest Intel chips > - Support and fixes for many AMD/ATI chips r500 and below > - Support AMD/ATI IGP based chips (rs690/rs485) > - Lots of code cleanups > - Lots of other fixes and changes since the existing drm > is 2+ years old > > If you are experiencing a "garbled" screen with certain pci/pci-e based > radeons, I have another patch in HEAD that isn't included yet. > I have a workstation with a [Radeon X600 (PCIE)] card. The X display has been garbled since these DRM updates went in in January, and remains garbled with 7.1-STABLE as of yesterday. As a work-around, I'm running the up-to-date 7.1-STABLE system (both world and ports) with a 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and X works great; I even see dramatically improved performance with the new Xorg and EXA acceleration. Your work is much appreciated. But the garbled display with the recent DRM still plagues me. Here's how pciconf identifies the card: vgapci0@pci0:1:0:0: class=0x030000 card=0x06021002 chip=0x5b621002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc' device = 'RV380 RADEON X600 Series 265MB' class = display subclass = VGA vgapci1@pci0:1:0:1: class=0x038000 card=0x06031002 chip=0x5b721002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies Inc' device = 'Radeon X600 Series - Secondary' class = display The old DRM probe: vgapci0: port 0x2000-0x20ff mem 0xe0000000-0xe7ffffff,0xe8500000-0xe850ffff irq 16 at device 0.0 on pci1 drm0: on vgapci0 info: [drm] Initialized radeon 1.25.0 20060524 vgapci1: mem 0xe8510000-0xe851ffff at device 0.1 on pci1 ... vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xe8500000 vgapci0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xe0000000 info: [drm] Setting GART location based on new memory map info: [drm] Loading R300 Microcode info: [drm] writeback test succeeded in 1 usecs ioapic0: Assigning PCI IRQ 16 to local APIC 0 ioapic0: routing intpin 16 (PCI IRQ 16) to vector 60 drm0: [MPSAFE] The new DRM probe: vgapci0: port 0x2000-0x20ff mem 0xe0000000-0xe7ffffff,0xe8500000-0xe850ffff irq 16 at device 0.0 on pci1 drm0: on vgapci0 vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xe8500000 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.29.0 20080528 vgapci1: mem 0xe8510000-0xe851ffff at device 0.1 on pci1 ... vgapci0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xe0000000 info: [drm] Setting GART location based on new memory map info: [drm] Loading R300 Microcode info: [drm] Num pipes: 1 info: [drm] writeback test succeeded in 1 usecs ioapic0: Assigning PCI IRQ 16 to local APIC 0 ioapic0: routing intpin 16 (PCI IRQ 16) to vector 59 drm0: [MPSAFE] drm0: [ITHREAD] info: [drm] Num pipes: 1 Difference between the Xorg logs when it's working and when it's not: --- ok/Xorg.0.log 2009-03-16 14:39:40.000000000 -0500 +++ garbled/Xorg.0.log 2009-03-16 14:46:13.000000000 -0500 @@ -6 +6 @@ -Current Operating System: FreeBSD xxx.xxx.xxxxx.xxx 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Fri Jan 16 18:00:35 CST 2009 root@xxx.xxx.xxxxx.xxx:/usr/obj/usr/src/sys/SMALL-SMP i386 +Current Operating System: FreeBSD xxx.xxx.xxxxx.xxx 7.1-STABLE FreeBSD 7.1-STABLE #0: Mon Mar 16 11:42:42 CDT 2009 root@xxx.xxx.xxxxx.xxx:/usr/obj/usr/src/sys/SMALL-SMP i386 @@ -14 +14 @@ -(==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 16 14:39:34 2009 +(==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 16 14:22:00 2009 @@ -407 +407 @@ -(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.25.0 +(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.29.0 @@ -774,5 +774,5 @@ -(II) RADEON(0): [pci] 32768 kB allocated with handle 0xc56d4000 -(II) RADEON(0): [pci] ring handle = 0xc56d4000 -(II) RADEON(0): [pci] Ring mapped at 0x90a00000 -(II) RADEON(0): [pci] Ring contents 0x00000000 -(II) RADEON(0): [pci] ring read ptr handle = 0xc57d5000 +(II) RADEON(0): [pci] 32768 kB allocated with handle 0xe7732000 +(II) RADEON(0): [pci] ring handle = 0xe7732000 +(II) RADEON(0): [pci] Ring mapped at 0x88a00000 +(II) RADEON(0): [pci] Ring contents 0xff7d8c94 +(II) RADEON(0): [pci] ring read ptr handle = 0xe7833000 @@ -780,6 +780,6 @@ -(II) RADEON(0): [pci] Ring read ptr contents 0x00000000 -(II) RADEON(0): [pci] vertex/indirect buffers handle = 0xc57d6000 -(II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x90b01000 -(II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000 -(II) RADEON(0): [pci] GART texture map handle = 0xc59d6000 -(II) RADEON(0): [pci] GART Texture map mapped at 0x90d01000 +(II) RADEON(0): [pci] Ring read ptr contents 0xff180000 +(II) RADEON(0): [pci] vertex/indirect buffers handle = 0xe7834000 +(II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x90c00000 +(II) RADEON(0): [pci] Vertex/indirect buffers contents 0xff100049 +(II) RADEON(0): [pci] GART texture map handle = 0xe7a34000 +(II) RADEON(0): [pci] GART Texture map mapped at 0x90e34000 @@ -806 +805,0 @@ -(WW) RADEON(0): Failed to determine num pipes from DRM, falling back to manual look-up! I tried setting hw.dri.0.debug=1. That produced a lot of output, but nothing that looked like an error or warning. Do you have any idea what might be causing this, or how to troubleshoot further? -- Greg Rivers From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 17:35:04 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1DE4106566C for ; Tue, 17 Mar 2009 17:35:04 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 5B9838FC0A for ; Tue, 17 Mar 2009 17:35:04 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KGN00AMWVIFUR00@osl1smout1.broadpark.no> for freebsd-stable@freebsd.org; Tue, 17 Mar 2009 18:35:03 +0100 (CET) Received: from kg-work2.kg4.no ([80.203.109.110]) by osl1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KGN008BLVIEKT30@osl1sminn1.broadpark.no> for freebsd-stable@freebsd.org; Tue, 17 Mar 2009 18:35:03 +0100 (CET) Date: Tue, 17 Mar 2009 18:35:02 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20090317183502.11d8575b.torfinn.ingolfsen@broadpark.no> In-reply-to: References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> <20090316224203.0781a280@baby-jane.lamaiziere.net> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.14.7; i386-portbld-freebsd7.1) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 17:35:04 -0000 On Mon, 16 Mar 2009 17:23:09 -0600 Dan Allen wrote: > It turns out that one must have a debug kernel around. I use STABLE > as a production system. There is no "kernel.debug" on my system. I > guess I therefore cannot provide a stack trace. Have you disbled building of the kernel.debug then? It is enabled as default on -STABLE. root@kg-work2# uname -a FreeBSD kg-work2.kg4.no 7.1-STABLE FreeBSD 7.1-STABLE #4: Sun Feb 8 20:56:08 CET 2009 root@kg-work2.kg4.no:/usr/obj/usr/src/sys/SX270 i386 root@kg-work2# locate kernel.debug /usr/obj/usr/src/sys/GENERIC/kernel.debug /usr/obj/usr/src/sys/SX270/kernel.debug HTH -- Regards, Torfinn Ingolfsen From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 18:31:43 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DED021065695 for ; Tue, 17 Mar 2009 18:31:43 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id B347D8FC1C for ; Tue, 17 Mar 2009 18:31:43 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id YVW95343 for ; Tue, 17 Mar 2009 12:31:43 -0600 Date: Tue, 17 Mar 2009 12:31:43 -0600 From: Squirrel To: freebsd-stable Message-ID: X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: general: warning: max open files (3636) is smaller than max sockets (4096) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 18:31:45 -0000 This happend since I've upgraded bind 9.21 to 9.6.0. I've increased the max open files to 4096: sysctl -w kern.maxfiles=4096 which shows it resized from 4040->4096 But I guess it's different for bind? I've googled and found several references to this warning message, but everyone states it's not a problem and shouldn't be concerned. Some real advice would be appreciated. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 19:30:34 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C88301065673 for ; Tue, 17 Mar 2009 19:30:34 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.freebsd.org (Postfix) with ESMTP id 532718FC16 for ; Tue, 17 Mar 2009 19:30:34 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 6042 invoked by uid 0); 17 Mar 2009 19:03:53 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (75.76.211.79) by smtp1.knology.net with SMTP; 17 Mar 2009 19:03:53 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 09DCE28425; Tue, 17 Mar 2009 14:03:53 -0500 (CDT) Date: Tue, 17 Mar 2009 14:03:53 -0500 From: David Kelly To: Squirrel Message-ID: <20090317190352.GA38038@Grumpy.DynDNS.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: freebsd-stable Subject: Re: general: warning: max open files (3636) is smaller than max sockets (4096) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@freebsd.org List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 19:30:35 -0000 On Tue, Mar 17, 2009 at 12:31:43PM -0600, Squirrel wrote: > This happend since I've upgraded bind 9.21 to 9.6.0. I've increased > the max open files to 4096: > > sysctl -w kern.maxfiles=4096 > > which shows it resized from 4040->4096 > > But I guess it's different for bind? I've googled and found several > references to this warning message, but everyone states it's not a > problem and shouldn't be concerned. Some real advice would be > appreciated. Depends a lot as to how busy your name server is, I guess. Mine is a lightly loaded in internal office use. When my PII 450 MHz 192MB machine issued similar complaint on upgrade of bind I was tricked into rebooting a machine with over 800 days uptime only to get the exact same message again. So I limited the number of sockets named would ask for using this in /etc/rc.conf: named_flags="-4 -S 1024" -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 19:33:58 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA31110656D1 for ; Tue, 17 Mar 2009 19:33:58 +0000 (UTC) (envelope-from hk@alogis.com) Received: from alogis.com (firewall.solit-ag.de [212.184.102.1]) by mx1.freebsd.org (Postfix) with ESMTP id 240328FC22 for ; Tue, 17 Mar 2009 19:33:57 +0000 (UTC) (envelope-from hk@alogis.com) Received: from alogis.com (localhost [127.0.0.1]) by alogis.com (8.13.4/8.13.1) with ESMTP id n2HJXfU0078030; Tue, 17 Mar 2009 20:33:41 +0100 (CET) (envelope-from hk@alogis.com) Received: (from hk@localhost) by alogis.com (8.13.4/8.13.1/Submit) id n2HJXfxt078029; Tue, 17 Mar 2009 20:33:41 +0100 (CET) (envelope-from hk) Date: Tue, 17 Mar 2009 20:33:41 +0100 From: Holger Kipp To: Ken Smith Message-ID: <20090317193341.GA77837@intserv.int1.b.intern> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 19:33:59 -0000 On Tue, Mar 17, 2009 at 10:19:11AM -0400, Ken Smith wrote: > > We're starting the release process for FreeBSD 7.2-RELEASE. The major > highlights of the schedule are: Is there a chance the latest ZFS bugfixes from CURRENT will make it into 7.2-RELEASE? Regards, Holger From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 19:38:07 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 035381065693; Tue, 17 Mar 2009 19:38:07 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id B8B8B8FC22; Tue, 17 Mar 2009 19:38:06 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2HJaiFj065134 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Mar 2009 15:36:44 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Greg Rivers In-Reply-To: References: <1231599679.1837.13.camel@wombat.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-NEKwcLo4DP/LGBO0aopT" Organization: FreeBSD Date: Tue, 17 Mar 2009 14:37:51 -0500 Message-Id: <1237318671.1728.7.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00, MIME_QP_LONG_LINE,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 19:38:08 -0000 --=-NEKwcLo4DP/LGBO0aopT Content-Type: multipart/mixed; boundary="=-W+ozQIQnwEbUXdwyFHsA" --=-W+ozQIQnwEbUXdwyFHsA Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2009-03-17 at 12:20 -0500, Greg Rivers wrote: > On Sat, 10 Jan 2009, Robert Noland wrote: >=20 > > I just merged drm (Direct Rendering) from HEAD. > > > > - Support for latest Intel chips > > - Support and fixes for many AMD/ATI chips r500 and below > > - Support AMD/ATI IGP based chips (rs690/rs485) > > - Lots of code cleanups > > - Lots of other fixes and changes since the existing drm > > is 2+ years old > > > > If you are experiencing a "garbled" screen with certain pci/pci-e based > > radeons, I have another patch in HEAD that isn't included yet. > > >=20 > I have a workstation with a [Radeon X600 (PCIE)] card. The X display has= =20 > been garbled since these DRM updates went in in January, and remains=20 > garbled with 7.1-STABLE as of yesterday. As a work-around, I'm running=20 > the up-to-date 7.1-STABLE system (both world and ports) with a=20 > 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and X=20 > works great; I even see dramatically improved performance with the new=20 > Xorg and EXA acceleration. Your work is much appreciated. >=20 > But the garbled display with the recent DRM still plagues me. >=20 > Here's how pciconf identifies the card: > vgapci0@pci0:1:0:0: class=3D0x030000 card=3D0x06021002 chip=3D0x5b621002 = rev=3D0x00 hdr=3D0x00 > vendor =3D 'ATI Technologies Inc' > device =3D 'RV380 RADEON X600 Series 265MB' > class =3D display > subclass =3D VGA > vgapci1@pci0:1:0:1: class=3D0x038000 card=3D0x06031002 chip=3D0x5b721002 = rev=3D0x00 hdr=3D0x00 > vendor =3D 'ATI Technologies Inc' > device =3D 'Radeon X600 Series - Secondary' > class =3D display >=20 > The old DRM probe: > vgapci0: port 0x2000-0x20ff mem 0xe0000000-0xe7f= fffff,0xe8500000-0xe850ffff irq 16 at device 0.0 on pci1 > drm0: on vgapci0 > info: [drm] Initialized radeon 1.25.0 20060524 > vgapci1: mem 0xe8510000-0xe851ffff at device 0.1= on pci1 > ... > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xe8500000 > vgapci0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xe0000000 > info: [drm] Setting GART location based on new memory map > info: [drm] Loading R300 Microcode > info: [drm] writeback test succeeded in 1 usecs > ioapic0: Assigning PCI IRQ 16 to local APIC 0 > ioapic0: routing intpin 16 (PCI IRQ 16) to vector 60 > drm0: [MPSAFE] >=20 > The new DRM probe: > vgapci0: port 0x2000-0x20ff mem 0xe0000000-0xe7f= fffff,0xe8500000-0xe850ffff irq 16 at device 0.0 on pci1 > drm0: on vgapci0 > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xe8500000 > vgapci0: child drm0 requested pci_enable_busmaster > info: [drm] Initialized radeon 1.29.0 20080528 > vgapci1: mem 0xe8510000-0xe851ffff at device 0.1= on pci1 > ... > vgapci0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xe0000000 > info: [drm] Setting GART location based on new memory map > info: [drm] Loading R300 Microcode > info: [drm] Num pipes: 1 > info: [drm] writeback test succeeded in 1 usecs > ioapic0: Assigning PCI IRQ 16 to local APIC 0 > ioapic0: routing intpin 16 (PCI IRQ 16) to vector 59 > drm0: [MPSAFE] > drm0: [ITHREAD] > info: [drm] Num pipes: 1 >=20 > Difference between the Xorg logs when it's working and when it's not: > --- ok/Xorg.0.log 2009-03-16 14:39:40.000000000 -0500 > +++ garbled/Xorg.0.log 2009-03-16 14:46:13.000000000 -0500 > @@ -6 +6 @@ > -Current Operating System: FreeBSD xxx.xxx.xxxxx.xxx 7.1-RELEASE-p2 FreeB= SD 7.1-RELEASE-p2 #0: Fri Jan 16 18:00:35 CST 2009 root@xxx.xxx.xxxxx.x= xx:/usr/obj/usr/src/sys/SMALL-SMP i386 > +Current Operating System: FreeBSD xxx.xxx.xxxxx.xxx 7.1-STABLE FreeBSD 7= .1-STABLE #0: Mon Mar 16 11:42:42 CDT 2009 root@xxx.xxx.xxxxx.xxx:/usr/= obj/usr/src/sys/SMALL-SMP i386 > @@ -14 +14 @@ > -(=3D=3D) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 16 14:39:34 2009 > +(=3D=3D) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 16 14:22:00 2009 > @@ -407 +407 @@ > -(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module = version 1.25.0 > +(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module = version 1.29.0 > @@ -774,5 +774,5 @@ > -(II) RADEON(0): [pci] 32768 kB allocated with handle 0xc56d4000 > -(II) RADEON(0): [pci] ring handle =3D 0xc56d4000 > -(II) RADEON(0): [pci] Ring mapped at 0x90a00000 > -(II) RADEON(0): [pci] Ring contents 0x00000000 > -(II) RADEON(0): [pci] ring read ptr handle =3D 0xc57d5000 > +(II) RADEON(0): [pci] 32768 kB allocated with handle 0xe7732000 > +(II) RADEON(0): [pci] ring handle =3D 0xe7732000 > +(II) RADEON(0): [pci] Ring mapped at 0x88a00000 > +(II) RADEON(0): [pci] Ring contents 0xff7d8c94 > +(II) RADEON(0): [pci] ring read ptr handle =3D 0xe7833000 > @@ -780,6 +780,6 @@ > -(II) RADEON(0): [pci] Ring read ptr contents 0x00000000 > -(II) RADEON(0): [pci] vertex/indirect buffers handle =3D 0xc57d6000 > -(II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x90b01000 > -(II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000 > -(II) RADEON(0): [pci] GART texture map handle =3D 0xc59d6000 > -(II) RADEON(0): [pci] GART Texture map mapped at 0x90d01000 > +(II) RADEON(0): [pci] Ring read ptr contents 0xff180000 > +(II) RADEON(0): [pci] vertex/indirect buffers handle =3D 0xe7834000 > +(II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x90c00000 > +(II) RADEON(0): [pci] Vertex/indirect buffers contents 0xff100049 > +(II) RADEON(0): [pci] GART texture map handle =3D 0xe7a34000 > +(II) RADEON(0): [pci] GART Texture map mapped at 0x90e34000 > @@ -806 +805,0 @@ > -(WW) RADEON(0): Failed to determine num pipes from DRM, falling back to = manual look-up! >=20 > I tried setting hw.dri.0.debug=3D1. That produced a lot of output, but=20 > nothing that looked like an error or warning. Do you have any idea what=20 > might be causing this, or how to troubleshoot further? Could you try the attached patch. Also, I'm guessing that this is a PCI based card, right? Also, it isn't an integrated model? robert. --=20 Robert Noland FreeBSD --=-W+ozQIQnwEbUXdwyFHsA Content-Disposition: attachment; filename="drm_bufs.patch" Content-Transfer-Encoding: base64 Content-Type: text/x-patch; name="drm_bufs.patch"; charset="us-ascii" SW5kZXg6IGRybV9idWZzLmMNCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBkcm1fYnVmcy5jCShyZXZpc2lvbiAx ODk5MDcpDQorKysgZHJtX2J1ZnMuYwkocmV2aXNpb24gMTg5OTA4KQ0KQEAgLTExMDYsNyArMTEw Niw3IEBADQogCWlmIChzaXplID09IDApDQogCQlyZXR1cm4gMDsNCiANCi0Jb3JkZXIgPSBmZnNs KHNpemUpIC0gMTsNCisJb3JkZXIgPSBmbHNsKHNpemUpIC0gMTsNCiAJaWYgKHNpemUgJiB+KDF1 bCA8PCBvcmRlcikpDQogCQkrK29yZGVyOw0KIA0K --=-W+ozQIQnwEbUXdwyFHsA-- --=-NEKwcLo4DP/LGBO0aopT Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAkm//A8ACgkQM4TrQ4qfROOcmwCfV6+OX4L1HFo7iFxkhndK/N9g 1oQAnRFVTUxPL2vx7NVvV3ctLMDvnJr5 =I+MK -----END PGP SIGNATURE----- --=-NEKwcLo4DP/LGBO0aopT-- From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 20:41:38 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A95E5106566B for ; Tue, 17 Mar 2009 20:41:38 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id 70E488FC19 for ; Tue, 17 Mar 2009 20:41:38 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id YXG64038 for ; Tue, 17 Mar 2009 14:41:38 -0600 Date: Tue, 17 Mar 2009 14:41:38 -0600 From: Squirrel To: freebsd-stable@freebsd.org Message-ID: <1ab6f1a2ff9684e6f3df38b015305ba1@mail.isot.com> X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: general: warning: max open files (3636) is smaller than maxsockets (4096) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 20:41:39 -0000 Nice!!! Thank you. ----------------------- PCShare.Com -----Original message----- From: David Kelly dkelly@hiwaay.net Date: Tue, 17 Mar 2009 20:32:10 -0600 To: Squirrel squirrel@mail.isot.com Subject: Re: general: warning: max open files (3636) is smaller than maxsockets (4096) > On Tue, Mar 17, 2009 at 12:31:43PM -0600, Squirrel wrote: > > This happend since I've upgraded bind 9.21 to 9.6.0. I've increased > > the max open files to 4096: > > > > sysctl -w kern.maxfiles=4096 > > > > which shows it resized from 4040->4096 > > > > But I guess it's different for bind? I've googled and found several > > references to this warning message, but everyone states it's not a > > problem and shouldn't be concerned. Some real advice would be > > appreciated. > > Depends a lot as to how busy your name server is, I guess. > > Mine is a lightly loaded in internal office use. When my PII 450 MHz > 192MB machine issued similar complaint on upgrade of bind I was tricked > into rebooting a machine with over 800 days uptime only to get the exact > same message again. > > So I limited the number of sockets named would ask for using this in > /etc/rc.conf: > > named_flags="-4 -S 1024" > > -- > David Kelly N4HHE, dkelly@HiWAAY.net > ======================================================================== > Whom computers would destroy, they must first drive mad. > _______________________________________________ > 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 Tue Mar 17 21:26:14 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64F37106564A for ; Tue, 17 Mar 2009 21:26:14 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-bw0-f164.google.com (mail-bw0-f164.google.com [209.85.218.164]) by mx1.freebsd.org (Postfix) with ESMTP id E422C8FC08 for ; Tue, 17 Mar 2009 21:26:13 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by bwz8 with SMTP id 8so262746bwz.43 for ; Tue, 17 Mar 2009 14:26:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=MODrLlugpjuRNGRNudrLv1mad2+YJ1licB6TkyUfD1A=; b=nLrg405Ucc1PeNd8o/AmGgHpbhh/btUnSoYqFiicxokBHYjuXTq45YW24bFf3CQDcU oYomNoEbheZ88WnpQr78uXBxMeorl36RMssOQDvtGSFGtxOkNAze07UwhcsN/FgfOEnn hc0fwmfPr9pNTWFOZIAKCUAMKUiuX9cUILlM0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=w3KxnDxLbkVnAsshAvVgnE25f54485A+TxH8Jn4UVDiYNKigWNumbUutkqazPqXw2O YgbjiK0+wvBDMNGr7qMwa7HEC9ZjHDbTxfAMYuOAizUR1JVwEzFcJRf0GadLQ7zLm2Us pY1j5jjA8nhwNJYwhslfgQ1hUckYoqI3+Cq4Y= MIME-Version: 1.0 Received: by 10.103.228.7 with SMTP id f7mr207515mur.130.1237325172726; Tue, 17 Mar 2009 14:26:12 -0700 (PDT) Date: Wed, 18 Mar 2009 00:26:12 +0300 Message-ID: From: pluknet To: FreeBSD Stable Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: KLD cbb.ko: depends on exca - not available X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 21:26:14 -0000 Hi. FreeBSD 7-STABLE. Subj message appears when I try to kldload cbb.ko and kernel cannot find exca due to its non-existence. The pccbb(4) manpage doesn't mention exca. make install exca helps with kldload, now: cbb0: at device 1.0 on pci1 cbb0: [ITHREAD] Would it be correct to add a new entry to the pccbb synopsis? --- src/share/man/man4/pccbb.4.orig 2009-03-18 00:22:09.000000000 +0300 +++ src/share/man/man4/pccbb.4 2009-03-18 00:22:42.000000000 +0300 @@ -34,6 +34,7 @@ .Cd device cbb .Cd device pccard .Cd device cardbus +.Cd device exca .Sh DESCRIPTION The .Nm -- wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 21:40:47 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 525711065673 for ; Tue, 17 Mar 2009 21:40:47 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id 19EEA8FC18 for ; Tue, 17 Mar 2009 21:40:46 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id YYF48447 for ; Tue, 17 Mar 2009 15:40:47 -0600 Date: Tue, 17 Mar 2009 15:40:47 -0600 From: Squirrel To: freebsd-stable Message-ID: X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: rndc: connect failed: 127.0.0.1#953: connection refused X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 21:40:47 -0000 My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf But it won't start on boot and no error messages or log. And it won't start using rndc, it cause error message. Why does the error shows port 953 when I specified for port 53 in the config? rndc: connect failed: 127.0.0.1#953: connection refused Below are parts of my configs: /etc/rc.conf: named_enable="YES" named_flags="-4 -S 1024 -c /etc/namedb/named.conf" .... /etc/rndc.key: key "rndc-key" { algorithm hmac-md5; secret "y9eca/WZydNfi......................."; }; /etc/namedb/rndc.conf: include "/etc/namedb/rndc.key"; options { default-server localhost; default-key "rndc-key"; }; server localhost { key "rndc-key"; }; ... /etc/namedb/named.conf: include "/etc/namedb/rndc.key"; acl internals { aa.bb.cc.0/20; 192.168.1.0/24; 127.0.0.0/8; }; controls { inet 127.0.0.1 port 53 allow { 127.0.0.1; } keys { rndc-key; }; }; options { pid-file "/var/run/named.pid"; directory "/etc/namedb"; statistics-file "/var/log/named/named.stats"; dump-file "/var/log/named/named.dump"; zone-statistics yes; allow-query { 127.0.0.1; 66.187.80.0/20; }; }; logging { category "default" { simple_log; }; channel simple_log { file "/var/log/named/named.log" versions 5 size 20m; severity warning; print-time yes; print-category yes; print-severity yes; }; ... ----------------------- PCShare.Com From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 22:35:53 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A28B106564A for ; Tue, 17 Mar 2009 22:35:53 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id 5123B8FC0C for ; Tue, 17 Mar 2009 22:35:52 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id YZA20353 for ; Tue, 17 Mar 2009 16:35:53 -0600 Date: Tue, 17 Mar 2009 16:35:53 -0600 From: Squirrel To: freebsd-stable Message-ID: X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 22:35:53 -0000 Will, just for heck of it, I've changed the default ports to 953 on both named.conf and rndc.conf, but still same error. -----Original message----- From: Squirrel squirrel@mail.isot.com Date: Tue, 17 Mar 2009 22:41:26 -0600 To: freebsd-stable freebsd-stable@freebsd.org Subject: rndc: connect failed: 127.0.0.1#953: connection refused > My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: > > root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf > > But it won't start on boot and no error messages or log. And it won't start using rndc, it cause error message. Why does the error shows port 953 when I specified for port 53 in the config? > > rndc: connect failed: 127.0.0.1#953: connection refused > > > Below are parts of my configs: > > /etc/rc.conf: > named_enable="YES" > named_flags="-4 -S 1024 -c /etc/namedb/named.conf" > .... > > /etc/rndc.key: > key "rndc-key" { > algorithm hmac-md5; > secret "y9eca/WZydNfi......................."; > }; > > /etc/namedb/rndc.conf: > include "/etc/namedb/rndc.key"; > options { > default-server localhost; > default-key "rndc-key"; > }; > server localhost { > key "rndc-key"; > }; > ... > > /etc/namedb/named.conf: > include "/etc/namedb/rndc.key"; > acl internals { > aa.bb.cc.0/20; > 192.168.1.0/24; > 127.0.0.0/8; > }; > controls { > inet 127.0.0.1 port 53 allow { 127.0.0.1; } keys { rndc-key; }; > }; > options { > pid-file "/var/run/named.pid"; > directory "/etc/namedb"; > statistics-file "/var/log/named/named.stats"; > dump-file "/var/log/named/named.dump"; > zone-statistics yes; > allow-query { 127.0.0.1; 66.187.80.0/20; }; > }; > logging { > category "default" { simple_log; }; > channel simple_log { > file "/var/log/named/named.log" versions 5 size 20m; > severity warning; > print-time yes; > print-category yes; > print-severity yes; > }; > ... > > > ----------------------- > PCShare.Com > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 23:21:15 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80DAC1065670 for ; Tue, 17 Mar 2009 23:21:15 +0000 (UTC) (envelope-from Mark_Andrews@isc.org) Received: from mx.isc.org (mx.isc.org [IPv6:2001:4f8:0:2::1c]) by mx1.freebsd.org (Postfix) with ESMTP id 625FB8FC1B for ; Tue, 17 Mar 2009 23:21:15 +0000 (UTC) (envelope-from Mark_Andrews@isc.org) Received: from farside.isc.org (farside.isc.org [IPv6:2001:4f8:3:bb::5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "farside.isc.org", Issuer "ISC CA" (verified OK)) by mx.isc.org (Postfix) with ESMTPS id A299011402B; Tue, 17 Mar 2009 23:21:13 +0000 (UTC) (envelope-from Mark_Andrews@isc.org) Received: from drugs.dv.isc.org (drugs.dv.isc.org [IPv6:2001:470:1f00:820:214:22ff:fed9:fbdc]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "drugs.dv.isc.org", Issuer "ISC CA" (not verified)) by farside.isc.org (Postfix) with ESMTP id 10DC6E6072; Tue, 17 Mar 2009 23:21:12 +0000 (UTC) (envelope-from marka@isc.org) Received: from drugs.dv.isc.org (localhost [127.0.0.1]) by drugs.dv.isc.org (8.14.3/8.14.3) with ESMTP id n2HNL9u8047856; Wed, 18 Mar 2009 10:21:10 +1100 (EST) (envelope-from marka@drugs.dv.isc.org) Message-Id: <200903172321.n2HNL9u8047856@drugs.dv.isc.org> To: Squirrel From: Mark Andrews In-reply-to: Your message of "Tue, 17 Mar 2009 15:40:47 MDT." Date: Wed, 18 Mar 2009 10:21:09 +1100 Sender: Mark_Andrews@isc.org X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on mx.isc.org Cc: freebsd-stable Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 23:21:15 -0000 In message , Squirrel writes: > My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: > > root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf > > But it won't start on boot and no error messages or log. And it won't start > using rndc, it cause error message. Why does the error shows port 953 when I > specified for port 53 in the config? Port 53 is for DNS. Port 952 is the default port for RNDC. > rndc: connect failed: 127.0.0.1#953: connection refused Run "named -4 -S 1024 -c /etc/namedb/named.conf -g" and read the messages. > Below are parts of my configs: > > /etc/rc.conf: > named_enable="YES" > named_flags="-4 -S 1024 -c /etc/namedb/named.conf" > .... > > /etc/rndc.key: > key "rndc-key" { > algorithm hmac-md5; > secret "y9eca/WZydNfi......................."; > }; > > /etc/namedb/rndc.conf: > include "/etc/namedb/rndc.key"; > options { > default-server localhost; > default-key "rndc-key"; > }; > server localhost { > key "rndc-key"; > }; > ... > > /etc/namedb/named.conf: > include "/etc/namedb/rndc.key"; > acl internals { > aa.bb.cc.0/20; > 192.168.1.0/24; > 127.0.0.0/8; > }; > controls { > inet 127.0.0.1 port 53 allow { 127.0.0.1; } keys { rndc-key; }; > }; > options { > pid-file "/var/run/named.pid"; > directory "/etc/namedb"; > statistics-file "/var/log/named/named.stats"; > dump-file "/var/log/named/named.dump"; > zone-statistics yes; > allow-query { 127.0.0.1; 66.187.80.0/20; }; > }; > logging { > category "default" { simple_log; }; > channel simple_log { > file "/var/log/named/named.log" versions 5 size 20m; > severity warning; > print-time yes; > print-category yes; > print-severity yes; > }; > ... > > > ----------------------- > PCShare.Com > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" -- Mark Andrews, ISC 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: Mark_Andrews@isc.org From owner-freebsd-stable@FreeBSD.ORG Tue Mar 17 23:24:30 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F5801065672 for ; Tue, 17 Mar 2009 23:24:30 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from QMTA07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by mx1.freebsd.org (Postfix) with ESMTP id 34FDB8FC08 for ; Tue, 17 Mar 2009 23:24:29 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from OMTA05.westchester.pa.mail.comcast.net ([76.96.62.43]) by QMTA07.westchester.pa.mail.comcast.net with comcast id UJhH1b00K0vyq2s57PQWCH; Tue, 17 Mar 2009 23:24:30 +0000 Received: from roadkill.tharned.org ([75.145.12.185]) by OMTA05.westchester.pa.mail.comcast.net with comcast id UPQV1b00B3zZBGT3RPQVhk; Tue, 17 Mar 2009 23:24:30 +0000 Received: from roadkill.tharned.org (11008@localhost [127.0.0.1]) by roadkill.tharned.org (8.14.3/8.14.3) with ESMTP id n2HNORmQ035148 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 17 Mar 2009 18:24:27 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by roadkill.tharned.org (8.14.3/8.14.3/Submit) with ESMTP id n2HNORbA035145; Tue, 17 Mar 2009 18:24:27 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Tue, 17 Mar 2009 18:24:27 -0500 (CDT) From: Greg Rivers To: Robert Noland In-Reply-To: <1237318671.1728.7.camel@balrog.2hip.net> Message-ID: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="=-W+ozQIQnwEbUXdwyFHsA" Content-ID: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (roadkill.tharned.org [127.0.0.1]); Tue, 17 Mar 2009 18:24:28 -0500 (CDT) Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Mar 2009 23:24:31 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --=-W+ozQIQnwEbUXdwyFHsA Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; format=flowed Content-ID: On Tue, 17 Mar 2009, Robert Noland wrote: > On Tue, 2009-03-17 at 12:20 -0500, Greg Rivers wrote: >> On Sat, 10 Jan 2009, Robert Noland wrote: >> >>> I just merged drm (Direct Rendering) from HEAD. >>> >>> - Support for latest Intel chips >>> - Support and fixes for many AMD/ATI chips r500 and below >>> - Support AMD/ATI IGP based chips (rs690/rs485) >>> - Lots of code cleanups >>> - Lots of other fixes and changes since the existing drm >>> is 2+ years old >>> >>> If you are experiencing a "garbled" screen with certain pci/pci-e based >>> radeons, I have another patch in HEAD that isn't included yet. >>> >> >> I have a workstation with a [Radeon X600 (PCIE)] card. The X display has >> been garbled since these DRM updates went in in January, and remains >> garbled with 7.1-STABLE as of yesterday. As a work-around, I'm running >> the up-to-date 7.1-STABLE system (both world and ports) with a >> 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and X >> works great; I even see dramatically improved performance with the new >> Xorg and EXA acceleration. Your work is much appreciated. >> >> But the garbled display with the recent DRM still plagues me. >> >> [snip] > > Could you try the attached patch. > Unfortunately, there is no noticeable difference with this patch. > Also, I'm guessing that this is a PCI based card, right? Also, it isn't > an integrated model? > Yes, this is a PCIEx16 card in a HP Compaq dc7600 desktop PC, not a motherboard integrated adapter. Thanks for your help. I'm willing to spend some time debugging this; please let me know if there's more information I can provide or other tests or patches I can try. -- Greg Rivers --=-W+ozQIQnwEbUXdwyFHsA Content-Type: TEXT/X-PATCH; NAME=drm_bufs.patch; CHARSET=us-ascii Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME=drm_bufs.patch SW5kZXg6IGRybV9idWZzLmMNCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBkcm1fYnVmcy5jCShyZXZpc2lvbiAx ODk5MDcpDQorKysgZHJtX2J1ZnMuYwkocmV2aXNpb24gMTg5OTA4KQ0KQEAgLTExMDYsNyArMTEw Niw3IEBADQogCWlmIChzaXplID09IDApDQogCQlyZXR1cm4gMDsNCiANCi0Jb3JkZXIgPSBmZnNs KHNpemUpIC0gMTsNCisJb3JkZXIgPSBmbHNsKHNpemUpIC0gMTsNCiAJaWYgKHNpemUgJiB+KDF1 bCA8PCBvcmRlcikpDQogCQkrK29yZGVyOw0KIA0K --=-W+ozQIQnwEbUXdwyFHsA-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 00:03:11 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDF521065672 for ; Wed, 18 Mar 2009 00:03:11 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from smtp-out1.tiscali.nl (smtp-out1.tiscali.nl [195.241.79.176]) by mx1.freebsd.org (Postfix) with ESMTP id 913558FC12 for ; Wed, 18 Mar 2009 00:03:11 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from [212.123.145.58] (helo=guido.klop.ws) by smtp-out1.tiscali.nl with smtp id 1Ljj0V-0001pu-UX for ; Wed, 18 Mar 2009 00:47:40 +0100 Received: (qmail 19619 invoked from network); 17 Mar 2009 23:47:34 -0000 Received: from localhost (HELO 82-170-177-25.ip.telfort.nl) (127.0.0.1) by localhost with SMTP; 17 Mar 2009 23:47:34 -0000 Date: Wed, 18 Mar 2009 00:47:31 +0100 To: "Robert Noland" , freebsd-stable From: "Ronald Klop" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <1237142952.1774.22.camel@balrog.2hip.net> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <1237142952.1774.22.camel@balrog.2hip.net> User-Agent: Opera Mail/9.64 (FreeBSD) Cc: Subject: Re: Radeon r6/7xx support merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 00:03:12 -0000 On Sun, 15 Mar 2009 19:49:12 +0100, Robert Noland wrote: > I went ahead and merged the Radeon R6/7xx code to -STABLE a while ago. > > The current xorg drivers will not enable it by default on R600+ chips. > You will need to be using xf86-video-ati-6.12.0, > xf86-video-radeonhd-devel or possibly even better git master of either. > > You will need to add the following to the Device section of your > xorg.conf to enable it. If you are experiencing issues, commenting > these two options out, will prevent Xorg from auto-loading the kernel > module. > > Options "DRI" > Options "AccelMethod" "EXA" > > robert. Thanks. I currently have EXA accel on my system with xf86-video-ati-6.12.0, which makes KDE 4 a lot better already. drm0: on vgapci0 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.29.0 20080528 info: [drm] Setting GART location based on new memory map info: [drm] Loading RV610 CP Microcode info: [drm] Loading RV610 PFP Microcode info: [drm] Resetting GPU info: [drm] writeback test succeeded in 1 usecs drm0: [ITHREAD] Cheers, Ronald. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 00:10:44 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0099106567B for ; Wed, 18 Mar 2009 00:10:43 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id B3A5D8FC24 for ; Wed, 18 Mar 2009 00:10:43 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id ZDC40644; Tue, 17 Mar 2009 18:10:44 -0600 Date: Tue, 17 Mar 2009 18:10:44 -0600 From: Squirrel To: "Mark Andrews" Message-ID: <62de997279f74262f2f10e7f96604867@mail.isot.com> X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: freebsd-stable Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 00:10:44 -0000 I realized that default for RNDC was 953, and forced it to 53, but was still getting the same error. As you recommended, I used the '-g' and noticed only unusual thing was: /etc/namedb/named.conf:23: couldn't add command channel 127.0.0.1#53: address in use So I took out the port 53 out of the named.conf and let it use the default. But left port 53 on rdnc.conf. When I restarted with '-g', that message above is gone and all looks good. Strangely, two doesn't make sense are: listening on IPv4 interface rl0, 66.187.80.4#53 command channel listening on 127.0.0.1#953 By default is #53, and in rndc.conf forced to port #53, but the named displays port #953 for command channel. Is the RNDC supposed run on port 953 in addition to named running on 53? I can't seem to get rndc to run on #53. I've also tried removoing port to default on rndc.conf. And reboot still won't load named. And manual rndc load still errors with original message. Below are the current messages: root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf -g 17-Mar-2009 19:04:50.001 starting BIND 9.6.0-P1 -4 -S 1024 -c /etc/namedb/named.conf -g 17-Mar-2009 19:04:50.001 built with '--localstatedir=/var' '--disable-linux-caps' '--with-randomdev=/dev/random' '--with-openssl=/usr/local' '--with-libxml2=/usr/local' '--without-idn' 'STD_CDEFINES=-DDIG_SIGCHASE=1' '--disable-threads' '--sysconfdir=/etc/namedb' '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info/' '--build=i386-portbld-freebsd6.2' 'build_alias=i386-portbld-freebsd6.2' 'CC=cc' 'CFLAGS=-O2 -fno-strict-aliasing -pipe' 'LDFLAGS= -rpath=/usr/local/lib' 'CXX=c++' 'CXXFLAGS=-O2 -fno-strict-aliasing -pipe' 17-Mar-2009 19:04:50.001 using up to 1024 sockets 17-Mar-2009 19:04:50.068 loading configuration from '/etc/namedb/named.conf' 17-Mar-2009 19:04:50.124 using default UDP/IPv4 port range: [49152, 65535] 17-Mar-2009 19:04:50.124 using default UDP/IPv6 port range: [49152, 65535] 17-Mar-2009 19:04:50.127 no IPv6 interfaces found 17-Mar-2009 19:04:50.127 listening on IPv4 interface rl0, aa.bb.cc.4#53 17-Mar-2009 19:04:50.128 listening on IPv4 interface rl0, aa.bb.cc.10#53 17-Mar-2009 19:04:50.128 listening on IPv4 interface lo0, 127.0.0.1#53 17-Mar-2009 19:04:50.143 automatic empty zone: 0.IN-ADDR.ARPA 17-Mar-2009 19:04:50.143 automatic empty zone: 127.IN-ADDR.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 254.169.IN-ADDR.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 2.0.192.IN-ADDR.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: D.F.IP6.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 8.E.F.IP6.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: 9.E.F.IP6.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: A.E.F.IP6.ARPA 17-Mar-2009 19:04:50.144 automatic empty zone: B.E.F.IP6.ARPA 17-Mar-2009 19:04:50.146 command channel listening on 127.0.0.1#953 17-Mar-2009 19:04:50.147 ignoring config file logging statement due to -g option 17-Mar-2009 19:04:50.168 zone 0.0.127.IN-ADDR.ARPA/IN: loaded serial 20060213 .... -----Original message----- From: Mark Andrews Mark_Andrews@isc.org Date: Wed, 18 Mar 2009 00:21:52 -0600 To: Squirrel squirrel@mail.isot.com Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused > > In message , Squirrel writes: > > My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: > > > > root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf > > > > But it won't start on boot and no error messages or log. And it won't start > > using rndc, it cause error message. Why does the error shows port 953 when I > > specified for port 53 in the config? > > Port 53 is for DNS. > Port 952 is the default port for RNDC. > > > rndc: connect failed: 127.0.0.1#953: connection refused > > Run "named -4 -S 1024 -c /etc/namedb/named.conf -g" and read the > messages. > > > Below are parts of my configs: > > > > /etc/rc.conf: > > named_enable="YES" > > named_flags="-4 -S 1024 -c /etc/namedb/named.conf" > > .... > > > > /etc/rndc.key: > > key "rndc-key" { > > algorithm hmac-md5; > > secret "y9eca/WZydNfi......................."; > > }; > > > > /etc/namedb/rndc.conf: > > include "/etc/namedb/rndc.key"; > > options { > > default-server localhost; > > default-key "rndc-key"; > > }; > > server localhost { > > key "rndc-key"; > > }; > > ... > > > > /etc/namedb/named.conf: > > include "/etc/namedb/rndc.key"; > > acl internals { > > aa.bb.cc.0/20; > > 192.168.1.0/24; > > 127.0.0.0/8; > > }; > > controls { > > inet 127.0.0.1 port 53 allow { 127.0.0.1; } keys { rndc-key; }; > > }; > > options { > > pid-file "/var/run/named.pid"; > > directory "/etc/namedb"; > > statistics-file "/var/log/named/named.stats"; > > dump-file "/var/log/named/named.dump"; > > zone-statistics yes; > > allow-query { 127.0.0.1; 66.187.80.0/20; }; > > }; > > logging { > > category "default" { simple_log; }; > > channel simple_log { > > file "/var/log/named/named.log" versions 5 size 20m; > > severity warning; > > print-time yes; > > print-category yes; > > print-severity yes; > > }; > > ... > > > > > > ----------------------- > > PCShare.Com > > > > _______________________________________________ > > freebsd-stable@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > -- > Mark Andrews, ISC > 1 Seymour St., Dundas Valley, NSW 2117, Australia > PHONE: +61 2 9871 4742 INTERNET: Mark_Andrews@isc.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 Wed Mar 18 00:13:14 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6D1E1065673 for ; Wed, 18 Mar 2009 00:13:14 +0000 (UTC) (envelope-from peter@simons-rock.edu) Received: from hedwig.simons-rock.edu (hedwig.simons-rock.edu [208.81.88.14]) by mx1.freebsd.org (Postfix) with ESMTP id A26878FC16 for ; Wed, 18 Mar 2009 00:13:14 +0000 (UTC) (envelope-from peter@simons-rock.edu) Received: from cesium.hyperfine.info (c2.8d.5646.static.theplanet.com [70.86.141.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hedwig.simons-rock.edu (Postfix) with ESMTP id 9CADC2BB346; Tue, 17 Mar 2009 20:13:13 -0400 (EDT) Date: Tue, 17 Mar 2009 20:13:12 -0400 From: "Peter C. Lai" To: Squirrel Message-ID: <20090318001311.GW13398@cesium.hyperfine.info> References: <62de997279f74262f2f10e7f96604867@mail.isot.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <62de997279f74262f2f10e7f96604867@mail.isot.com> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Mark Andrews , freebsd-stable Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 00:13:15 -0000 Yes that is exactly the point. RNDC is supposed to run on 953 and the name service itself is on 53. Think about it, if tcp/53 is used for real DNS (jumbo RR) traffic, how can rndc be listening for commands on the same channel? On 2009-03-17 06:10:44PM -0600, Squirrel wrote: > I realized that default for RNDC was 953, and forced it to 53, but was still getting the same error. > > As you recommended, I used the '-g' and noticed only unusual thing was: > > /etc/namedb/named.conf:23: couldn't add command channel 127.0.0.1#53: address in use > > So I took out the port 53 out of the named.conf and let it use the default. But left port 53 on rdnc.conf. When I restarted with '-g', that message above is gone and all looks good. Strangely, two doesn't make sense are: > > listening on IPv4 interface rl0, 66.187.80.4#53 > command channel listening on 127.0.0.1#953 > > By default is #53, and in rndc.conf forced to port #53, but the named displays port #953 for command channel. Is the RNDC supposed run on port 953 in addition to named running on 53? I can't seem to get rndc to run on #53. I've also tried removoing port to default on rndc.conf. > > And reboot still won't load named. And manual rndc load still errors with original message. > > Below are the current messages: > > root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf -g > 17-Mar-2009 19:04:50.001 starting BIND 9.6.0-P1 -4 -S 1024 -c /etc/namedb/named.conf -g > 17-Mar-2009 19:04:50.001 built with '--localstatedir=/var' '--disable-linux-caps' '--with-randomdev=/dev/random' '--with-openssl=/usr/local' '--with-libxml2=/usr/local' '--without-idn' 'STD_CDEFINES=-DDIG_SIGCHASE=1' '--disable-threads' '--sysconfdir=/etc/namedb' '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info/' '--build=i386-portbld-freebsd6.2' 'build_alias=i386-portbld-freebsd6.2' 'CC=cc' 'CFLAGS=-O2 -fno-strict-aliasing -pipe' 'LDFLAGS= -rpath=/usr/local/lib' 'CXX=c++' 'CXXFLAGS=-O2 -fno-strict-aliasing -pipe' > 17-Mar-2009 19:04:50.001 using up to 1024 sockets > 17-Mar-2009 19:04:50.068 loading configuration from '/etc/namedb/named.conf' > 17-Mar-2009 19:04:50.124 using default UDP/IPv4 port range: [49152, 65535] > 17-Mar-2009 19:04:50.124 using default UDP/IPv6 port range: [49152, 65535] > 17-Mar-2009 19:04:50.127 no IPv6 interfaces found > 17-Mar-2009 19:04:50.127 listening on IPv4 interface rl0, aa.bb.cc.4#53 > 17-Mar-2009 19:04:50.128 listening on IPv4 interface rl0, aa.bb.cc.10#53 > 17-Mar-2009 19:04:50.128 listening on IPv4 interface lo0, 127.0.0.1#53 > 17-Mar-2009 19:04:50.143 automatic empty zone: 0.IN-ADDR.ARPA > 17-Mar-2009 19:04:50.143 automatic empty zone: 127.IN-ADDR.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 254.169.IN-ADDR.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 2.0.192.IN-ADDR.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: D.F.IP6.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 8.E.F.IP6.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: 9.E.F.IP6.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: A.E.F.IP6.ARPA > 17-Mar-2009 19:04:50.144 automatic empty zone: B.E.F.IP6.ARPA > 17-Mar-2009 19:04:50.146 command channel listening on 127.0.0.1#953 > 17-Mar-2009 19:04:50.147 ignoring config file logging statement due to -g option > 17-Mar-2009 19:04:50.168 zone 0.0.127.IN-ADDR.ARPA/IN: loaded serial 20060213 > .... > > > -----Original message----- > From: Mark Andrews Mark_Andrews@isc.org > Date: Wed, 18 Mar 2009 00:21:52 -0600 > To: Squirrel squirrel@mail.isot.com > Subject: Re: rndc: connect failed: 127.0.0.1#953: connection refused > > > > > In message , Squirrel writes: > > > My BIND9.6.0 on FreeBSD 6.2 works fine when I manually start with: > > > > > > root@ns2# named -4 -S 1024 -c /etc/namedb/named.conf > > > > > > But it won't start on boot and no error messages or log. And it won't start > > > using rndc, it cause error message. Why does the error shows port 953 when I > > > specified for port 53 in the config? > > > > Port 53 is for DNS. > > Port 952 is the default port for RNDC. > > > > > rndc: connect failed: 127.0.0.1#953: connection refused > > > > Run "named -4 -S 1024 -c /etc/namedb/named.conf -g" and read the > > messages. > > > > > Below are parts of my configs: > > > > > > /etc/rc.conf: > > > named_enable="YES" > > > named_flags="-4 -S 1024 -c /etc/namedb/named.conf" > > > .... > > > > > > /etc/rndc.key: > > > key "rndc-key" { > > > algorithm hmac-md5; > > > secret "y9eca/WZydNfi......................."; > > > }; > > > > > > /etc/namedb/rndc.conf: > > > include "/etc/namedb/rndc.key"; > > > options { > > > default-server localhost; > > > default-key "rndc-key"; > > > }; > > > server localhost { > > > key "rndc-key"; > > > }; > > > ... > > > > > > /etc/namedb/named.conf: > > > include "/etc/namedb/rndc.key"; > > > acl internals { > > > aa.bb.cc.0/20; > > > 192.168.1.0/24; > > > 127.0.0.0/8; > > > }; > > > controls { > > > inet 127.0.0.1 port 53 allow { 127.0.0.1; } keys { rndc-key; }; > > > }; > > > options { > > > pid-file "/var/run/named.pid"; > > > directory "/etc/namedb"; > > > statistics-file "/var/log/named/named.stats"; > > > dump-file "/var/log/named/named.dump"; > > > zone-statistics yes; > > > allow-query { 127.0.0.1; 66.187.80.0/20; }; > > > }; > > > logging { > > > category "default" { simple_log; }; > > > channel simple_log { > > > file "/var/log/named/named.log" versions 5 size 20m; > > > severity warning; > > > print-time yes; > > > print-category yes; > > > print-severity yes; > > > }; > > > ... > > > > > > > > > ----------------------- > > > PCShare.Com > > > > > > _______________________________________________ > > > freebsd-stable@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > -- > > Mark Andrews, ISC > > 1 Seymour St., Dundas Valley, NSW 2117, Australia > > PHONE: +61 2 9871 4742 INTERNET: Mark_Andrews@isc.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-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" -- =========================================================== Peter C. Lai | Bard College at Simon's Rock Systems Administrator | 84 Alford Rd. Information Technology Svcs. | Gt. Barrington, MA 01230 USA peter AT simons-rock.edu | (413) 528-7428 =========================================================== From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 00:38:13 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF791106564A for ; Wed, 18 Mar 2009 00:38:13 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.freebsd.org (Postfix) with ESMTP id 9FD9E8FC17 for ; Wed, 18 Mar 2009 00:38:13 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from localhost (unknown [200.46.208.211]) by hub.org (Postfix) with ESMTP id 88CCA53BC5A for ; Tue, 17 Mar 2009 21:19:49 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.208.211]) (amavisd-maia, port 10024) with ESMTP id 72396-02 for ; Tue, 17 Mar 2009 21:19:39 -0300 (ADT) Received: by hub.org (Postfix, from userid 1002) id 3CABB53BC36; Tue, 17 Mar 2009 21:19:47 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 3B2F353BC30 for ; Tue, 17 Mar 2009 21:19:47 -0300 (ADT) Date: Tue, 17 Mar 2009 21:19:46 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-stable@freebsd.org Message-ID: <20090317211357.B97234@hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: vmstat memory: avm vs fre X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 00:38:14 -0000 I'm getting a really odd condition on one of my servers (and I suspect its happening on one of my other servers as well) ... after a period of time (<3 days), the server hangs solid ... Running vmstat in an xterm, the one thing I'm noticing is that when it hangs, my avm == 12455M and fre == 22M ... when I start the system, it looks like: avm == 246M vs fre == 197M ... I'm suspecting that the lock up is that fre hit 0 at some point, but I'm at a loss as to why, or where to look, for this ... top in another xterm when it hangs shows it appears to have more then enough VM: last pid: 87005; load averages: 8.57, 7.29, 4.46 up 0+17:25:13 20:45:00 1140 processes:317 running, 774 sleeping, 10 zombie, 39 lock CPU: 23.3% user, 0.0% nice, 11.1% system, 0.4% interrupt, 65.1% idle Mem: 4610M Active, 440M Inact, 489M Wired, 13M Cache, 214M Buf, 9624K Free Swap: 8192M Total, 1055M Used, 7137M Free, 12% Inuse, 564K In, 272K Out kvm_open: cannot open /proc/90106/mem PID JID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 30625 0 root 1 96 0 588M 166M RUN 0 14:54 0.10% /usr/local/bin/qemu-system-x86_64 -m 512M -net nic,macadd 86866 20 1200 1 96 0 60888K 1140K RUN 0 0:00 0.15% postgres: autovacuum worker process (postgres) 86844 1 root 1 96 0 15080K 1028K RUN 1 0:00 0.05% sshd: [accepted] (sshd) 45533 20 root 1 96 0 15044K 456K RUN 1 0:00 0.05% /usr/sbin/sshd 86895 0 root 1 96 0 15092K 428K RUN 0 0:00 0.05% /usr/sbin/sshd 15131 15 root 1 96 0 19692K 376K RUN 1 0:00 0.15% /usr/sbin/sshd 95911 4 www 1 4 0 106M 0K accept 0 0:01 0.00% /usr/local/sbin/httpd () ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 02:09:52 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F71F106566B for ; Wed, 18 Mar 2009 02:09:52 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [IPv6:2001:470:1f07:4e1::1]) by mx1.freebsd.org (Postfix) with ESMTP id DE97D8FC14 for ; Wed, 18 Mar 2009 02:09:51 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [IPv6:2001:470:1f07:4e1::4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Iain Michael Butler", Issuer "Protected Networks Certificate Authority" (verified OK)) (Authenticated sender: imb) by sarah.protected-networks.net (Postfix) with ESMTPSA id 0E7886106 for ; Tue, 17 Mar 2009 22:09:49 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=protected-networks.net; s=200705; t=1237342190; bh=9AyMu2pzF1jpLhTXwBEBr+TE/KYWuafFVVAs4JFCJ3k=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=G1R9VI71T+6ieP8AdSkjgfd5oiequ7qc43IHy7qB/6f3VyB41krvSz3lMz/RM3qld WBRYnmsuEzz1X5q841pZijzew5QTiuHfPY4zCOo/qIU/BuSYyPmmm2thOe6sRaL DomainKey-Signature: a=rsa-sha1; s=200509; d=protected-networks.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:subject: x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=X1flrGJbErHGKYETOQIIV1kpK1OyEb2/w6KEA1o1eNhGt2CgmNmdKUeJM7K9aKseZ 6VA9p+WHsx3f89YvbNZHgwtsxZqFM0S8fnY+GTw2dWwY7IqPYAzBYn7KUhNBD/g Message-ID: <49C057E9.6010402@protected-networks.net> Date: Tue, 17 Mar 2009 22:09:45 -0400 From: Michael Butler User-Agent: Thunderbird 2.0.0.19 (X11/20090217) MIME-Version: 1.0 To: freebsd-stable X-Enigmail-Version: 0.95.7 OpenPGP: id=0442D492 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: drm change breaks old ATI? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 02:09:52 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Seems that the new drm schema requires an interrupt to attach. "dmesg" returns: pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: on hostb0 pcib1: at device 1.0 on pci0 pci1: on pcib1 vgapci0: port 0x9000-0x90ff mem 0xd1000000-0xd1ffffff,0xd0100000-0xd0100fff at device 0.0 on pci1 drm0: <3D Rage Pro AGP 1X/2X> on vgapci0 device_attach: drm0 attach returned 2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. which corresponds to ENOENT and "lspci -vvv" gives: 01:00.0 VGA compatible controller: ATI Technologies Inc 3D Rage Pro AGP 1X/2X (rev 5c) (prog-if 00 [VGA controller]) Subsystem: ATI Technologies Inc Rage Pro Turbo AGP 2X Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- Interrupt: pin ? routed to IRQ 255 Region 0: Memory at d1000000 (32-bit, non-prefetchable) Region 1: I/O ports at 9000 Region 2: Memory at d0100000 (32-bit, non-prefetchable) Capabilities: [50] AGP version 1.0 Status: RQ=256 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW- AGP3- Rate=x1,x2 Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- Rate= Didn't this used to work? Michael -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAknAV+gACgkQQv9rrgRC1JIiAwCdEmwDBPcTjd97vV3q3kz5kO8R qA0An3RjPS/ra7CVRd6KfeuOuQoARaVm =h2qo -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 09:50:56 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C534106566C for ; Wed, 18 Mar 2009 09:50:56 +0000 (UTC) (envelope-from kama@pvp.se) Received: from ms1.as.pvp.se (dns.pvp.se [213.64.187.226]) by mx1.freebsd.org (Postfix) with ESMTP id 2171A8FC12 for ; Wed, 18 Mar 2009 09:50:56 +0000 (UTC) (envelope-from kama@pvp.se) Received: by ms1.as.pvp.se (Postfix, from userid 1001) id 1DAA7AA; Wed, 18 Mar 2009 10:23:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ms1.as.pvp.se (Postfix) with ESMTP id 18B41A7; Wed, 18 Mar 2009 10:23:14 +0100 (CET) Date: Wed, 18 Mar 2009 10:23:14 +0100 (CET) From: kama X-X-Sender: kama@ns1.as.pvp.se To: Ken Smith In-Reply-To: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> Message-ID: <20090318102134.D55869@ns1.as.pvp.se> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 09:50:56 -0000 On Tue, 17 Mar 2009, Ken Smith wrote: > > We're starting the release process for FreeBSD 7.2-RELEASE. The major > highlights of the schedule are: > > Code Freeze: March 23rd > BETA1 March 30th > Branch April 10th > RC1 April 13th > RC2 April 20th > Release: May 4th > > The full schedule is here: > > http://www.freebsd.org/releases/7.2R/schedule.html > > though most of "the other events" haven't been given specific dates yet. > > Since it's often the case that developers process quite a few > outstanding MFCs during the last couple days before a code freeze starts > I have changed RELENG_7 to say it is 7.2-PRERELEASE now as a bit of a > heads-up that the release cycle is imminent. You might need to be a > tiny bit more careful using RELENG_7 right now because the odds of you > getting a snapshot of the tree taken part way through someone doing > something that required multiple commits goes up during this phase of a > release. > Is it possible to get back the todo page during this release phase? /Bjorn From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 11:38:10 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A98D1106564A for ; Wed, 18 Mar 2009 11:38:10 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8493F8FC1A for ; Wed, 18 Mar 2009 11:38:10 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 3AA3146B2D; Wed, 18 Mar 2009 07:38:10 -0400 (EDT) Date: Wed, 18 Mar 2009 11:38:10 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: kama In-Reply-To: <20090318102134.D55869@ns1.as.pvp.se> Message-ID: References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 11:38:11 -0000 On Wed, 18 Mar 2009, kama wrote: >> Since it's often the case that developers process quite a few outstanding >> MFCs during the last couple days before a code freeze starts I have changed >> RELENG_7 to say it is 7.2-PRERELEASE now as a bit of a heads-up that the >> release cycle is imminent. You might need to be a tiny bit more careful >> using RELENG_7 right now because the odds of you getting a snapshot of the >> tree taken part way through someone doing something that required multiple >> commits goes up during this phase of a release. > > Is it possible to get back the todo page during this release phase? One of the most important things for us to keep an eye on in this release is that the boot loader now works on a number of pieces of hardware on which it reressed for 6.4/7.1. If it proves successful, we'll likely also do errata notes and roll new ISOs for 6.4. Since superpage support was MFC'd, keeping an eye out for new VM problems is important. A number of audit-related changes have been merged improving support for audit pipes, so extra testing of that functionality would be welcome. It would probably be worth skimming svn logs for stable/7 to see what other testing focuses would be particularly useful. Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 11:52:36 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E14E1106566C for ; Wed, 18 Mar 2009 11:52:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id BA0608FC22 for ; Wed, 18 Mar 2009 11:52:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 5D7C846B39; Wed, 18 Mar 2009 07:52:36 -0400 (EDT) Date: Wed, 18 Mar 2009 11:52:36 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Nick Withers In-Reply-To: <1237081381.1581.2.camel@localhost> Message-ID: References: <1236920519.1490.30.camel@localhost> <1237020646.1532.24.camel@localhost> <1237081381.1581.2.camel@localhost> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Cc: freebsd-stable@freebsd.org Subject: Re: NICs locking up, "*tcp_sc_h" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 11:52:37 -0000 On Sun, 15 Mar 2009, Nick Withers wrote: >> I'll need to think a bit about a proper fix for this, but you'll find the >> problem likely goes away if you eliminate all uid/gid/jail rules from your >> firewall. You could also tweak the syncache logic not to use a retransmit >> timer, which might slightly extend the time it takes for systems to connect >> to your host in the presence of packet loss, but would eliminate this >> transmission path entirely. We'll need a real and more general fix, >> however, to commit, and I'll look and see what I can come up with. > > Brilliant, thanks very much. I'll work without uid rules for the time being, > then. Could I ask you to file a PR on this problem, btw, with the two traces I singled out as interesting included, then forward me the PR receipt? That will make the problem easier to keep track of. We're currently pondering ways to fix the problem that don't disturb the stability of the ABI, and may have a workaround patch available shortly that's appropriate for MFC. Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 11:55:25 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F15010656C2 for ; Wed, 18 Mar 2009 11:55:25 +0000 (UTC) (envelope-from kama@pvp.se) Received: from ms1.as.pvp.se (dns.pvp.se [213.64.187.226]) by mx1.freebsd.org (Postfix) with ESMTP id 5B49C8FC1F for ; Wed, 18 Mar 2009 11:55:25 +0000 (UTC) (envelope-from kama@pvp.se) Received: by ms1.as.pvp.se (Postfix, from userid 1001) id 25B00AA; Wed, 18 Mar 2009 12:55:24 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ms1.as.pvp.se (Postfix) with ESMTP id 24459A9; Wed, 18 Mar 2009 12:55:24 +0100 (CET) Date: Wed, 18 Mar 2009 12:55:24 +0100 (CET) From: kama X-X-Sender: kama@ns1.as.pvp.se To: Robert Watson In-Reply-To: Message-ID: <20090318124806.K55869@ns1.as.pvp.se> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 11:55:26 -0000 On Wed, 18 Mar 2009, Robert Watson wrote: > > On Wed, 18 Mar 2009, kama wrote: > > >> Since it's often the case that developers process quite a few outstanding > >> MFCs during the last couple days before a code freeze starts I have changed > >> RELENG_7 to say it is 7.2-PRERELEASE now as a bit of a heads-up that the > >> release cycle is imminent. You might need to be a tiny bit more careful > >> using RELENG_7 right now because the odds of you getting a snapshot of the > >> tree taken part way through someone doing something that required multiple > >> commits goes up during this phase of a release. > > > > Is it possible to get back the todo page during this release phase? > > One of the most important things for us to keep an eye on in this release is > that the boot loader now works on a number of pieces of hardware on which it > reressed for 6.4/7.1. If it proves successful, we'll likely also do errata > notes and roll new ISOs for 6.4. > > Since superpage support was MFC'd, keeping an eye out for new VM problems is > important. > > A number of audit-related changes have been merged improving support for audit > pipes, so extra testing of that functionality would be welcome. > > It would probably be worth skimming svn logs for stable/7 to see what other > testing focuses would be particularly useful. What I meant was the todo page on www.freebsd.org. Like: http://www.freebsd.org/releases/7.2R/TODO.html Where problems and showstoppers where brought up. I found that information very valueble. Especially when the release went overdue I could easily see what caused the delay. The last release I did not really get information about why the release was delayed. At least not as easily as reloading a webpage. Well, just my $0.02... /Bjorn From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 11:59:19 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8600F106564A for ; Wed, 18 Mar 2009 11:59:19 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.246]) by mx1.freebsd.org (Postfix) with ESMTP id 2E4178FC1A for ; Wed, 18 Mar 2009 11:59:19 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by an-out-0708.google.com with SMTP id d11so9636and.13 for ; Wed, 18 Mar 2009 04:59:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=zZgFcrdYkYTevHWbMBv9eGx1eUuyGwmj7LpTLXedr40=; b=Ah2wHaOIJqUyWVVhasntfqITqYWJEnY6a3HKD96JMGcpfaQfjeheCMRwxMo9okNAQj ADdsVaA5AeYDuZFR8kGTxYxR2G6VTc0eJ3ZR4sS8gVspzPVTf5De8cglWpM6j+9Fbyhp HUa2ejjkohKQyc2kjv8y3fzo8UVV7/O8BSDrg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=JVr57rk+dd+GasruzEwuvCEVOMehGNHDlB3OAq14DGxh44XlD+/+g1WWa6DUGhiudN qHG8k1DS35WRnuBf+KQVDZf8/1NUgzTXJV0G1FEmiAzwQU9SukQI4dRrOArltRK30jBd 8bw0HQnGST0FrLFdnXh9Hj4JDktK6rQTh+CII= Received: by 10.101.68.19 with SMTP id v19mr1325383ank.151.1237377558640; Wed, 18 Mar 2009 04:59:18 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.66.1]) by mx.google.com with ESMTPS id c9sm96948ana.53.2009.03.18.04.59.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 18 Mar 2009 04:59:18 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 3355CB8074; Wed, 18 Mar 2009 08:52:20 -0300 (BRT) Received: from 189.92.31.47 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Wed, 18 Mar 2009 08:52:20 -0300 (BRT) Message-ID: <31fb04d6406bd862c0e2a31286ef532a.squirrel@cygnus.homeunix.com> In-Reply-To: References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> Date: Wed, 18 Mar 2009 08:52:20 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-stable@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 11:59:19 -0000 On Wed, March 18, 2009 08:38, Robert Watson wrote: > > On Wed, 18 Mar 2009, kama wrote: > >>> Since it's often the case that developers process quite a few >>> outstanding >>> MFCs during the last couple days before a code freeze starts I have >>> changed >>> RELENG_7 to say it is 7.2-PRERELEASE now as a bit of a heads-up that >>> the >>> release cycle is imminent. You might need to be a tiny bit more >>> careful >>> using RELENG_7 right now because the odds of you getting a snapshot of >>> the >>> tree taken part way through someone doing something that required >>> multiple >>> commits goes up during this phase of a release. >> >> Is it possible to get back the todo page during this release phase? > > One of the most important things for us to keep an eye on in this release > is > that the boot loader now works on a number of pieces of hardware on which > it > reressed for 6.4/7.1. If it proves successful, we'll likely also do > errata > notes and roll new ISOs for 6.4. from cdrom or the installed one ? I had problems (still have as it doesn't boot) from usb using via mini itx. would be worth trying again ? (I must use current, as my usb nic just works under head) thanks, matheus > Since superpage support was MFC'd, keeping an eye out for new VM problems > is > important. > > A number of audit-related changes have been merged improving support for > audit > pipes, so extra testing of that functionality would be welcome. > > It would probably be worth skimming svn logs for stable/7 to see what > other > testing focuses would be particularly useful. > > Robert N M Watson > Computer Laboratory > University of Cambridge > _______________________________________________ > 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" > -- We will call you cygnus, The God of balance you shall be From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 12:33:53 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C650F106566B; Wed, 18 Mar 2009 12:33:53 +0000 (UTC) (envelope-from nick@nickwithers.com) Received: from mail.nickwithers.com (mail.nickwithers.com [123.243.228.66]) by mx1.freebsd.org (Postfix) with ESMTP id E6D1C8FC0A; Wed, 18 Mar 2009 12:33:52 +0000 (UTC) (envelope-from nick@nickwithers.com) Received: from [10.0.0.245] (presario.shmon.net [10.0.0.245]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.nickwithers.com (Postfix) with ESMTPSA id 8739944; Wed, 18 Mar 2009 23:33:41 +1100 (EST) From: Nick Withers To: Robert Watson In-Reply-To: References: <1236920519.1490.30.camel@localhost> <1237020646.1532.24.camel@localhost> <1237081381.1581.2.camel@localhost> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-SiMUy3jaWYaZiOHMhr+1" Date: Wed, 18 Mar 2009 23:33:39 +1100 Message-Id: <1237379619.85532.55.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-MailScanner-ID: 8739944.70B2E X-nickwithers-MailScanner: Found to be clean X-nickwithers-MailScanner-From: nick@nickwithers.com Cc: freebsd-stable@freebsd.org Subject: Re: NICs locking up, "*tcp_sc_h" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 12:33:54 -0000 --=-SiMUy3jaWYaZiOHMhr+1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2009-03-18 at 11:52 +0000, Robert Watson wrote: > On Sun, 15 Mar 2009, Nick Withers wrote: >=20 > >> I'll need to think a bit about a proper fix for this, but you'll find = the=20 > >> problem likely goes away if you eliminate all uid/gid/jail rules from = your=20 > >> firewall. You could also tweak the syncache logic not to use a retran= smit=20 > >> timer, which might slightly extend the time it takes for systems to co= nnect=20 > >> to your host in the presence of packet loss, but would eliminate this=20 > >> transmission path entirely. We'll need a real and more general fix,=20 > >> however, to commit, and I'll look and see what I can come up with. > > > > Brilliant, thanks very much. I'll work without uid rules for the time b= eing,=20 > > then. >=20 > Could I ask you to file a PR on this problem, btw, with the two traces I=20 > singled out as interesting included, then forward me the PR receipt? Tha= t=20 > will make the problem easier to keep track of. Done - Please see newborn kern/132774! > We're currently pondering ways to fix the problem that don't disturb the=20 > stability of the ABI, and may have a workaround patch available shortly t= hat's=20 > appropriate for MFC. Wow! Must admit I'd assumed this one was going to take a while to sort out, so I'm certainly happy to hear this. Cheers very much! > Robert N M Watson > Computer Laboratory > University of Cambridge --=20 Nick Withers email: nick@nickwithers.com Web: http://www.nickwithers.com Mobile: +61 414 397 446 --=-SiMUy3jaWYaZiOHMhr+1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknA6iMACgkQ3wcG/Pf4Wrix4gCeOPV/SlO7eHjrTidvmtL8TIPl m1IAn0UfQN/RAgQMnxqESgLAGDZIYlR/ =NnAG -----END PGP SIGNATURE----- --=-SiMUy3jaWYaZiOHMhr+1-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 12:40:23 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDDBA1065676 for ; Wed, 18 Mar 2009 12:40:23 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from phoebe.cse.buffalo.edu (phoebe.cse.buffalo.edu [128.205.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id 9179E8FC23 for ; Wed, 18 Mar 2009 12:40:23 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from [128.205.32.76] (bauer.cse.buffalo.edu [128.205.32.76]) (authenticated bits=0) by phoebe.cse.buffalo.edu (8.14.1/8.13.7) with ESMTP id n2ICeJfW035749 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Mar 2009 08:40:22 -0400 (EDT) (envelope-from kensmith@cse.buffalo.edu) From: Ken Smith To: kama In-Reply-To: <20090318102134.D55869@ns1.as.pvp.se> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Ov2IQnCbE95H8W55jpkW" Organization: U. Buffalo CSE Department Date: Wed, 18 Mar 2009 08:40:19 -0400 Message-Id: <1237380019.30298.3.camel@bauer.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port X-DCC-Buffalo.EDU-Metrics: phoebe.cse.buffalo.edu 1335; Body=0 Fuz1=0 Fuz2=0 Cc: freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 12:40:25 -0000 --=-Ov2IQnCbE95H8W55jpkW Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2009-03-18 at 10:23 +0100, kama wrote: > Is it possible to get back the todo page during this release phase? During the last couple of releases I simply didn't have time to do everything and this was one of the things that fell by the wayside. After the dust from 7.1 settled we started to make arrangements for someone else to set this up and watch over it for us during the release. It might take him a little time to get rolling with it (as in it might not appear immediately upon the release cycle starting) but hopefully we will have something along these lines come back at some point during this release. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-Ov2IQnCbE95H8W55jpkW Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEABECAAYFAknA66gACgkQ/G14VSmup/b+9QCfWDDIFLl09hCwdJgkepf4Hp6R vLUAnROpwkFsgKYW0KJL9YBLwCeUETiX =mZIL -----END PGP SIGNATURE----- --=-Ov2IQnCbE95H8W55jpkW-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 13:01:07 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D24B3106564A for ; Wed, 18 Mar 2009 13:01:07 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 983378FC14 for ; Wed, 18 Mar 2009 13:01:07 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LjvOG-000NVv-EX; Wed, 18 Mar 2009 13:01:00 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LjvOF-000Biu-IM; Wed, 18 Mar 2009 13:00:59 +0000 To: amarat@ksu.ru, ns@got2get.net In-Reply-To: <49BFD57C.5010301@ksu.ru> Message-Id: From: Pete French Date: Wed, 18 Mar 2009 13:00:59 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: Crazy "interrupt storm detected" on atapci0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 13:01:08 -0000 > as I supposed in previous message your MB is MicroStar product. So I > insist that you read thread [1] in freebsd-stable named 'Interrupt > storm' started by Dan Langille I (still) have the same problem on my MSI Platinum .... and having re-read all of those threads in case I missed somehting, there still isn't a solution there. All the suggested ones (using 'Linux" as ACPI name, moving com interrupt ports, disabling onboard ether) are reported as failing after a few days. Luckily I have a colleague who can reboot the remote machine, and that has been my solution - but it is not really workable long term. (actually this has reminded me to check dmesg, and it seems I need to reboot this machine due to an interrupt storm right now). -pete. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 13:26:33 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C264F106570A for ; Wed, 18 Mar 2009 13:26:33 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-fx0-f167.google.com (mail-fx0-f167.google.com [209.85.220.167]) by mx1.freebsd.org (Postfix) with ESMTP id 1F5F48FC19 for ; Wed, 18 Mar 2009 13:26:32 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: by fxm11 with SMTP id 11so46496fxm.43 for ; Wed, 18 Mar 2009 06:26:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=2rD6fUI75Bj6+gO6crbPaaQyMqSVJoqdpS4O9NqtXzI=; b=R7P4NXEMhy3f/VXf44LDiSVJtLki/ElujoUB7UF8GsgKqiFH5x1cyixXkstgRqS0vo Bwx6oGSAvByaASGM41EOohQY3QitvvCiHXx71gJ/5FmgqwJUk/Z9/7hjV2moORvzUsUB tIeELdoU0CJCCOgHFNWJlt5aTirw88t6sCOyw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Zwoy3YbKFFHO5091sxckuip3c2oSSpokzvtedVXwDmHng/L3vy8QhXZfFYz5nO2w+f fhsjglVEIyTOHC7ZVAiBuxvK1EsNvu6Kcm5QQzoGWqengdtrNDp9XwRN2WXvV8VZiFQ3 M9Z8RR5EsxXzkzIN/HfJw0RRSTQUhTkagNk/I= MIME-Version: 1.0 Received: by 10.204.64.130 with SMTP id e2mr412282bki.64.1237381062417; Wed, 18 Mar 2009 05:57:42 -0700 (PDT) In-Reply-To: <20090318124806.K55869@ns1.as.pvp.se> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> <20090318124806.K55869@ns1.as.pvp.se> Date: Wed, 18 Mar 2009 08:57:42 -0400 Message-ID: From: Mehmet Erol Sanliturk To: kama Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable , Ken Smith , Robert Watson Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 13:26:34 -0000 > > On Wed, 18 Mar 2009, Robert Watson wrote: > > > What I meant was the todo page on www.freebsd.org. > > Like: http://www.freebsd.org/releases/7.2R/TODO.html > > The above link is giving Error 404 : Not found . http://www.freebsd.org/releases/page does NOT have a link to 7.2R . Therefore , it is NOT possible to reach that page from .../releases/ page . Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 13:38:15 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 372301065672 for ; Wed, 18 Mar 2009 13:38:15 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 099678FC21 for ; Wed, 18 Mar 2009 13:38:15 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 7FD3F46B2D; Wed, 18 Mar 2009 09:38:14 -0400 (EDT) Date: Wed, 18 Mar 2009 13:38:14 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Ken Smith In-Reply-To: <1237380019.30298.3.camel@bauer.cse.buffalo.edu> Message-ID: References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> <1237380019.30298.3.camel@bauer.cse.buffalo.edu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Cc: kama , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 13:38:17 -0000 On Wed, 18 Mar 2009, Ken Smith wrote: > On Wed, 2009-03-18 at 10:23 +0100, kama wrote: >> Is it possible to get back the todo page during this release phase? > > During the last couple of releases I simply didn't have time to do > everything and this was one of the things that fell by the wayside. > > After the dust from 7.1 settled we started to make arrangements for someone > else to set this up and watch over it for us during the release. It might > take him a little time to get rolling with it (as in it might not appear > immediately upon the release cycle starting) but hopefully we will have > something along these lines come back at some point during this release. While such lists do have downsides ("you shipped even though problem X on your showstopper list wasn't fixed!") they also have some nice advantages -- one is focusing user community testing time and developer community fixing time. At least in the case of 7.2, though, I'm not aware of any major outstanding problems, so focuses for testing are presumably just in the areas of major change from 7.1. Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 14:30:26 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BE49106566B for ; Wed, 18 Mar 2009 14:30:26 +0000 (UTC) (envelope-from amarat@ksu.ru) Received: from mx.kzn.ru (mx.kzn.ru [194.85.243.38]) by mx1.freebsd.org (Postfix) with ESMTP id 721098FC16 for ; Wed, 18 Mar 2009 14:30:25 +0000 (UTC) (envelope-from amarat@ksu.ru) X-IronPort-AV: E=Sophos;i="4.38,384,1233522000"; d="scan'208";a="2389646" Received: from mail.ksu.ru (HELO ruby.ksu.ru) ([193.232.252.56]) by iout.kzn.ru with ESMTP; 18 Mar 2009 17:30:23 +0300 X-Pass-Through: Kazan State University Network Received: from zealot.ksu.ru ([194.85.245.161]) by ksu.ru (8.13.4/8.13.4) with ESMTP id n2IESUKt018945; Wed, 18 Mar 2009 14:28:40 GMT Received: from zealot.ksu.ru (localhost.lnet [127.0.0.1]) by zealot.ksu.ru (8.14.3/8.14.3) with ESMTP id n2IEToHp043716; Wed, 18 Mar 2009 17:29:51 +0300 (MSK) (envelope-from amarat@ksu.ru) Message-ID: <49C1055E.7000303@ksu.ru> Date: Wed, 18 Mar 2009 17:29:50 +0300 From: "Marat N.Afanasyev" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.19) Gecko/20090124 SeaMonkey/1.1.14 MIME-Version: 1.0 To: Pete French References: In-Reply-To: Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: ns@got2get.net, freebsd-stable@freebsd.org Subject: Re: Crazy "interrupt storm detected" on atapci0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 14:30:26 -0000 Pete French wrote: >> as I supposed in previous message your MB is MicroStar product. So I >> insist that you read thread [1] in freebsd-stable named 'Interrupt >> storm' started by Dan Langille > > I (still) have the same problem on my MSI Platinum .... and having re-read > all of those threads in case I missed somehting, there still isn't a > solution there. All the suggested ones (using 'Linux" as ACPI name, moving > com interrupt ports, disabling onboard ether) are reported as failing > after a few days. Luckily I have a colleague who can reboot the remote > machine, and that has been my solution - but it is not really workable > long term. > > (actually this has reminded me to check dmesg, and it seems I need to > reboot this machine due to an interrupt storm right now). > > -pete. > _______________________________________________ > 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" > did you try to make a kernel with KDB and DDB? DEBUG-kernel? it seems that turning off optimization and place a debugging stuff in kernel solved my problem. -- SY, marat From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 14:56:49 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 443A3106564A for ; Wed, 18 Mar 2009 14:56:49 +0000 (UTC) (envelope-from wolfgang@lyxys.ka.sub.org) Received: from saturn.lyxys.ka.sub.org (saturn.lyxys.ka.sub.org [217.29.35.151]) by mx1.freebsd.org (Postfix) with ESMTP id 9B5DC8FC16 for ; Wed, 18 Mar 2009 14:56:48 +0000 (UTC) (envelope-from wolfgang@lyxys.ka.sub.org) Received: from juno.lyxys.ka.sub.org (juno.lyxys.ka.sub.org [IPv6:2001:5c0:8521:0:20f:feff:fe0e:7312]) by saturn.lyxys.ka.sub.org (8.14.2/8.14.2) with ESMTP id n2IEuYOo072829 for ; Wed, 18 Mar 2009 15:56:34 +0100 (CET) (envelope-from wolfgang@lyxys.ka.sub.org) Received: from juno.lyxys.ka.sub.org (localhost [127.0.0.1]) by juno.lyxys.ka.sub.org (8.14.3/8.14.3) with ESMTP id n2IEuXar024728 for ; Wed, 18 Mar 2009 15:56:33 +0100 (CET) (envelope-from wolfgang@lyxys.ka.sub.org) Received: (from wolfgang@localhost) by juno.lyxys.ka.sub.org (8.14.3/8.14.3/Submit) id n2IEuXKg024727 for freebsd-stable@freebsd.org; Wed, 18 Mar 2009 15:56:33 +0100 (CET) (envelope-from wolfgang@lyxys.ka.sub.org) X-Authentication-Warning: juno.lyxys.ka.sub.org: wolfgang set sender to wolfgang@lyxys.ka.sub.org using -f Date: Wed, 18 Mar 2009 15:56:33 +0100 From: Wolfgang Zenker To: freebsd-stable Message-ID: <20090318145633.GA24687@lyxys.ka.sub.org> References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> <1237380019.30298.3.camel@bauer.cse.buffalo.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Organization: private site Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 14:56:49 -0000 * Robert Watson [090318 14:38]: > On Wed, 18 Mar 2009, Ken Smith wrote: >> On Wed, 2009-03-18 at 10:23 +0100, kama wrote: >>> Is it possible to get back the todo page during this release phase? >> During the last couple of releases I simply didn't have time to do >> everything and this was one of the things that fell by the wayside. >> After the dust from 7.1 settled we started to make arrangements for >> someone else to set this up and watch over it for us during the release. >> It might take him a little time to get rolling with it (as in it might not >> appear immediately upon the release cycle starting) but hopefully we will >> have something along these lines come back at some point during this >> release. > While such lists do have downsides ("you shipped even though problem X on > your showstopper list wasn't fixed!") they also have some nice advantages > -- one is focusing user community testing time and developer community > fixing time. At least in the case of 7.2, though, I'm not aware of any > major outstanding problems, so focuses for testing are presumably just in > the areas of major change from 7.1. One change I have not seen mentioned on stable yet is that we now have localized libc messages. Might be a good idea to have a look at scripts that expect to see certain outputs from commands. Wolfgang From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 15:09:19 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 981CD106566B for ; Wed, 18 Mar 2009 15:09:19 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 5F47F8FC14 for ; Wed, 18 Mar 2009 15:09:19 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LjxOK-000Oo3-ME; Wed, 18 Mar 2009 15:09:12 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LjxOK-0000jG-Ku; Wed, 18 Mar 2009 15:09:12 +0000 To: amarat@ksu.ru In-Reply-To: <49C1055E.7000303@ksu.ru> Message-Id: From: Pete French Date: Wed, 18 Mar 2009 15:09:12 +0000 Cc: ns@got2get.net, freebsd-stable@freebsd.org Subject: Re: Crazy "interrupt storm detected" on atapci0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 15:09:19 -0000 > did you try to make a kernel with KDB and DDB? DEBUG-kernel? it seems > that turning off optimization and place a debugging stuff in kernel > solved my problem. I turned off all optimisation, but I didnt try compiling in the debuggers, no. I will give that a try and see if it gets rid of the problem. A bit worrying if so though! -pete. From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 17:01:01 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 057CD1065674; Wed, 18 Mar 2009 17:01:01 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id C61508FC0C; Wed, 18 Mar 2009 17:01:00 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2IGxc9l072762 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Mar 2009 12:59:38 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Greg Rivers In-Reply-To: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-WD5PCp4IGYYvsDCzJ9r0" Organization: FreeBSD Date: Wed, 18 Mar 2009 12:00:43 -0500 Message-Id: <1237395643.1738.3.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 17:01:01 -0000 --=-WD5PCp4IGYYvsDCzJ9r0 Content-Type: multipart/mixed; boundary="=-11zqm2DltEAqTjQtloSC" --=-11zqm2DltEAqTjQtloSC Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2009-03-17 at 18:24 -0500, Greg Rivers wrote: > On Tue, 17 Mar 2009, Robert Noland wrote: >=20 > > On Tue, 2009-03-17 at 12:20 -0500, Greg Rivers wrote: > >> On Sat, 10 Jan 2009, Robert Noland wrote: > >> > >>> I just merged drm (Direct Rendering) from HEAD. > >>> > >>> - Support for latest Intel chips > >>> - Support and fixes for many AMD/ATI chips r500 and below > >>> - Support AMD/ATI IGP based chips (rs690/rs485) > >>> - Lots of code cleanups > >>> - Lots of other fixes and changes since the existing drm > >>> is 2+ years old > >>> > >>> If you are experiencing a "garbled" screen with certain pci/pci-e bas= ed > >>> radeons, I have another patch in HEAD that isn't included yet. > >>> > >> > >> I have a workstation with a [Radeon X600 (PCIE)] card. The X display = has > >> been garbled since these DRM updates went in in January, and remains > >> garbled with 7.1-STABLE as of yesterday. As a work-around, I'm runnin= g > >> the up-to-date 7.1-STABLE system (both world and ports) with a > >> 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and X > >> works great; I even see dramatically improved performance with the new > >> Xorg and EXA acceleration. Your work is much appreciated. > >> > >> But the garbled display with the recent DRM still plagues me. > >> > >> [snip] > > > > Could you try the attached patch. > > >=20 > Unfortunately, there is no noticeable difference with this patch. >=20 >=20 > > Also, I'm guessing that this is a PCI based card, right? Also, it isn'= t=20 > > an integrated model? > > >=20 > Yes, this is a PCIEx16 card in a HP Compaq dc7600 desktop PC, not a=20 > motherboard integrated adapter. >=20 > Thanks for your help. I'm willing to spend some time debugging this;=20 > please let me know if there's more information I can provide or other=20 > tests or patches I can try. Ok, try this patch... I asked the folks from AMD and they agree that this shouldn't be needed on an RV370, but we will give it a try... This is what fixed the garbled display on the IGP chips. robet. > --=20 > Greg Rivers --=20 Robert Noland FreeBSD --=-11zqm2DltEAqTjQtloSC Content-Disposition: attachment; filename="drm-rv370-test.patch" Content-Transfer-Encoding: base64 Content-Type: text/x-patch; name="drm-rv370-test.patch"; charset="us-ascii" SW5kZXg6IGRldi9kcm0vYXRpX3BjaWdhcnQuYw0KPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGRldi9kcm0vYXRp X3BjaWdhcnQuYwkocmV2aXNpb24gMTg5OTMzKQ0KKysrIGRldi9kcm0vYXRpX3BjaWdhcnQuYwko d29ya2luZyBjb3B5KQ0KQEAgLTgzLDcgKzgzLDcgQEANCiAJfQ0KIA0KIAlmbGFncyA9IEJVU19E TUFfTk9XQUlUIHwgQlVTX0RNQV9aRVJPOw0KLQlpZiAoZ2FydF9pbmZvLT5nYXJ0X3JlZ19pZiA9 PSBEUk1fQVRJX0dBUlRfSUdQKQ0KKy8qCWlmIChnYXJ0X2luZm8tPmdhcnRfcmVnX2lmID09IERS TV9BVElfR0FSVF9JR1ApICovDQogCSAgICBmbGFncyB8PSBCVVNfRE1BX05PQ0FDSEU7DQogCQ0K IAlyZXQgPSBidXNfZG1hbWVtX2FsbG9jKGRtYWgtPnRhZywgJmRtYWgtPnZhZGRyLCBmbGFncywg JmRtYWgtPm1hcCk7DQo= --=-11zqm2DltEAqTjQtloSC-- --=-WD5PCp4IGYYvsDCzJ9r0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknBKLsACgkQM4TrQ4qfROP20QCeMLTYwkoPVYxJFwl5EEnQPPcv wUgAnA58ACGRgXr10mEpxDpe8tznSj+z =ASP1 -----END PGP SIGNATURE----- --=-WD5PCp4IGYYvsDCzJ9r0-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 17:10:18 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1AC5106574A for ; Wed, 18 Mar 2009 17:10:18 +0000 (UTC) (envelope-from josep@bellera.cat) Received: from mail.bellera.cat (174.Red-80-38-146.staticIP.rima-tde.net [80.38.146.174]) by mx1.freebsd.org (Postfix) with ESMTP id 6D1CA8FC19 for ; Wed, 18 Mar 2009 17:10:18 +0000 (UTC) (envelope-from josep@bellera.cat) Received: from localhost (unknown [127.0.0.1]) by mail.bellera.cat (Postfix) with ESMTP id 3880F409CA8 for ; Wed, 18 Mar 2009 17:43:35 +0100 (CET) Received: from mail.bellera.cat ([127.0.0.1]) by localhost (mail.bellera.cat [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 64517-01 for ; Wed, 18 Mar 2009 17:43:34 +0100 (CET) Received: from mail.bellera.cat (localhost [127.0.0.1]) by mail.bellera.cat (Postfix) with ESMTP id 0FB7F409CB2 for ; Wed, 18 Mar 2009 17:43:34 +0100 (CET) From: "Josep Pujadas i Jubany" To: freebsd-stable@freebsd.org Date: Wed, 18 Mar 2009 17:43:34 +0100 Message-Id: <20090318163944.M277@bellera.cat> In-Reply-To: <20090317213903.M57690@bellera.cat> References: <20090317213903.M57690@bellera.cat> X-Mailer: Open WebMail 2.32 20040525 X-OriginatingIP: 83.56.83.122 (super) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: Can't compile rtmpdump source X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 17:10:21 -0000 Hello! I can't compile rtmpdump source on FreeBSD: http://sourceforge.net/projects/rtmpdump/ I obtain the following output: # gmake g++ -Wall -c -o bytes.o bytes.cpp In file included from bytes.cpp:25: bytes.h:37:20: endian.h: No such file or directory bytes.h:38:22: byteswap.h: No such file or directory bytes.h:45:2: #error "Undefined byte and float word order!" bytes.cpp: In function `void WriteNumber(char*, double)': bytes.cpp:34: warning: converting to `uint64_t' from `double' bytes.cpp: In function `int ReadInt32LE(const char*)': bytes.cpp:96: error: `__bswap_32' was not declared in this scope bytes.cpp:96: warning: unused variable '__bswap_32' bytes.cpp: In function `int EncodeInt32LE(char*, int)': bytes.cpp:107: error: `__bswap_32' was not declared in this scope bytes.cpp:107: warning: unused variable '__bswap_32' gmake: *** [bytes.o] Error 1 The developper told me: Currently the endian support does not include FreeBSD automatically, but you can compile for any system by defining the correct byte order and float word order. You also need to make sure the swap macros are compiled as well (they are in the Windows setion so far). I will add FreeBSD support in the next release, but it shouldn't be to hard to compile v1.4 on your own. Btw, uncomment _DEBUG in log.h to compile in release mode (I forgot to do that). I have no idea how to do the changes. Here is the source code: http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/r /rt/rtmpdump/rtmpdump-v1.4.tar.gz Regards, Josep Pujadas From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 17:38:34 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52A98106564A for ; Wed, 18 Mar 2009 17:38:34 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-bw0-f164.google.com (mail-bw0-f164.google.com [209.85.218.164]) by mx1.freebsd.org (Postfix) with ESMTP id A341C8FC1E for ; Wed, 18 Mar 2009 17:38:33 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by bwz8 with SMTP id 8so151662bwz.43 for ; Wed, 18 Mar 2009 10:38:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=DwvvX6Re8vrhL9eg8lAR6ooUxp4JC2t+AR5G1TJcsk8=; b=wBnQq1bD2I/DVIguKkZInsFcg4DOgR4asf/MTdnPa4zXLPE7GBNXVq04uubG2Flixv Tu3IDgonrGKjSFrNcJBJjnsMK3NYjNtzUn+upBZSyqscvp4n4r/HZCUGezpgKKwc4s/V FkGciU14rDq4D+orlY1xCPrNZudPS2PjMSJ+4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=xPRBVSps7qFWqgQUw9Gm5jiNK20zsBqvqECi2QRPWT79CN5RdRQCGPI/H0dsjrMF9/ nbdUiunj3ccS0xLwG5Bnqm2TCJY68SEFO7aphUmXWOjymiRbcxlvD156a68u3Q0pwDGp 3obgTHUj3zbEuCbNDWVF8ukoq9kWVB3eBvKRw= MIME-Version: 1.0 Received: by 10.103.222.1 with SMTP id z1mr664837muq.100.1237397912600; Wed, 18 Mar 2009 10:38:32 -0700 (PDT) In-Reply-To: <20090318163944.M277@bellera.cat> References: <20090317213903.M57690@bellera.cat> <20090318163944.M277@bellera.cat> Date: Wed, 18 Mar 2009 20:38:32 +0300 Message-ID: From: pluknet To: Josep Pujadas i Jubany Content-Type: multipart/mixed; boundary=00163641759106c0f3046568278d Cc: freebsd-stable@freebsd.org Subject: Re: Can't compile rtmpdump source X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 17:38:35 -0000 --00163641759106c0f3046568278d Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, Josep. Try an attached patch. 2009/3/18 Josep Pujadas i Jubany : > Hello! > > I can't compile rtmpdump source on FreeBSD: > > http://sourceforge.net/projects/rtmpdump/ > > I obtain the following output: > > # gmake > g++ -Wall -c -o bytes.o bytes.cpp > In file included from bytes.cpp:25: > bytes.h:37:20: endian.h: No such file or directory > bytes.h:38:22: byteswap.h: No such file or directory > bytes.h:45:2: #error "Undefined byte and float word order!" > bytes.cpp: In function `void WriteNumber(char*, double)': > bytes.cpp:34: warning: converting to `uint64_t' from `double' > bytes.cpp: In function `int ReadInt32LE(const char*)': > bytes.cpp:96: error: `__bswap_32' was not declared in this scope > bytes.cpp:96: warning: unused variable '__bswap_32' > bytes.cpp: In function `int EncodeInt32LE(char*, int)': > bytes.cpp:107: error: `__bswap_32' was not declared in this scope > bytes.cpp:107: warning: unused variable '__bswap_32' > gmake: *** [bytes.o] Error 1 > > The developper told me: > > Currently the endian support does not include FreeBSD automatically, but you > can compile for any system by defining the correct byte order and float word > order. You also need to make sure the swap macros are compiled as well (they > are in the Windows setion so far). I will add FreeBSD support in the next > release, but it shouldn't be to hard to compile v1.4 on your own. > Btw, uncomment _DEBUG in log.h to compile in release mode (I forgot to do > that). > > I have no idea how to do the changes. > > Here is the source code: > > http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/r > /rt/rtmpdump/rtmpdump-v1.4.tar.gz > > Regards, > > Josep Pujadas > > _______________________________________________ > 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" > -- wbr, pluknet --00163641759106c0f3046568278d Content-Type: application/octet-stream; name="rtmpdump_fbsd.patch" Content-Disposition: attachment; filename="rtmpdump_fbsd.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_fsgaqfb20 ZGlmZiAtdXJwTiBydG1wZHVtcC5vcmlnL2J5dGVzLmggcnRtcGR1bXAvYnl0ZXMuaAotLS0gcnRt cGR1bXAub3JpZy9ieXRlcy5oCVdlZCBNYXIgMTggMjA6MjA6NTQgMjAwOQorKysgcnRtcGR1bXAv Ynl0ZXMuaAlXZWQgTWFyIDE4IDIwOjI4OjMzIDIwMDkKQEAgLTMsNyArMyw3IEBACiAKICNpbmNs dWRlIDxzdGRpbnQuaD4KIAotI2lmZGVmIFdJTjMyCisjaWYgZGVmaW5lZCAoV0lOMzIpIHx8IGRl ZmluZWQoX19GcmVlQlNEX18pCiAjZGVmaW5lIF9fTElUVExFX0VORElBTiAxMjM0CiAjZGVmaW5l IF9fQklHX0VORElBTiAgICA0MzIxCiAjZGVmaW5lIF9fQllURV9PUkRFUiBfX0xJVFRMRV9FTkRJ QU4KZGlmZiAtdXJwTiBydG1wZHVtcC5vcmlnL3J0bXAuaCBydG1wZHVtcC9ydG1wLmgKLS0tIHJ0 bXBkdW1wLm9yaWcvcnRtcC5oCVdlZCBNYXIgMTggMjA6MjA6NTQgMjAwOQorKysgcnRtcGR1bXAv cnRtcC5oCVdlZCBNYXIgMTggMjA6MzU6MTMgMjAwOQpAQCAtMjYsNiArMjYsMTEgQEAKIC8vI2lu Y2x1ZGUgPHZlY3Rvcj4KIAogI2lmZGVmIFdJTjMyCisjZWxpZiBkZWZpbmVkIChfX0ZyZWVCU0Rf XykKKyNpbmNsdWRlIDxzeXMvc29ja2V0Lmg+CisjaW5jbHVkZSA8bmV0aW5ldC9pbi5oPgorI2lu Y2x1ZGUgPGFycGEvaW5ldC5oPgorI2luY2x1ZGUgPG5ldGRiLmg+CiAjZWxzZQogLy8jaW5jbHVk ZSA8c3lzL3R5cGVzLmg+CiAvLyNpbmNsdWRlIDxzeXMvc29ja2V0Lmg+Cg== --00163641759106c0f3046568278d-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 17:43:50 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECF591065674; Wed, 18 Mar 2009 17:43:50 +0000 (UTC) (envelope-from stef-list@memberwebs.com) Received: from mx.npubs.com (mail.npubs.com [209.66.100.224]) by mx1.freebsd.org (Postfix) with ESMTP id D4C7A8FC13; Wed, 18 Mar 2009 17:43:50 +0000 (UTC) (envelope-from stef-list@memberwebs.com) Received: from mx.npubs.com (avhost [209.66.100.194]) by mx.npubs.com (Postfix) with ESMTP id 5D527EFB6E8; Wed, 18 Mar 2009 17:22:23 +0000 (UTC) Received: from northstar-srv2 (unknown [172.27.2.11]) by mx.npubs.com (Postfix) with ESMTP id B4B08EFB6DA; Wed, 18 Mar 2009 17:22:22 +0000 (UTC) From: Stef Walter User-Agent: Thunderbird 2.0.0.19 (X11/20090105) MIME-Version: 1.0 To: Robert Watson References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20090318172222.B4B08EFB6DA@mx.npubs.com> X-Virus-Scanned: ClamAV using ClamSMTP Date: Wed, 18 Mar 2009 17:22:23 +0000 (UTC) Cc: kama , Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: stef@memberwebs.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 17:43:51 -0000 Robert Watson wrote: > One of the most important things for us to keep an eye on in this > release is that the boot loader now works on a number of pieces of > hardware on which it reressed for 6.4/7.1. If it proves successful, > we'll likely also do errata notes and roll new ISOs for 6.4. I have a machine that I updated to 7-STABLE the other day. The boot loader didn't work until I copied /boot files from an old FreeBSD. I'd like to participate in getting this fixed. Is there a place that work is being done on this? Bug reports, info needed, person to contact etc.? Cheers, Stef From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 18:07:47 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84280106566B; Wed, 18 Mar 2009 18:07:47 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 531A58FC0A; Wed, 18 Mar 2009 18:07:47 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id F2B2946B82; Wed, 18 Mar 2009 14:07:46 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2II7TJt007423; Wed, 18 Mar 2009 14:07:40 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-stable@freebsd.org Date: Wed, 18 Mar 2009 11:56:58 -0400 User-Agent: KMail/1.9.7 References: <20090312043646.GB8352@pjdesk.au.alcatel-lucent.com> <200903120846.50630.jhb@freebsd.org> <20090316021412.GI5857@pjdesk.au.alcatel-lucent.com> In-Reply-To: <20090316021412.GI5857@pjdesk.au.alcatel-lucent.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903181156.58853.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 18 Mar 2009 14:07:40 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9130/Wed Mar 18 09:51:53 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Alan Cox , Peter Jeremy Subject: Re: 7.1 panic "vm_page_startup: inconsistent page counts" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:07:47 -0000 On Sunday 15 March 2009 10:14:12 pm Peter Jeremy wrote: > On 2009-Mar-12 08:46:50 -0400, John Baldwin wrote: > >On Thursday 12 March 2009 12:36:46 am Peter Jeremy wrote: > >> I'm trying to upgrade an 11 month old FreeBSD 7 image in a VMware > >> 4.5.2 guest to an up-to-date -stable and it panics as above. I've > >> added a printf to report the two counts and there's a difference of > >> one page. I don't have any problems with the old 7-stable image or > >> up-to-date 6-stable or -current using the same VMware version. > >> > >> A screendump for a verbose boot can be found at > >> http://imagebin.ca/img/wahNNw.gif > >> > >> Can I safely delete the assert? > > > >I don't think so, I would report it to Alan. The one earlier report of this > >didn't include the detail that it was only off by one page. > > This is a bit moot now since you've disabled the test but rolling back > to a kernel from 26th Feb (before the superpages MFC) doesn't have the > page count discrepancy. Ok. I think the discrepancy is due to the memory being reserved for the reservation table not being accounted for in 'npages'. I'm just going to remove the assertion in 7 to match what is in 8. -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 18:07:53 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51299106564A for ; Wed, 18 Mar 2009 18:07:53 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 21BFF8FC16 for ; Wed, 18 Mar 2009 18:07:53 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id C3FF446B85; Wed, 18 Mar 2009 14:07:52 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2II7TJu007423; Wed, 18 Mar 2009 14:07:46 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-stable@freebsd.org Date: Wed, 18 Mar 2009 12:01:17 -0400 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200903181201.17975.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 18 Mar 2009 14:07:47 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9130/Wed Mar 18 09:51:53 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: pluknet Subject: Re: bge0: EEPROM read timed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:07:53 -0000 On Monday 16 March 2009 8:08:26 am pluknet wrote: > 2009/3/16 pluknet : > > Hi. > > > > I got this on today's RELENG_6 with Broadcom BCM5722 A0, ASIC rev. 0xa2= 00. > > > > From dmesg (bge related): > > > > bge0: mem > > 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 > > bge0: firmware handshake timed out, found 0x4b657654 > > bge0: firmware handshake timed out, found 0x4b657654 > > bge0: EEPROM read timed out > > bge0: failed to read EEPROM > > device_attach: bge0 attach returned 6 > > bge1: mem > > 0xe8600000-0xe860ffff irq 21 at device 1.0 on pci3 > > miibus0: on bge1 > > brgphy0: on miibus0 > > brgphy0: =A010baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, > > 1000baseT-FDX, auto > > bge1: Ethernet address: 00:21:5e:4d:05:c8 > > > > > > any hints? > > > > P.S. I see EEPROM timeout fixes were already merged to RELENG_6 (I > > have post-fix version certainly). > > May that issue be somehow related? > > >=20 > I guess it's a regression. Below are my speculations. >=20 > I tried to build on 6.2-R the bge(4) sources checked from later RELENG_6 > just after BCM5722 support (from if_bgereg.h 1.36.2.11/ if_bge.c1.91.2.26) > in order to backport BCM5722 support into 6.2-R. After some tweaks it > was built, so.. Can you further narrow down where the regression occurs? =2D-=20 John Baldwin From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 18:07:59 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54A12106578E for ; Wed, 18 Mar 2009 18:07:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 24C428FC14 for ; Wed, 18 Mar 2009 18:07:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id C683846B66; Wed, 18 Mar 2009 14:07:58 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2II7TJv007423; Wed, 18 Mar 2009 14:07:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-stable@freebsd.org Date: Wed, 18 Mar 2009 12:02:40 -0400 User-Agent: KMail/1.9.7 References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> In-Reply-To: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903181202.40634.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 18 Mar 2009 14:07:53 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9130/Wed Mar 18 09:51:53 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Dan Allen Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:07:59 -0000 On Monday 16 March 2009 1:59:25 pm Dan Allen wrote: > I saw that someone else had this happen last week... It is not a > hardware failure. > > While building the latest GCC 4.4 from /usr/ports/lang/gcc44 I got a > core dump with the message > > vm_page_insert: page already inserted > > I build this port every week on a Toshiba laptop (1.8GHz Core 2 Duo, 1 > GB RAM, 160 GB HD, plenty of free space, RELENG_7). I have never seen > this until today. Just before building this port I completely built > the kernel and world and installed them, so I am as up-to-date as you > could be. > > I suspect recent changes to vm code... perhaps in /usr/src/sys/vm/ > vm_meter.c or vm_page.c ? > > The compressed core dump is 41 MB. When I have seen this panic on machines in the past it was caused by bad RAM or another hardware problem. -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 18:10:47 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDEA31065672 for ; Wed, 18 Mar 2009 18:10:47 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 839AF8FC12 for ; Wed, 18 Mar 2009 18:10:47 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2II9PeZ073155 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Mar 2009 14:09:25 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Michael Butler In-Reply-To: <49C057E9.6010402@protected-networks.net> References: <49C057E9.6010402@protected-networks.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-F9MNV0b56ctObuWIUUqY" Organization: FreeBSD Date: Wed, 18 Mar 2009 13:10:30 -0500 Message-Id: <1237399830.1738.11.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-stable Subject: Re: drm change breaks old ATI? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:10:48 -0000 --=-F9MNV0b56ctObuWIUUqY Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2009-03-17 at 22:09 -0400, Michael Butler wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >=20 > Seems that the new drm schema requires an interrupt to attach. >=20 > "dmesg" returns: >=20 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > agp0: on hostb0 > pcib1: at device 1.0 on pci0 > pci1: on pcib1 > vgapci0: port 0x9000-0x90ff mem > 0xd1000000-0xd1ffffff,0xd0100000-0xd0100fff at device 0.0 > on pci1 > drm0: <3D Rage Pro AGP 1X/2X> on vgapci0 > device_attach: drm0 attach returned 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >=20 > .. which corresponds to ENOENT and "lspci -vvv" gives: >=20 >=20 > 01:00.0 VGA compatible controller: ATI Technologies Inc 3D Rage Pro AGP > 1X/2X (rev 5c) (prog-if 00 [VGA controller]) > Subsystem: ATI Technologies Inc Rage Pro Turbo AGP 2X > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- > ParErr- Stepping+ SERR- FastB2B- DisINTx- > Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=3Dmedium >TAbort= - > SERR- Latency: 66 (2000ns min), Cache Line Size: 32 bytes >=20 > ** ---> Interrupt: pin ? routed to IRQ 255 >=20 > Region 0: Memory at d1000000 (32-bit, non-prefetchable) > Region 1: I/O ports at 9000 > Region 2: Memory at d0100000 (32-bit, non-prefetchable) > Capabilities: [50] AGP version 1.0 > Status: RQ=3D256 Iso- ArqSz=3D0 Cal=3D0 SBA+ ITACoh- GART= 64- > HTrans- 64bit- FW- AGP3- Rate=3Dx1,x2 > Command: RQ=3D1 ArqSz=3D0 Cal=3D0 SBA- AGP- GART64- 64bit= - FW- > Rate=3D >=20 > Didn't this used to work? Not that I'm aware of... I looked back to the code before I enabled msi and that part didn't change... so if it ever worked, it was a long time ago. robert. > Michael >=20 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (FreeBSD) >=20 > iEYEARECAAYFAknAV+gACgkQQv9rrgRC1JIiAwCdEmwDBPcTjd97vV3q3kz5kO8R > qA0An3RjPS/ra7CVRd6KfeuOuQoARaVm > =3Dh2qo > -----END PGP SIGNATURE----- > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" --=20 Robert Noland FreeBSD --=-F9MNV0b56ctObuWIUUqY Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknBORYACgkQM4TrQ4qfRONHGgCeLIrBXqFZwc0huRq+vuBTll2C fVwAn331BMcKg3o0pJMeMwTPckcQXjq9 =9bUK -----END PGP SIGNATURE----- --=-F9MNV0b56ctObuWIUUqY-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 18:42:15 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6A9E106568A for ; Wed, 18 Mar 2009 18:42:15 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8FD158FC18 for ; Wed, 18 Mar 2009 18:42:15 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n2IIbgjG054676; Wed, 18 Mar 2009 12:37:42 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 18 Mar 2009 12:38:13 -0600 (MDT) Message-Id: <20090318.123813.232926411.imp@bsdimp.com> To: pluknet@gmail.com From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: KLD cbb.ko: depends on exca - not available X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:42:16 -0000 In message: pluknet writes: : Hi. : : FreeBSD 7-STABLE. : : Subj message appears when I try to kldload cbb.ko and kernel : cannot find exca due to its non-existence. : The pccbb(4) manpage doesn't mention exca. : : make install exca helps with kldload, now: : cbb0: at device 1.0 on pci1 : cbb0: [ITHREAD] : : Would it be correct to add a new entry to the pccbb synopsis? Yes. exca has been required since at least 5.4, and likely as far back as 5.0. Warner : --- src/share/man/man4/pccbb.4.orig 2009-03-18 00:22:09.000000000 +0300 : +++ src/share/man/man4/pccbb.4 2009-03-18 00:22:42.000000000 +0300 : @@ -34,6 +34,7 @@ : .Cd device cbb : .Cd device pccard : .Cd device cardbus : +.Cd device exca : .Sh DESCRIPTION : The : .Nm : : : -- : wbr, : pluknet : _______________________________________________ : 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 Wed Mar 18 18:59:18 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02A6F106570B for ; Wed, 18 Mar 2009 18:59:18 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.freebsd.org (Postfix) with ESMTP id 91DCF8FC16 for ; Wed, 18 Mar 2009 18:59:17 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 335 invoked by uid 399); 18 Mar 2009 18:59:10 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 18 Mar 2009 18:59:10 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <49C1447C.6060002@FreeBSD.org> Date: Wed, 18 Mar 2009 11:59:08 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.19 (X11/20090312) MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG References: <200903161055.n2GAtHkt077732@lurza.secnetix.de> In-Reply-To: <200903161055.n2GAtHkt077732@lurza.secnetix.de> X-Enigmail-Version: 0.95.7 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: mergemaster annoyance or not? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 18:59:18 -0000 Oliver Fromme wrote: > Doug Barton wrote: > > The attached patch adds a -F option to automatically install files > > when only the FreeBSD $Ids differ. I've tested this and it seems to do > > what the people concerned about this issue are asking for. > > That seems to be a useful feature. Thanks. > You need to quote the dollar signs, though. Well, not only would that defeat the purpose they are there for, it wouldn't work. Perhaps you missed the bit where I said that I actually tested this? :) > However, maybe the best solution is to add a new keyword > for mergemaster.rc, so the user can exactly specify which > kind of changes should be always installed. That's an interesting idea, but I think that the number of times that there is a nonfunctional change other than to the VCS Id are very small, and I don't want to complicate this more than it needs to be. Please remember that we're dealing with two very different groups of users. One is the "power user" who updates frequently and can certainly hack this sort of thing themselves if they really want it. The other is the "average" user who only updates once or twice a year, usually to a new release, occasionally to a new patch level, etc. The vast majority of our users are in the latter category, and they need a simple tool with a minimum of foot-shooting capacity. Doug -- This .signature sanitized for your protection From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 19:04:12 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5118A10656C2 for ; Wed, 18 Mar 2009 19:04:12 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout018.mac.com (asmtpout018.mac.com [17.148.16.93]) by mx1.freebsd.org (Postfix) with ESMTP id 3C3248FC14 for ; Wed, 18 Mar 2009 19:04:12 +0000 (UTC) (envelope-from cswiger@mac.com) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Received: from cswiger1.apple.com ([17.227.140.124]) by asmtp018.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0KGP00BI3UAZI900@asmtp018.mac.com> for freebsd-stable@freebsd.org; Wed, 18 Mar 2009 12:04:12 -0700 (PDT) Message-id: <829202F5-E196-4911-90CD-5BB56DD48D31@mac.com> From: Chuck Swiger To: pluknet In-reply-to: Date: Wed, 18 Mar 2009 12:04:11 -0700 References: <20090317213903.M57690@bellera.cat> <20090318163944.M277@bellera.cat> X-Mailer: Apple Mail (2.930.3) Cc: Josep Pujadas i Jubany , freebsd-stable@freebsd.org Subject: Re: Can't compile rtmpdump source X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 19:04:12 -0000 On Mar 18, 2009, at 10:38 AM, pluknet wrote: > Hi, Josep. Try an attached patch. FreeBSD runs on both big and little-endian architectures; please include instead, which will pull in machine-specific headers and #define _BYTE_ORDER to _LITTLE_ENDIAN or _BIG_ENDIAN as appropriate. Regards, -- -Chuck From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 19:41:16 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 437941065670 for ; Wed, 18 Mar 2009 19:41:16 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-fx0-f167.google.com (mail-fx0-f167.google.com [209.85.220.167]) by mx1.freebsd.org (Postfix) with ESMTP id 758A18FC1A for ; Wed, 18 Mar 2009 19:41:15 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by fxm11 with SMTP id 11so196483fxm.43 for ; Wed, 18 Mar 2009 12:41:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=rS5XjmkJGGrDVLg2hjEAtpVyWY55Tm+XY29LIHsrynw=; b=YJwT8olF9UE85c/s/U0XG65bC6NMsx8DDZZJk2L92Zr9aBVItkk/ZCcam6YhPGdD4f chC+BnFPUyG/6olbHB3Vg1vWnlstiAGLMi4gB6fn5uNDxGR9436HucD/4QokTd6YueLm kwapc/OOTQl7pzfkgJZAl3QWpcAKz26k/R8aM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=TQkNljjNKH6gvHF60eeoDDqXHQIUbVKXqyg2H9Wa3Xwlr6Hrz+NqIPWbPbH2jpqQa5 io/ezfsl8YrP964tdtHp4nXhFfkl79l+4belt9zW7507/fQs3ZCJyWhBftlQ6fH+sP7I u/ysREAeGNU+cVZ7w+klEgJZVXx9zZF3wy0ws= MIME-Version: 1.0 Received: by 10.103.121.19 with SMTP id y19mr730431mum.56.1237405274366; Wed, 18 Mar 2009 12:41:14 -0700 (PDT) In-Reply-To: <200903181201.17975.jhb@freebsd.org> References: <200903181201.17975.jhb@freebsd.org> Date: Wed, 18 Mar 2009 22:41:14 +0300 Message-ID: From: pluknet To: John Baldwin Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: bge0: EEPROM read timed X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 19:41:16 -0000 2009/3/18 John Baldwin : > On Monday 16 March 2009 8:08:26 am pluknet wrote: >> 2009/3/16 pluknet : >> > Hi. >> > >> > I got this on today's RELENG_6 with Broadcom BCM5722 A0, ASIC rev. 0xa200. >> > >> > From dmesg (bge related): >> > >> > bge0: mem >> > 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 >> > bge0: firmware handshake timed out, found 0x4b657654 >> > bge0: firmware handshake timed out, found 0x4b657654 >> > bge0: EEPROM read timed out >> > bge0: failed to read EEPROM >> > device_attach: bge0 attach returned 6 >> > bge1: mem >> > 0xe8600000-0xe860ffff irq 21 at device 1.0 on pci3 >> > miibus0: on bge1 >> > brgphy0: on miibus0 >> > brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, >> > 1000baseT-FDX, auto >> > bge1: Ethernet address: 00:21:5e:4d:05:c8 >> > >> > >> > any hints? >> > >> > P.S. I see EEPROM timeout fixes were already merged to RELENG_6 (I >> > have post-fix version certainly). >> > May that issue be somehow related? >> > >> >> I guess it's a regression. Below are my speculations. >> >> I tried to build on 6.2-R the bge(4) sources checked from later RELENG_6 >> just after BCM5722 support (from if_bgereg.h 1.36.2.11/ if_bge.c1.91.2.26) >> in order to backport BCM5722 support into 6.2-R. After some tweaks it >> was built, so.. > > Can you further narrow down where the regression occurs? I'm sorry, John. Today we moved to native 7.1-R installed from CD. I can only confirm now that there is no any visible problems now. bge0: mem 0xe8400000-0xe840ffff irq 16 at device 0.0 on pci2 miibus0: on bge0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto bge0: Ethernet address: 00:21:5e:4d:05:c7 bge0: [ITHREAD] bge1: mem 0xe8600000-0xe860ffff irq 21 at device 1.0 on pci3 miibus1: on bge1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto bge1: Ethernet address: 00:21:5e:4d:05:c8 bge1: [ITHREAD] bge0: link state changed to UP bge1: link state changed to UP [root@ ~]# sysctl -a | grep bge hw.bge.allow_asf: 0 dev.bge.0.%desc: Broadcom NetXtreme Gigabit Ethernet Controller, ASIC rev. 0xa200 dev.bge.0.%driver: bge dev.bge.0.%location: slot=0 function=0 handle=\_SB_.PCI0.EXP5.PXS5 dev.bge.0.%pnpinfo: vendor=0x14e4 device=0x165a subvendor=0x1014 subdevice=0x0378 class=0x020000 dev.bge.0.%parent: pci2 dev.bge.1.%desc: Broadcom NetXtreme Gigabit Ethernet Controller, ASIC rev. 0x1100 dev.bge.1.%driver: bge dev.bge.1.%location: slot=1 function=0 dev.bge.1.%pnpinfo: vendor=0x14e4 device=0x16c7 subvendor=0x1014 subdevice=0x026f class=0x020000 dev.bge.1.%parent: pci3 dev.bge.1.stats.FramesDroppedDueToFilters: 0 dev.bge.1.stats.DmaWriteQueueFull: 0 dev.bge.1.stats.DmaWriteHighPriQueueFull: 0 dev.bge.1.stats.NoMoreRxBDs: 0 dev.bge.1.stats.InputDiscards: 0 dev.bge.1.stats.InputErrors: 0 dev.bge.1.stats.RecvThresholdHit: 15574 dev.bge.1.stats.DmaReadQueueFull: 0 dev.bge.1.stats.DmaReadHighPriQueueFull: 0 dev.bge.1.stats.SendDataCompQueueFull: 0 dev.bge.1.stats.RingSetSendProdIndex: 0 dev.bge.1.stats.RingStatusUpdate: 15604 dev.bge.1.stats.Interrupts: 15604 dev.bge.1.stats.AvoidedInterrupts: 0 dev.bge.1.stats.SendThresholdHit: 0 dev.bge.1.stats.rx.Octets: 3478478 dev.bge.1.stats.rx.Fragments: 0 dev.bge.1.stats.rx.UcastPkts: 0 dev.bge.1.stats.rx.MulticastPkts: 0 dev.bge.1.stats.rx.FCSErrors: 0 dev.bge.1.stats.rx.AlignmentErrors: 0 dev.bge.1.stats.rx.xonPauseFramesReceived: 0 dev.bge.1.stats.rx.xoffPauseFramesReceived: 0 dev.bge.1.stats.rx.ControlFramesReceived: 0 dev.bge.1.stats.rx.xoffStateEntered: 0 dev.bge.1.stats.rx.FramesTooLong: 0 dev.bge.1.stats.rx.Jabbers: 0 dev.bge.1.stats.rx.UndersizePkts: 0 dev.bge.1.stats.rx.inRangeLengthError: 0 dev.bge.1.stats.rx.outRangeLengthError: 0 dev.bge.1.stats.tx.Octets: 0 dev.bge.1.stats.tx.Collisions: 0 dev.bge.1.stats.tx.XonSent: 0 dev.bge.1.stats.tx.XoffSent: 0 dev.bge.1.stats.tx.flowControlDone: 0 dev.bge.1.stats.tx.InternalMacTransmitErrors: 0 dev.bge.1.stats.tx.SingleCollisionFrames: 0 dev.bge.1.stats.tx.MultipleCollisionFrames: 0 dev.bge.1.stats.tx.DeferredTransmissions: 0 dev.bge.1.stats.tx.ExcessiveCollisions: 0 dev.bge.1.stats.tx.LateCollisions: 0 dev.bge.1.stats.tx.UcastPkts: 0 dev.bge.1.stats.tx.MulticastPkts: 0 dev.bge.1.stats.tx.BroadcastPkts: 0 dev.bge.1.stats.tx.CarrierSenseErrors: 0 dev.bge.1.stats.tx.Discards: 0 dev.bge.1.stats.tx.Errors: 0 dev.miibus.0.%parent: bge0 dev.miibus.1.%parent: bge1 FreeBSD 7.1-RELEASE -- wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 19:45:03 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E8D71065687 for ; Wed, 18 Mar 2009 19:45:03 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: from mail.utahbroadband.com (mail.utahbroadband.com [204.14.20.91]) by mx1.freebsd.org (Postfix) with ESMTP id D61C58FC1C for ; Wed, 18 Mar 2009 19:45:02 +0000 (UTC) (envelope-from danallen46@airwired.net) Received: (qmail 644 invoked by uid 89); 18 Mar 2009 19:39:45 -0000 Received: from unknown (HELO ?192.168.0.53?) (danallen46@airwired.net@66.29.174.6) by 0 with ESMTPA; 18 Mar 2009 19:39:45 -0000 From: Dan Allen To: FreeBSD-STABLE Mailing List In-Reply-To: <200903181202.40634.jhb@freebsd.org> References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> <200903181202.40634.jhb@freebsd.org> Message-Id: <875B312A-89DA-4E32-8505-FAF32670C871@airwired.net> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Wed, 18 Mar 2009 13:44:59 -0600 X-Mailer: Apple Mail (2.930.3) Cc: John Baldwin Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 19:45:03 -0000 On 18 Mar 2009, at 10:02 AM, John Baldwin wrote: > On Monday 16 March 2009 1:59:25 pm Dan Allen wrote: >> I saw that someone else had this happen last week... It is not a >> hardware failure. >> >> While building the latest GCC 4.4 from /usr/ports/lang/gcc44 I got a >> core dump with the message >> >> vm_page_insert: page already inserted >> >> I build this port every week on a Toshiba laptop (1.8GHz Core 2 >> Duo, 1 >> GB RAM, 160 GB HD, plenty of free space, RELENG_7). I have never >> seen >> this until today. Just before building this port I completely built >> the kernel and world and installed them, so I am as up-to-date as you >> could be. >> >> I suspect recent changes to vm code... perhaps in /usr/src/sys/vm/ >> vm_meter.c or vm_page.c ? >> >> The compressed core dump is 41 MB. > > When I have seen this panic on machines in the past it was caused by > bad RAM > or another hardware problem. Well, I have not been able to reproduce it. I ran builds on two different machines, and everything now works fine. I will keep my eye open for another occurrence, but for now we are at the end of the line on this. At least I am... Thanks to everyone for their help and ideas. Dan From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 20:02:03 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 734FB1065674; Wed, 18 Mar 2009 20:02:03 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 31BCC8FC12; Wed, 18 Mar 2009 20:02:03 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n2IK1wbw086617; Wed, 18 Mar 2009 16:01:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [64.7.128.103]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n2IK1wVk045484; Wed, 18 Mar 2009 16:01:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-stable.sentex.ca (Postfix, from userid 666) id 9314F1B5060; Wed, 18 Mar 2009 16:01:58 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090318200158.9314F1B5060@freebsd-stable.sentex.ca> Date: Wed, 18 Mar 2009 16:01:58 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [releng_7 tinderbox] failure on i386/i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 20:02:04 -0000 TB --- 2009-03-18 18:47:47 - tinderbox 2.6 running on freebsd-stable.sentex.ca TB --- 2009-03-18 18:47:47 - starting RELENG_7 tinderbox run for i386/i386 TB --- 2009-03-18 18:47:47 - cleaning the object tree TB --- 2009-03-18 18:48:22 - cvsupping the source tree TB --- 2009-03-18 18:48:22 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/RELENG_7/i386/i386/supfile TB --- 2009-03-18 18:48:32 - building world TB --- 2009-03-18 18:48:32 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-18 18:48:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-18 18:48:32 - TARGET=i386 TB --- 2009-03-18 18:48:32 - TARGET_ARCH=i386 TB --- 2009-03-18 18:48:32 - TZ=UTC TB --- 2009-03-18 18:48:32 - __MAKE_CONF=/dev/null TB --- 2009-03-18 18:48:32 - cd /src TB --- 2009-03-18 18:48:32 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 18 18:48:34 UTC 2009 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 18 19:52:08 UTC 2009 TB --- 2009-03-18 19:52:08 - generating LINT kernel config TB --- 2009-03-18 19:52:08 - cd /src/sys/i386/conf TB --- 2009-03-18 19:52:08 - /usr/bin/make -B LINT TB --- 2009-03-18 19:52:08 - building LINT kernel TB --- 2009-03-18 19:52:08 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-18 19:52:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-18 19:52:08 - TARGET=i386 TB --- 2009-03-18 19:52:08 - TARGET_ARCH=i386 TB --- 2009-03-18 19:52:08 - TZ=UTC TB --- 2009-03-18 19:52:08 - __MAKE_CONF=/dev/null TB --- 2009-03-18 19:52:08 - cd /src TB --- 2009-03-18 19:52:08 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 18 19:52:08 UTC 2009 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/fs/smbfs/smbfs_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/fs/udf/osta.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/fs/udf/udf_iconv.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/fs/udf/udf_vfsops.c cc1: warnings being treated as errors /src/sys/fs/udf/udf_vfsops.c: In function 'udf_vget': /src/sys/fs/udf/udf_vfsops.c:703: warning: implicit declaration of function 'VN_LOCK_ASHARE' /src/sys/fs/udf/udf_vfsops.c:703: warning: nested extern declaration of 'VN_LOCK_ASHARE' *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-18 20:01:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-18 20:01:57 - ERROR: failed to build lint kernel TB --- 2009-03-18 20:01:57 - 3716.00 user 388.73 system 4450.12 real http://tinderbox.des.no/tinderbox-releng_7-RELENG_7-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 21:43:20 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 131261065670 for ; Wed, 18 Mar 2009 21:43:20 +0000 (UTC) (envelope-from per.otterstrom@gmail.com) Received: from mail-bw0-f164.google.com (mail-bw0-f164.google.com [209.85.218.164]) by mx1.freebsd.org (Postfix) with ESMTP id 6A71B8FC14 for ; Wed, 18 Mar 2009 21:43:19 +0000 (UTC) (envelope-from per.otterstrom@gmail.com) Received: by bwz8 with SMTP id 8so239491bwz.43 for ; Wed, 18 Mar 2009 14:43:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=SsOYAliv19iQQgp0iZqfX1yKvG8H5FIqWmJibKylCik=; b=pCnDihNM76BvdOcaD7//O24D3DpFlza2hr6/RxII4PxDidSgHMgZ+ZfiRpz8ISOh3U pe5iF9VQu4UQ669o2vKId4oDxoAv/MPMxHjnv5Si9eSKX/gUVlW3ON9HYT8GiWwmMBvh GtvIUDEtRrKK5VKAbkBjLIGzUrPQ/Sbto+DbM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=wfEx7+iELjKU2QaETkIfPSyTVux4apuTmNIroKZBX9U8Ob9wsGfj7GunfOTN1qzs0j 76LjWe91mU5yWeXqg3wOWwoxtEeH4i8rMzG7hmN31ZjJsO5uTgOAcdtU4orDmSWBEBu+ 4cUAn9ofCmUnkhE/06ckcZEbBt8UYNFhldlHE= MIME-Version: 1.0 Received: by 10.223.116.205 with SMTP id n13mr1401955faq.103.1237410748697; Wed, 18 Mar 2009 14:12:28 -0700 (PDT) Date: Wed, 18 Mar 2009 22:12:28 +0100 Message-ID: From: =?ISO-8859-1?Q?Per_Otterstr=F6m?= To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Gigabit cardbus re nic fails to attach X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 21:43:20 -0000 Hi all. I'm running 7.1-RELEASE. When I plug in my D-Link DGE-660TD gigabit cardbus adapter I get: re0: port 0x4000-0x40ff mem 0xd0201000-0xd02011ff irq 11 at device 0.0 on cardbus1 re0: Chip rev. 0x10000000 re0: MAC rev. 0x00000000 re0: PHY write failed re0: PHY write failed re0: PHY read failed re0: MII without any phy! device_attach: re0 attach returned 6 Relevant part from pciconf -lv: re0@pci0:6:0:0: class=0x020000 card=0x43011186 chip=0x816910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RTL8110SB Single-Chip Gigabit LOM Ethernet Controller' class = network subclass = ethernet I've seen several patches for similar problems provided by Pyun YongHyeon, but I don't think any one of them are applicable in my case. Any advice appreciated. regards, Pelle From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 22:22:18 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 700FF1065676 for ; Wed, 18 Mar 2009 22:22:18 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id 487F68FC1F for ; Wed, 18 Mar 2009 22:22:18 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id ZZO46818 for ; Wed, 18 Mar 2009 16:22:18 -0600 Date: Wed, 18 Mar 2009 16:22:18 -0600 From: Squirrel To: freebsd-stable Message-ID: <6a6f24080afb0b1cc84cc145b674c58c@mail.isot.com> X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Crash!!! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 22:22:18 -0000 My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL 5.0.27. All of sudden MySQL quit and won't start. At the same time when logged in using SSH, it's looking for .bash_login and .bash_logout which it never did before, and will not chroot to user's home. Trying to manual start mysql causes: 090318 17:09:52 mysqld started 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission denied 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run database recovery 090318 17:09:52 [ERROR] bdb: fatal region error detected; run recovery 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) 090318 17:09:52 [ERROR] Can't start server: can't create PID file: Permission denied 090318 17:09:52 mysqld ended I tried db_recover, but it's not found. HELP!!! From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 22:44:30 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2F5710657C9 for ; Wed, 18 Mar 2009 22:44:30 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id 78A6D8FC08 for ; Wed, 18 Mar 2009 22:44:30 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id ZZK46830 for ; Wed, 18 Mar 2009 16:44:30 -0600 Date: Wed, 18 Mar 2009 16:44:30 -0600 From: Squirrel To: freebsd-stable Message-ID: <3e7f8d174bb6d9b691683a7e9a93aed7@mail.isot.com> X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Crash!!! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 22:44:31 -0000 Another thing, why is the error log shows bdb? Isn't that Berkerly DB? I didn't think I was using it. I went ahead and removed it, but rebooted the server. Only thing I can think is that I've installed virtualmin few days ago before this problem started. These are my file premissions: /home/ drwxrwxrwx 33 mysql mysql 1024 Mar 18 17:18 mysql .. /home/mysql/ [root@webserver /home/mysql]# ls -la total 143848 drwxrwxrwx 33 mysql mysql 1024 Mar 18 17:18 . drw-r--r-- 71 felix felix 1536 Mar 18 16:44 .. drwxrw-rw- 2 mysql mysql 2560 Nov 21 2007 centexhomes drwxrw-rw- 2 mysql mysql 2560 Oct 31 2007 centexrealtors drwxrw-rw- 2 mysql mysql 18432 Mar 9 15:08 devildates drwxrw-rw- 2 mysql mysql 14848 Feb 10 2008 dolphin drwxrw-rw- 2 mysql mysql 2048 Mar 3 2008 drugal2 drwxrw-rw- 2 mysql mysql 13824 Feb 28 2008 drup ... drwxrw-rw- 2 mysql mysql 1024 Oct 31 2007 treasure -rw-rw---- 1 mysql mysql 3785 Mar 18 17:18 webserver.isot.com.err -rwxrw-rw- 1 mysql mysql 83676 Mar 18 16:30 webserver.isot.com.err.bak -rwxrw-rw- 1 mysql mysql 5 Mar 17 11:27 webserver.isot.com.pid.bak drwxrw-rw- 2 mysql mysql 7168 Jun 11 2008 yourshows drwxrw-rw- 2 mysql mysql 2048 Mar 28 2008 yourshows_g2 -----Original message----- From: Squirrel squirrel@mail.isot.com Date: Wed, 18 Mar 2009 23:22:50 -0600 To: freebsd-stable freebsd-stable@freebsd.org Subject: Crash!!! > My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL 5.0.27. All of sudden MySQL quit and won't start. At the same time when logged in using SSH, it's looking for .bash_login and .bash_logout which it never did before, and will not chroot to user's home. > > Trying to manual start mysql causes: > > 090318 17:09:52 mysqld started > 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission denied > 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied > 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run database recovery > 090318 17:09:52 [ERROR] bdb: fatal region error detected; run recovery > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) > 090318 17:09:52 [ERROR] Can't start server: can't create PID file: Permission denied > 090318 17:09:52 mysqld ended > > I tried db_recover, but it's not found. HELP!!! > _______________________________________________ > 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 Wed Mar 18 23:07:41 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8F721065670 for ; Wed, 18 Mar 2009 23:07:41 +0000 (UTC) (envelope-from josep@bellera.cat) Received: from mail.bellera.cat (174.Red-80-38-146.staticIP.rima-tde.net [80.38.146.174]) by mx1.freebsd.org (Postfix) with ESMTP id 4A6E38FC15 for ; Wed, 18 Mar 2009 23:07:41 +0000 (UTC) (envelope-from josep@bellera.cat) Received: from localhost (unknown [127.0.0.1]) by mail.bellera.cat (Postfix) with ESMTP id 53FFE4099B1; Thu, 19 Mar 2009 00:07:39 +0100 (CET) Received: from mail.bellera.cat ([127.0.0.1]) by localhost (mail.bellera.cat [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 76130-02; Thu, 19 Mar 2009 00:07:38 +0100 (CET) Received: from mail.bellera.cat (localhost [127.0.0.1]) by mail.bellera.cat (Postfix) with ESMTP id 44A134099A2; Thu, 19 Mar 2009 00:07:38 +0100 (CET) From: "Josep Pujadas i Jubany" To: pluknet Date: Thu, 19 Mar 2009 00:07:38 +0100 Message-Id: <20090318230322.M3845@bellera.cat> In-Reply-To: References: <20090317213903.M57690@bellera.cat> <20090318163944.M277@bellera.cat> X-Mailer: Open WebMail 2.32 20040525 X-OriginatingIP: 83.56.83.122 (super) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=OPENWEBMAIL_ATT_0.803318776655942" Cc: freebsd-stable@freebsd.org Subject: Re: Can't compile rtmpdump source X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 23:07:43 -0000 This is a multi-part message in MIME format. ------=OPENWEBMAIL_ATT_0.803318776655942 Content-Type: text/plain; charset=iso-8859-1 On Wed, 18 Mar 2009 20:38:32 +0300, pluknet wrote > Hi, Josep. Try an attached patch. It works! Many thanks, pluknet !!!! A member of Spanish FreeBSD list sent me another patch. It works also. I attached it to this e-mail. Regards, Josep Pujadas ------=OPENWEBMAIL_ATT_0.803318776655942 Content-Type: application/octet-stream; name="rtmpdump.patch" Content-Disposition: attachment; filename="rtmpdump.patch" Content-Transfer-Encoding: base64 ZGlmZiAtdXIgcnRtcGR1bXAub3JpZy9ieXRlcy5oIHJ0bXBkdW1wLm5ldy9ieXRlcy5oCi0tLSBy dG1wZHVtcC5vcmlnL2J5dGVzLmgJMjAwOS0wMy0xMSAyMjo1NTo0NC4wMDAwMDAwMDAgKzAxMDAK KysrIHJ0bXBkdW1wLm5ldy9ieXRlcy5oCTIwMDktMDMtMTggMTY6NTY6NTQuMDAwMDAwMDAwICsw MTAwCkBAIC0zNCwxMSArMzQsMTYgQEAKICAgICAgIHwgKCgoeCkgJiAweDAwMDAwMDAwMDAwMDAw ZmZ1bGwpIDw8IDU2KSkKCiAjZWxzZQotI2luY2x1ZGUgPGVuZGlhbi5oPgotI2luY2x1ZGUgPGJ5 dGVzd2FwLmg+CisjaW5jbHVkZSA8c3lzL2VuZGlhbi5oPgorI2RlZmluZSBfX0JJR19FTkRJQU4g ICAgX0JJR19FTkRJQU4KKyNkZWZpbmUgX19MSVRUTEVfRU5ESUFOIF9MSVRUTEVfRU5ESUFOCisj ZGVmaW5lIF9fQllURV9PUkRFUiBfQllURV9PUkRFUgorI2RlZmluZSBfX0ZMT0FUX1dPUkRfT1JE RVIgX0JZVEVfT1JERVIKKyNkZWZpbmUgX19ic3dhcF8zMih4KSAgIGJzd2FwMzIoeCkKKyNkZWZp bmUgX19ic3dhcF82NCh4KSAgIGJzd2FwNjQoeCkKCi10eXBlZGVmIF9fdWludDY0X3QgdWludDY0 X3Q7Ci10eXBlZGVmIF9fdWludDMyX3QgdWludDMyX3Q7CisvKiB0eXBlZGVmIF9fdWludDY0X3Qg dWludDY0X3Q7ICovCisvKiB0eXBlZGVmIF9fdWludDMyX3QgdWludDMyX3Q7ICovCiAjZW5kaWYK CiAjaWYgIWRlZmluZWQoX19CWVRFX09SREVSKSB8fCAhZGVmaW5lZChfX0ZMT0FUX1dPUkRfT1JE RVIpCmRpZmYgLXVyIHJ0bXBkdW1wLm9yaWcvcnRtcC5oIHJ0bXBkdW1wLm5ldy9ydG1wLmgKLS0t IHJ0bXBkdW1wLm9yaWcvcnRtcC5oCTIwMDktMDMtMTEgMjI6Mzc6MTcuMDAwMDAwMDAwICswMTAw CisrKyBydG1wZHVtcC5uZXcvcnRtcC5oCTIwMDktMDMtMTggMTY6NTk6MjcuMDAwMDAwMDAwICsw MTAwCkBAIC0yOCwxMSArMjgsMTEgQEAKICNpZmRlZiBXSU4zMgogI2Vsc2UKIC8vI2luY2x1ZGUg PHN5cy90eXBlcy5oPgotLy8jaW5jbHVkZSA8c3lzL3NvY2tldC5oPgorI2luY2x1ZGUgPHN5cy9z b2NrZXQuaD4KICNpbmNsdWRlIDxuZXRkYi5oPgogI2luY2x1ZGUgPGFycGEvaW5ldC5oPgogLy8j aW5jbHVkZSA8dW5pc3RkLmg+Ci0vLyNpbmNsdWRlIDxuZXRpbmV0L2luLmg+CisjaW5jbHVkZSA8 bmV0aW5ldC9pbi5oPgogI2VuZGlmCgogI2luY2x1ZGUgIkFNRk9iamVjdC5oIgoK ------=OPENWEBMAIL_ATT_0.803318776655942-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 23:18:45 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BA1C1065675 for ; Wed, 18 Mar 2009 23:18:45 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from QMTA12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id DD22F8FC15 for ; Wed, 18 Mar 2009 23:18:44 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from OMTA14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by QMTA12.emeryville.ca.mail.comcast.net with comcast id Ulf81b0031HpZEsACnJl6B; Wed, 18 Mar 2009 23:18:45 +0000 Received: from roadkill.tharned.org ([75.145.12.185]) by OMTA14.emeryville.ca.mail.comcast.net with comcast id UnJj1b00d3zZBGT8anJk4P; Wed, 18 Mar 2009 23:18:45 +0000 Received: from roadkill.tharned.org (11008@localhost [127.0.0.1]) by roadkill.tharned.org (8.14.3/8.14.3) with ESMTP id n2INIgU5047687 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Mar 2009 18:18:42 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by roadkill.tharned.org (8.14.3/8.14.3/Submit) with ESMTP id n2INIfVP047684; Wed, 18 Mar 2009 18:18:42 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Wed, 18 Mar 2009 18:18:41 -0500 (CDT) From: Greg Rivers To: Robert Noland In-Reply-To: <1237395643.1738.3.camel@balrog.2hip.net> Message-ID: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/Mixed; BOUNDARY="=-11zqm2DltEAqTjQtloSC" Content-ID: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (roadkill.tharned.org [127.0.0.1]); Wed, 18 Mar 2009 18:18:42 -0500 (CDT) Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 23:18:45 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --=-11zqm2DltEAqTjQtloSC Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; format=flowed Content-ID: On Wed, 18 Mar 2009, Robert Noland wrote: > On Tue, 2009-03-17 at 18:24 -0500, Greg Rivers wrote: >> On Tue, 17 Mar 2009, Robert Noland wrote: >> >>> On Tue, 2009-03-17 at 12:20 -0500, Greg Rivers wrote: >>>> On Sat, 10 Jan 2009, Robert Noland wrote: >>>> >>>>> I just merged drm (Direct Rendering) from HEAD. >>>>> >>>>> - Support for latest Intel chips >>>>> - Support and fixes for many AMD/ATI chips r500 and below >>>>> - Support AMD/ATI IGP based chips (rs690/rs485) >>>>> - Lots of code cleanups >>>>> - Lots of other fixes and changes since the existing drm >>>>> is 2+ years old >>>>> >>>>> If you are experiencing a "garbled" screen with certain pci/pci-e based >>>>> radeons, I have another patch in HEAD that isn't included yet. >>>>> >>>> >>>> I have a workstation with a [Radeon X600 (PCIE)] card. The X display has >>>> been garbled since these DRM updates went in in January, and remains >>>> garbled with 7.1-STABLE as of yesterday. As a work-around, I'm running >>>> the up-to-date 7.1-STABLE system (both world and ports) with a >>>> 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and X >>>> works great; I even see dramatically improved performance with the new >>>> Xorg and EXA acceleration. Your work is much appreciated. >>>> >>>> But the garbled display with the recent DRM still plagues me. >>>> >>>> [snip] >>> >>> Could you try the attached patch. >>> >> >> Unfortunately, there is no noticeable difference with this patch. >> >> >>> Also, I'm guessing that this is a PCI based card, right? Also, it isn't >>> an integrated model? >>> >> >> Yes, this is a PCIEx16 card in a HP Compaq dc7600 desktop PC, not a >> motherboard integrated adapter. >> >> Thanks for your help. I'm willing to spend some time debugging this; >> please let me know if there's more information I can provide or other >> tests or patches I can try. > > Ok, try this patch... I asked the folks from AMD and they agree that > this shouldn't be needed on an RV370, but we will give it a try... This > is what fixed the garbled display on the IGP chips. > The display is still garbled with this patch too. I'm curious about why the drm driver calls this card a RV370, while pciconf and the X server call it a RV380: pciconf: "RV380 RADEON X600 Series 265MB" X server: "ATI Technologies Inc RV380 [Radeon X600 (PCIE)]" drm driver: "ATI Radeon RV370 X600 Pro" Could it be that the drm driver has the wrong chip set or configuration for this PCI ID? -- Greg Rivers --=-11zqm2DltEAqTjQtloSC Content-Type: TEXT/X-PATCH; NAME=drm-rv370-test.patch; CHARSET=us-ascii Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME=drm-rv370-test.patch SW5kZXg6IGRldi9kcm0vYXRpX3BjaWdhcnQuYw0KPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGRldi9kcm0vYXRp X3BjaWdhcnQuYwkocmV2aXNpb24gMTg5OTMzKQ0KKysrIGRldi9kcm0vYXRpX3BjaWdhcnQuYwko d29ya2luZyBjb3B5KQ0KQEAgLTgzLDcgKzgzLDcgQEANCiAJfQ0KIA0KIAlmbGFncyA9IEJVU19E TUFfTk9XQUlUIHwgQlVTX0RNQV9aRVJPOw0KLQlpZiAoZ2FydF9pbmZvLT5nYXJ0X3JlZ19pZiA9 PSBEUk1fQVRJX0dBUlRfSUdQKQ0KKy8qCWlmIChnYXJ0X2luZm8tPmdhcnRfcmVnX2lmID09IERS TV9BVElfR0FSVF9JR1ApICovDQogCSAgICBmbGFncyB8PSBCVVNfRE1BX05PQ0FDSEU7DQogCQ0K IAlyZXQgPSBidXNfZG1hbWVtX2FsbG9jKGRtYWgtPnRhZywgJmRtYWgtPnZhZGRyLCBmbGFncywg JmRtYWgtPm1hcCk7DQo= --=-11zqm2DltEAqTjQtloSC-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 23:21:31 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 813F61065673 for ; Wed, 18 Mar 2009 23:21:31 +0000 (UTC) (envelope-from kama@pvp.se) Received: from ms1.as.pvp.se (dns.pvp.se [213.64.187.226]) by mx1.freebsd.org (Postfix) with ESMTP id 3F8198FC17 for ; Wed, 18 Mar 2009 23:21:31 +0000 (UTC) (envelope-from kama@pvp.se) Received: by ms1.as.pvp.se (Postfix, from userid 1001) id 0696EB3; Thu, 19 Mar 2009 00:21:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ms1.as.pvp.se (Postfix) with ESMTP id 05412B1; Thu, 19 Mar 2009 00:21:30 +0100 (CET) Date: Thu, 19 Mar 2009 00:21:29 +0100 (CET) From: kama X-X-Sender: kama@ns1.as.pvp.se To: Doug Barton In-Reply-To: <49C1447C.6060002@FreeBSD.org> Message-ID: <20090319001829.U55869@ns1.as.pvp.se> References: <200903161055.n2GAtHkt077732@lurza.secnetix.de> <49C1447C.6060002@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-stable@FreeBSD.ORG Subject: Re: mergemaster annoyance or not? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 23:21:32 -0000 On Wed, 18 Mar 2009, Doug Barton wrote: > Oliver Fromme wrote: > > Doug Barton wrote: > > > The attached patch adds a -F option to automatically install files > > > when only the FreeBSD $Ids differ. I've tested this and it seems to do > > > what the people concerned about this issue are asking for. > > > > That seems to be a useful feature. > > Thanks. > > > You need to quote the dollar signs, though. > > Well, not only would that defeat the purpose they are there for, it > wouldn't work. Perhaps you missed the bit where I said that I actually > tested this? :) > > > However, maybe the best solution is to add a new keyword > > for mergemaster.rc, so the user can exactly specify which > > kind of changes should be always installed. > > That's an interesting idea, but I think that the number of times that > there is a nonfunctional change other than to the VCS Id are very > small, and I don't want to complicate this more than it needs to be. > > Please remember that we're dealing with two very different groups of > users. One is the "power user" who updates frequently and can > certainly hack this sort of thing themselves if they really want it. > The other is the "average" user who only updates once or twice a year, > usually to a new release, occasionally to a new patch level, etc. The > vast majority of our users are in the latter category, and they need a > simple tool with a minimum of foot-shooting capacity. One thing that really bother me is the fact that it patches passwd. I would rather only have mergemaster to use the pw command to add and delete users and groups instead. Its especially annoying when it updated passwd without my content on a remote update. /Bjorn From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 23:47:58 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 108631065672 for ; Wed, 18 Mar 2009 23:47:58 +0000 (UTC) (envelope-from rabe@uugrn.org) Received: from mail.uugrn.org (mail.uugrn.org [195.49.138.123]) by mx1.freebsd.org (Postfix) with ESMTP id 926C38FC14 for ; Wed, 18 Mar 2009 23:47:57 +0000 (UTC) (envelope-from rabe@uugrn.org) Received: from rabe.uugrn.org (root@rabe.uugrn.org [195.49.138.102]) by mail.uugrn.org (8.14.3/8.14.3) with ESMTP id n2INYdDA090969 for ; Thu, 19 Mar 2009 00:34:49 +0100 (CET) (envelope-from rabe@uugrn.org) Received: from daemon.ma.sigsys.de (rabe@rabe.uugrn.org [195.49.138.102]) by rabe.uugrn.org (8.14.3/8.13.8) with ESMTP id n2INYd95090965 for ; Thu, 19 Mar 2009 00:34:39 +0100 (CET) (envelope-from rabe@uugrn.org) Received: from daemon.ma.sigsys.de (localhost.ma.sigsys.de [127.0.0.1]) by daemon.ma.sigsys.de (8.14.3/8.14.3) with ESMTP id n2INYvHg020493 for ; Thu, 19 Mar 2009 00:34:57 +0100 (CET) (envelope-from rabe@uugrn.org) Received: (from rabe@localhost) by daemon.ma.sigsys.de (8.14.3/8.14.3/Submit) id n2INYuom020489 for freebsd-stable@freebsd.org; Thu, 19 Mar 2009 00:34:56 +0100 (CET) (envelope-from rabe@uugrn.org) X-Authentication-Warning: daemon.ma.sigsys.de: rabe set sender to rabe@uugrn.org using -f Date: Thu, 19 Mar 2009 00:34:56 +0100 From: Raphael Becker To: freebsd-stable@freebsd.org Message-ID: <20090318233456.GA95898@ma.sigsys.de> References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline In-Reply-To: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> User-Agent: Mutt/1.4.2.3i Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 23:47:58 -0000 --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 16, 2009 at 11:59:25AM -0600, Dan Allen wrote: > I saw that someone else had this happen last week... It is not a =20 > hardware failure. >=20 > While building the latest GCC 4.4 from /usr/ports/lang/gcc44 I got a =20 > core dump with the message >=20 > vm_page_insert: page already inserted I had the same thing on 7.1-STABLE with sources @2009-03-14 (last Saturday). The machine had no hardware failures running 6.x...6.4 in=20 the last 3 years running about 20..25 Jails. Therefore I don't think it is a hardware error. The crash happened during someone recompiling most of his packages in jail while running cvsup on /usr/ports in another jail. So there was=20 pretty much I/O and CPU usage. After crash the geom_mirror was degraded=20 on ad4 (ad6 working). I guess=20 a) the vmcore was successfully written to the SWAP=20 b) geom_mirror is unstable under heavy load, maybe it's the=20 origin of the crash. swap resides on that geom_mirror, too.=20 I'm not yet able to get some useful information out of the 230MB vmcore.0 Maybe I may provide useful information about the crash if someone can tell me about how to get theese from vmcore.0. info.0 says: Dump header from device /dev/label/TOPSWAP Architecture: i386 Architecture Version: 2 Dump Length: 246185984B (234 MB) Blocksize: 512 Dumptime: Sat Mar 14 22:43:46 2009 Hostname: top.uugrn.org Magic: FreeBSD Kernel Dump Version String: FreeBSD 7.1-STABLE #0: Sat Mar 14 20:06:04 CET 2009 root@top.uugrn.org:/usr/obj/usr/src_RELENG_7/sys/TOP Panic String: vm_page_insert: page already inserted Dump Parity: 31664128 Bounds: 0 Dump Status: good Regards Raphael Becker --=20 Raphael Becker http://rabe.uugrn.org/ GnuPG: E7B2 1D66 3AF2 EDC7 9828 6D7A 9CDA 3E7B 10CA 9F2D =2E........|.........|.........|.........|.........|.........|.........|.. --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFJwYUgnNo+exDKny0RAuCAAKDVVXpmDVgIDpyhIHnSHHgVXb3DNgCgyXVe 5rJEaI0ThkbGBKraj4NDt6Q= =51hA -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- From owner-freebsd-stable@FreeBSD.ORG Wed Mar 18 23:59:26 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E95F0106564A for ; Wed, 18 Mar 2009 23:59:26 +0000 (UTC) (envelope-from rabe@uugrn.org) Received: from mail.uugrn.org (mail.uugrn.org [195.49.138.123]) by mx1.freebsd.org (Postfix) with ESMTP id 151728FC16 for ; Wed, 18 Mar 2009 23:59:24 +0000 (UTC) (envelope-from rabe@uugrn.org) Received: from rabe.uugrn.org (root@rabe.uugrn.org [195.49.138.102]) by mail.uugrn.org (8.14.3/8.14.3) with ESMTP id n2INxDBc093628 for ; Thu, 19 Mar 2009 00:59:23 +0100 (CET) (envelope-from rabe@uugrn.org) Received: from daemon.ma.sigsys.de (rabe@rabe.uugrn.org [195.49.138.102]) by rabe.uugrn.org (8.14.3/8.13.8) with ESMTP id n2INxDdD093624 for ; Thu, 19 Mar 2009 00:59:13 +0100 (CET) (envelope-from rabe@uugrn.org) Received: from daemon.ma.sigsys.de (localhost.ma.sigsys.de [127.0.0.1]) by daemon.ma.sigsys.de (8.14.3/8.14.3) with ESMTP id n2INxV4m055454 for ; Thu, 19 Mar 2009 00:59:31 +0100 (CET) (envelope-from rabe@uugrn.org) Received: (from rabe@localhost) by daemon.ma.sigsys.de (8.14.3/8.14.3/Submit) id n2INxVIY055453 for freebsd-stable@freebsd.org; Thu, 19 Mar 2009 00:59:31 +0100 (CET) (envelope-from rabe@uugrn.org) X-Authentication-Warning: daemon.ma.sigsys.de: rabe set sender to rabe@uugrn.org using -f Date: Thu, 19 Mar 2009 00:59:31 +0100 From: Raphael Becker To: freebsd-stable@freebsd.org Message-ID: <20090318235931.GB95898@ma.sigsys.de> References: <7381363A-9B55-4A3B-99BF-A05B2F879403@airwired.net> <20090318233456.GA95898@ma.sigsys.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cmJC7u66zC7hs+87" Content-Disposition: inline In-Reply-To: <20090318233456.GA95898@ma.sigsys.de> User-Agent: Mutt/1.4.2.3i Subject: Re: GCC build causes panic: page already inserted X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 23:59:27 -0000 --cmJC7u66zC7hs+87 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 19, 2009 at 12:34:56AM +0100, Raphael Becker wrote: > info.0 says: > Dump header from device /dev/label/TOPSWAP > Architecture: i386 > Architecture Version: 2 > Dump Length: 246185984B (234 MB) > Blocksize: 512 > Dumptime: Sat Mar 14 22:43:46 2009 > Hostname: top.uugrn.org > Magic: FreeBSD Kernel Dump > Version String: FreeBSD 7.1-STABLE #0: Sat Mar 14 20:06:04 CET 2009 > root@top.uugrn.org:/usr/obj/usr/src_RELENG_7/sys/TOP > Panic String: vm_page_insert: page already inserted > Dump Parity: 31664128 > Bounds: 0 > Dump Status: good Some more details ... maybe someone will get somethin interesing from this: [root@top /usr/obj/usr/src_RELENG_7/sys/TOP]# kgdb kernel.debug /var/crash/= vmcore.0 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... Unread portion of the kernel message buffer: panic: vm_page_insert: page already inserted cpuid =3D 1 Uptime: 1h41m26s Physical memory: 2034 MB Dumping 234 MB: 219 203 187 Fatal trap 12: page fault while in kernel mode cpuid =3D 1; apic id =3D 01 fault virtual address =3D 0x186a0 fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0x186a0 stack pointer =3D 0x28:0xe571da48 frame pointer =3D 0x28:0xe571da68 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 4 (g_down) trap number =3D 12 panic: page fault cpuid =3D 1 171 155 139 123 107 91 75 59 43 27 11 Reading symbols from /boot/kernel/geom_mirror.ko...Reading symbols from /boot/kernel/geom_mirror.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_mirror.ko Reading symbols from /boot/kernel/acpi.ko...Reading symbols from /boot/kernel/acpi.ko.symbols...done. done. Loaded symbols for /boot/kernel/acpi.ko Reading symbols from /boot/kernel/ipfw.ko...Reading symbols from /boot/kernel/ipfw.ko.symbols...done. done. Loaded symbols for /boot/kernel/ipfw.ko Reading symbols from /boot/kernel/logo_saver.ko...Reading symbols from /boot/kernel/logo_saver.ko.symbols...done. done. Loaded symbols for /boot/kernel/logo_saver.ko Reading symbols from /boot/kernel/nullfs.ko...Reading symbols from /boot/kernel/nullfs.ko.symbols...done. done. Loaded symbols for /boot/kernel/nullfs.ko Reading symbols from /boot/kernel/fdescfs.ko...Reading symbols from /boot/kernel/fdescfs.ko.symbols...done. done. Loaded symbols for /boot/kernel/fdescfs.ko #0 doadump () at pcpu.h:196 196 __asm __volatile("movl %%fs:0,%0" : "=3Dr" (td)); (kgdb) (kgdb) where #0 doadump () at pcpu.h:196 #1 0xc07d3a87 in boot (howto=3D260) at /usr/src_RELENG_7/sys/kern/kern_shu= tdown.c:418 #2 0xc07d3d59 in panic (fmt=3DVariable "fmt" is not available.) at /usr/sr= c_RELENG_7/sys/kern/kern_shutdown.c:574 #3 0xc0a1d4ca in vm_page_insert (m=3D0xc3735b20, object=3D0xc1461200, pind= ex=3DUnhandled dwarf expression opcode 0x93) at /usr/src_RELENG_7/sys/vm/vm= _page.c:665 #4 0xc0a1da29 in vm_page_alloc (object=3D0xc1461200, pindex=3D5785959, req= =3D546) at /usr/src_RELENG_7/sys/vm/vm_page.c:1171 #5 0xc083bd6b in allocbuf (bp=3D0xc51fe0c8, size=3D16384) at /usr/src_RELE= NG_7/sys/kern/vfs_bio.c:2895 #6 0xc083f62d in getblk (vp=3D0xc58969b4, blkno=3D46287648, size=3D16384, = slpflag=3D0, slptimeo=3D0, flags=3DVariable "flags" is not available.) at /= usr/src_RELENG_7/sys/kern/vfs_bio.c:2666 #7 0xc083ffe4 in breadn (vp=3D0xc58969b4, blkno=3DUnhandled dwarf expressi= on opcode 0x93) at /usr/src_RELENG_7/sys/kern/vfs_bio.c:786 #8 0xc084011c in bread (vp=3D0xc58969b4, blkno=3DUnhandled dwarf expressio= n opcode 0x93) at /usr/src_RELENG_7/sys/kern/vfs_bio.c:734 #9 0xc09edecb in ffs_vgetf (mp=3D0xc5852b40, ino=3D2897024, flags=3D2, vpp= =3D0xe83338e8, ffs_flags=3DVariable "ffs_flags" is not available.) at /usr/= src_RELENG_7/sys/ufs/ffs/ffs_vfsops.c:1477 #10 0xc09ee09e in ffs_vget (mp=3D0xc5852b40, ino=3D2897024, flags=3D2, vpp= =3D0xe83338e8) at /usr/src_RELENG_7/sys/ufs/ffs/ffs_vfsops.c:1379 #11 0xc09= fa44b in ufs_lookup (ap=3D0xe8333930) at /usr/src_RELENG_7/sys/ufs/ufs/ufs_= lookup.c:600 #12 0xc0aeada2 in VOP_CACHEDLOOKUP_APV (vop=3D0xc0c5ff00, a=3D0xe8333930) a= t vnode_if.c:153 #13 0xc084178c in vfs_cache_lookup (ap=3D0xe83339b4) at vnode_if.h:83 #14 0xc0aeca76 in VOP_LOOKUP_APV (vop=3D0xc0c60420, a=3D0xe83339b4) at vnod= e_if.c:99 #15 0xc08481b1 in lookup (ndp=3D0xe8333b7c) at vnode_if.h:57 #16 0xc0848eff in namei (ndp=3D0xe8333b7c) at /usr/src_RELENG_7/sys/kern/vf= s_lookup.c:215 #17 0xc08600c7 in vn_open_cred (ndp=3D0xe8333b7c, flagp=3D0xe8333c78, cmode= =3D0, cred=3D0xc635cb00, fp=3D0xca134804) at /usr/src_RELENG_7/sys/kern/vfs= _vnops.c:188 #18 0xc0860393 in vn_open (ndp=3D0xe8333b7c, flagp=3D0xe8333c78, cmode=3D0,= fp=3D0xca134804) at /usr/src_RELENG_7/sys/kern/vfs_vnops.c:94 #19 0xc085dab7 in kern_open (td=3D0xc7326230, path=3D0x8265910
, pathseg=3DUIO_USERSPACE, flags=3D1, mode=3D0) at /us= r/src_RELENG_7/sys/kern/vfs_syscalls.c:1042 #20 0xc085e020 in open (td=3D0xc7326230, uap=3D0xe8333cfc) at /usr/src_RELE= NG_7/sys/kern/vfs_syscalls.c:1009 #21 0xc0ad6ab5 in syscall (frame=3D0xe8333d38) at /usr/src_RELENG_7/sys/i38= 6/i386/trap.c:1090 #22 0xc0abb830 in Xint0x80_syscall () at /usr/src_RELENG_7/sys/i386/i386/ex= ception.s:255 #23 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) HTH! Raphael PS: I'd need some assistance from here to get more that this out of the vmcore. =20 --=20 Raphael Becker http://rabe.uugrn.org/ GnuPG: E7B2 1D66 3AF2 EDC7 9828 6D7A 9CDA 3E7B 10CA 9F2D =2E........|.........|.........|.........|.........|.........|.........|.. --cmJC7u66zC7hs+87 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFJwYrjnNo+exDKny0RAl79AJ0YLTfWO4W+/do13ua4StcZIhMUOwCbBmcd vGShok8+XFwOH2iiflPsJ7w= =q4v/ -----END PGP SIGNATURE----- --cmJC7u66zC7hs+87-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 00:17:02 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 243CE1065673 for ; Thu, 19 Mar 2009 00:17:02 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id EDF068FC17 for ; Thu, 19 Mar 2009 00:17:01 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id ADK12502 for ; Wed, 18 Mar 2009 18:17:02 -0600 Date: Wed, 18 Mar 2009 18:17:02 -0600 From: Squirrel To: freebsd-stable Message-ID: <676b8088f93aa6155abc614674d85dba@mail.isot.com> X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Crash!!! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 00:17:02 -0000 And if it's a file permission problem, why is it able to write *.err file on same directory? I've set: innodb_force_recovery = 6 And now the PANIC (fatal error) is gone, but still got this permission denied: 090318 19:09:53 mysqld started InnoDB: The user has set SRV_FORCE_NO_LOG_REDO on InnoDB: Skipping log redo 090318 19:09:54 InnoDB: Started; log sequence number 0 0 InnoDB: !!! innodb_force_recovery is set to 6 !!! 090318 19:09:54 [ERROR] /usr/local/libexec/mysqld: Can't create/write to file '/home/mysql/mysqld.pid' (Errcode: 13) 090318 19:09:54 [ERROR] Can't start server: can't create PID file: Permission denied 090318 19:09:54 mysqld ended Please help... -----Original message----- From: Squirrel squirrel@mail.isot.com Date: Wed, 18 Mar 2009 23:45:49 -0600 To: freebsd-stable freebsd-stable@freebsd.org Subject: Re: Crash!!! > Another thing, why is the error log shows bdb? Isn't that Berkerly DB? I didn't think I was using it. I went ahead and removed it, but rebooted the server. Only thing I can think is that I've installed virtualmin few days ago before this problem started. > > These are my file premissions: > > /home/ > drwxrwxrwx 33 mysql mysql 1024 Mar 18 17:18 mysql > .. > > /home/mysql/ > [root@webserver /home/mysql]# ls -la > total 143848 > drwxrwxrwx 33 mysql mysql 1024 Mar 18 17:18 . > drw-r--r-- 71 felix felix 1536 Mar 18 16:44 .. > drwxrw-rw- 2 mysql mysql 2560 Nov 21 2007 centexhomes > drwxrw-rw- 2 mysql mysql 2560 Oct 31 2007 centexrealtors > drwxrw-rw- 2 mysql mysql 18432 Mar 9 15:08 devildates > drwxrw-rw- 2 mysql mysql 14848 Feb 10 2008 dolphin > drwxrw-rw- 2 mysql mysql 2048 Mar 3 2008 drugal2 > drwxrw-rw- 2 mysql mysql 13824 Feb 28 2008 drup > ... > drwxrw-rw- 2 mysql mysql 1024 Oct 31 2007 treasure > -rw-rw---- 1 mysql mysql 3785 Mar 18 17:18 webserver.isot.com.err > -rwxrw-rw- 1 mysql mysql 83676 Mar 18 16:30 webserver.isot.com.err.bak > -rwxrw-rw- 1 mysql mysql 5 Mar 17 11:27 webserver.isot.com.pid.bak > drwxrw-rw- 2 mysql mysql 7168 Jun 11 2008 yourshows > drwxrw-rw- 2 mysql mysql 2048 Mar 28 2008 yourshows_g2 > > > > -----Original message----- > From: Squirrel squirrel@mail.isot.com > Date: Wed, 18 Mar 2009 23:22:50 -0600 > To: freebsd-stable freebsd-stable@freebsd.org > Subject: Crash!!! > > > My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL 5.0.27. All of sudden MySQL quit and won't start. At the same time when logged in using SSH, it's looking for .bash_login and .bash_logout which it never did before, and will not chroot to user's home. > > > > Trying to manual start mysql causes: > > > > 090318 17:09:52 mysqld started > > 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 > > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > > 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission denied > > 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied > > 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run database recovery > > 090318 17:09:52 [ERROR] bdb: fatal region error detected; run recovery > > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > > 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) > > 090318 17:09:52 [ERROR] Can't start server: can't create PID file: Permission denied > > 090318 17:09:52 mysqld ended > > > > I tried db_recover, but it's not found. HELP!!! > > _______________________________________________ > > 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-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 00:38:55 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 607F6106564A for ; Thu, 19 Mar 2009 00:38:55 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.freebsd.org (Postfix) with ESMTP id AC9DA8FC15 for ; Thu, 19 Mar 2009 00:38:54 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.localnet (Inchoate.gsoft.com.au [203.31.81.30]) (authenticated bits=0) by cain.gsoft.com.au (8.13.8/8.13.8) with ESMTP id n2J0cqG4032992 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 11:08:52 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: freebsd-stable@freebsd.org Date: Thu, 19 Mar 2009 11:08:49 +1030 User-Agent: KMail/1.10.4 (Linux/2.6.27-11-generic; KDE/4.1.4; i686; ; ) References: <6a6f24080afb0b1cc84cc145b674c58c@mail.isot.com> In-Reply-To: <6a6f24080afb0b1cc84cc145b674c58c@mail.isot.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart10325136.byAQq9G4t3"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200903191108.50507.doconnor@gsoft.com.au> X-Spam-Score: -3.977 () ALL_TRUSTED,BAYES_00 X-Scanned-By: MIMEDefang 2.63 on 203.31.81.10 Cc: Squirrel Subject: Re: Crash!!! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 00:38:55 -0000 --nextPart10325136.byAQq9G4t3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 19 March 2009 08:52:18 Squirrel wrote: > My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL > 5.0.27. All of sudden MySQL quit and won't start. At the same time when > logged in using SSH, it's looking for .bash_login and .bash_logout which = it > never did before, and will not chroot to user's home. > > Trying to manual start mysql causes: > > 090318 17:09:52 mysqld started > 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission deni= ed > 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied > 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run > database recovery 090318 17:09:52 [ERROR] bdb: fatal region error > detected; run recovery 090318 17:09:52 [ERROR] bdb: /home/mysql: > Permission denied > 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to > file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) 090318 17:09:52 > [ERROR] Can't start server: can't create PID file: Permission denied 0903= 18 > 17:09:52 mysqld ended > > I tried db_recover, but it's not found. HELP!!! There are db_recover tools installed with BDB but they're called db41_recov= er=20 or db_recover-4.2 etc. The other error is that it doesn't appear to be able to write to /home/mysq= l=20 but in your next email the perms look OK (well they are bad because 777 is= =20 insecure but they won't result in permission denied) =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart10325136.byAQq9G4t3 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iD8DBQBJwZQa5ZPcIHs/zowRApbsAKCopGPBUpJDy8ZeHtXU4Z8oElOgOACdHRut UzmYE/Zj95BrBWlUd25sW7o= =qjTG -----END PGP SIGNATURE----- --nextPart10325136.byAQq9G4t3-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 01:06:28 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13622106566C for ; Thu, 19 Mar 2009 01:06:28 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from mail.isot.com (mail.isot.com [66.187.86.1]) by mx1.freebsd.org (Postfix) with ESMTP id DC16A8FC1B for ; Thu, 19 Mar 2009 01:06:27 +0000 (UTC) (envelope-from squirrel@mail.isot.com) Received: from localhost ([127.0.0.1]) by mail.isot.com (ISOT) with SMTP id AEZ93727; Wed, 18 Mar 2009 19:06:27 -0600 Date: Wed, 18 Mar 2009 19:06:27 -0600 From: Squirrel To: "Daniel O'Connor" , freebsd-stable@freebsd.org Message-ID: X-Mailer: ISOT Web Mail 5.6.1 X-Originating-IP: 66.187.95.74 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: Squirrel Subject: Re: Crash!!! -- Permission Error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 01:06:28 -0000 I'm currently re-installing db41 port. Earlier using 'innodb_force_recovery = 6' seemed to fix that PANIC error. But I don't understand this permission error. I've tried various permissions as well 777, 766, 666, 760, etc etc. I've also ran mysqld_safe as root user, but with same permission error. Also tried different directories without luck. When I log in to the server shell, it won't chroot me to my home directory. Instead it puts me in '/' with error message "no .bash_login. And when I log out I get message "no .bash_logout". I've never had these files in any of my users' directories. Another strange thing just discovered is IE or FireFox display "Forbidden - You don't have permission to access / on this server", on all web sites. So it seems that I have permission problem globally not just within MySQL. What can possibly cause this permission problem? Hard drive corruption? -----Original message----- From: "Daniel O'Connor" doconnor@gsoft.com.au Date: Thu, 19 Mar 2009 01:39:30 -0600 To: freebsd-stable@freebsd.org Subject: Re: Crash!!! > On Thursday 19 March 2009 08:52:18 Squirrel wrote: > > My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL > > 5.0.27. All of sudden MySQL quit and won't start. At the same time when > > logged in using SSH, it's looking for .bash_login and .bash_logout which it > > never did before, and will not chroot to user's home. > > > > Trying to manual start mysql causes: > > > > 090318 17:09:52 mysqld started > > 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 > > 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied > > 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission denied > > 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied > > 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run > > database recovery 090318 17:09:52 [ERROR] bdb: fatal region error > > detected; run recovery 090318 17:09:52 [ERROR] bdb: /home/mysql: > > Permission denied > > 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to > > file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) 090318 17:09:52 > > [ERROR] Can't start server: can't create PID file: Permission denied 090318 > > 17:09:52 mysqld ended > > > > I tried db_recover, but it's not found. HELP!!! > > There are db_recover tools installed with BDB but they're called db41_recover > or db_recover-4.2 etc. > > The other error is that it doesn't appear to be able to write to /home/mysql > but in your next email the perms look OK (well they are bad because 777 is > insecure but they won't result in permission denied) > > -- > Daniel O'Connor software and network engineer > for Genesis Software - http://www.gsoft.com.au > "The nice thing about standards is that there > are so many of them to choose from." > -- Andrew Tanenbaum > GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C > > > From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 02:10:01 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98F90106566C for ; Thu, 19 Mar 2009 02:10:01 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.freebsd.org (Postfix) with ESMTP id E31E78FC16 for ; Thu, 19 Mar 2009 02:10:00 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.localnet (Inchoate.gsoft.com.au [203.31.81.30]) (authenticated bits=0) by cain.gsoft.com.au (8.13.8/8.13.8) with ESMTP id n2J29scQ038152 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 12:39:58 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: Squirrel Date: Thu, 19 Mar 2009 12:39:45 +1030 User-Agent: KMail/1.10.4 (Linux/2.6.27-11-generic; KDE/4.1.4; i686; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1768792.eKuUbW8mS0"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200903191239.52808.doconnor@gsoft.com.au> X-Spam-Score: -3.977 () ALL_TRUSTED,BAYES_00 X-Scanned-By: MIMEDefang 2.63 on 203.31.81.10 Cc: freebsd-stable@freebsd.org Subject: Re: Crash!!! -- Permission Error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 02:10:01 -0000 --nextPart1768792.eKuUbW8mS0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 19 March 2009 11:36:27 Squirrel wrote: > I'm currently re-installing db41 port. Earlier using=20 > 'innodb_force_recovery =3D 6' seemed to fix that PANIC error. But I don't > understand this permission error. I've tried various permissions as well > 777, 766, 666, 760, etc etc. I've also ran mysqld_safe as root user, but > with same permission error. Also tried different directories without luc= k. I think you need to _understand_ the permissions before you blindly change= =20 them. > When I log in to the server shell, it won't chroot me to my home director= y. > Instead it puts me in '/' with error message "no .bash_login. And when I > log out I get message "no .bash_logout". I've never had these files in a= ny > of my users' directories. Another strange thing just discovered is IE or > FireFox display "Forbidden - You don't have permission to access / on this > server", on all web sites. Does the user have permission to access all the elements in the path of the= ir=20 home directory? ie if their home directory is /usr/home/foo can then cd into /usr, /usr/hom= e=20 and /usr/home/foo? If not you will get odd errors. > So it seems that I have permission problem globally not just within MySQL= =2E=20 > What can possibly cause this permission problem? Hard drive corruption? Given you are blindly changing perms without really understanding, I suspec= t=20 PEBKAC. =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart1768792.eKuUbW8mS0 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iD8DBQBJwalp5ZPcIHs/zowRAloEAKClTtavr9VPYv70vw5C+zdaYNie6ACfX8je hO3cf+pyrSHNsY3alk4sZSU= =L/bu -----END PGP SIGNATURE----- --nextPart1768792.eKuUbW8mS0-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 02:22:54 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BF94106566B; Thu, 19 Mar 2009 02:22:54 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 5C3C28FC14; Thu, 19 Mar 2009 02:22:54 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2J2LWjt075698 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Mar 2009 22:21:32 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Greg Rivers In-Reply-To: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-HPmBHnDu/Ot5vghDK2if" Organization: FreeBSD Date: Wed, 18 Mar 2009 21:22:37 -0500 Message-Id: <1237429357.1738.61.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 02:22:55 -0000 --=-HPmBHnDu/Ot5vghDK2if Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2009-03-18 at 18:18 -0500, Greg Rivers wrote: > On Wed, 18 Mar 2009, Robert Noland wrote: >=20 > > On Tue, 2009-03-17 at 18:24 -0500, Greg Rivers wrote: > >> On Tue, 17 Mar 2009, Robert Noland wrote: > >> > >>> On Tue, 2009-03-17 at 12:20 -0500, Greg Rivers wrote: > >>>> On Sat, 10 Jan 2009, Robert Noland wrote: > >>>> > >>>>> I just merged drm (Direct Rendering) from HEAD. > >>>>> > >>>>> - Support for latest Intel chips > >>>>> - Support and fixes for many AMD/ATI chips r500 and below > >>>>> - Support AMD/ATI IGP based chips (rs690/rs485) > >>>>> - Lots of code cleanups > >>>>> - Lots of other fixes and changes since the existing drm > >>>>> is 2+ years old > >>>>> > >>>>> If you are experiencing a "garbled" screen with certain pci/pci-e b= ased > >>>>> radeons, I have another patch in HEAD that isn't included yet. > >>>>> > >>>> > >>>> I have a workstation with a [Radeon X600 (PCIE)] card. The X displa= y has > >>>> been garbled since these DRM updates went in in January, and remains > >>>> garbled with 7.1-STABLE as of yesterday. As a work-around, I'm runn= ing > >>>> the up-to-date 7.1-STABLE system (both world and ports) with a > >>>> 7.1-RELEASE-p2 kernel. The display is fine with the old kernel and = X > >>>> works great; I even see dramatically improved performance with the n= ew > >>>> Xorg and EXA acceleration. Your work is much appreciated. > >>>> > >>>> But the garbled display with the recent DRM still plagues me. > >>>> > >>>> [snip] > >>> > >>> Could you try the attached patch. > >>> > >> > >> Unfortunately, there is no noticeable difference with this patch. > >> > >> > >>> Also, I'm guessing that this is a PCI based card, right? Also, it is= n't > >>> an integrated model? > >>> > >> > >> Yes, this is a PCIEx16 card in a HP Compaq dc7600 desktop PC, not a > >> motherboard integrated adapter. > >> > >> Thanks for your help. I'm willing to spend some time debugging this; > >> please let me know if there's more information I can provide or other > >> tests or patches I can try. > > > > Ok, try this patch... I asked the folks from AMD and they agree that > > this shouldn't be needed on an RV370, but we will give it a try... This > > is what fixed the garbled display on the IGP chips. > > >=20 > The display is still garbled with this patch too. >=20 > I'm curious about why the drm driver calls this card a RV370, while pcico= nf > and the X server call it a RV380: > pciconf: "RV380 RADEON X600 Series 265MB" I'm not sure where pciconf gets it's data. I would actaully like to look at that. > X server: "ATI Technologies Inc RV380 [Radeon X600 (PCIE)]" This comes from /usr/local/share/pciids/pci.ids > drm driver: "ATI Radeon RV370 X600 Pro" This comes from drm's own internal tables. (drm_pciids.h) > Could it be that the drm driver has the wrong chip set or configuration f= or > this PCI ID? I don't think so, all of those should be about the same. Ok, so it isn't the gart caching... Can you get me a pointer to a screenshot? What is garbled exactly? Is the damage constrained to specific windows or it it the entire framebuffer? robert. > --=20 > Greg Rivers --=20 Robert Noland FreeBSD --=-HPmBHnDu/Ot5vghDK2if Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknBrG0ACgkQM4TrQ4qfROOB2wCdHl8XH7WhTvjr3O/ANtQlLm4D cEEAni3hJQfYp4afY2RLoFaB6V1FgvzR =DGlm -----END PGP SIGNATURE----- --=-HPmBHnDu/Ot5vghDK2if-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 06:14:43 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0153F1065670 for ; Thu, 19 Mar 2009 06:14:43 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp02.sth.basefarm.net (ch-smtp02.sth.basefarm.net [80.76.149.213]) by mx1.freebsd.org (Postfix) with ESMTP id A9F218FC12 for ; Thu, 19 Mar 2009 06:14:42 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from c83-255-48-78.bredband.comhem.se ([83.255.48.78]:56237 helo=falcon.midgard.homeip.net) by ch-smtp02.sth.basefarm.net with smtp (Exim 4.68) (envelope-from ) id 1LkBWb-0002Px-7w for freebsd-stable@FreeBSD.org; Thu, 19 Mar 2009 07:14:41 +0100 Received: (qmail 40271 invoked from network); 19 Mar 2009 07:14:38 +0100 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 19 Mar 2009 07:14:38 +0100 Received: (qmail 48581 invoked by uid 1001); 19 Mar 2009 07:14:38 +0100 Date: Thu, 19 Mar 2009 07:14:38 +0100 From: Erik Trulsson To: Robert Noland Message-ID: <20090319061438.GA48484@owl.midgard.homeip.net> References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1237429357.1738.61.camel@balrog.2hip.net> User-Agent: Mutt/1.5.18 (2008-05-17) X-Originating-IP: 83.255.48.78 X-Scan-Result: No virus found in message 1LkBWb-0002Px-7w. X-Scan-Signature: ch-smtp02.sth.basefarm.net 1LkBWb-0002Px-7w bdb3b3c6332d034392a415087a703593 Cc: Greg Rivers , freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 06:14:43 -0000 On Wed, Mar 18, 2009 at 09:22:37PM -0500, Robert Noland wrote: > On Wed, 2009-03-18 at 18:18 -0500, Greg Rivers wrote: [snip] > > > > I'm curious about why the drm driver calls this card a RV370, while pciconf > > and the X server call it a RV380: > > pciconf: "RV380 RADEON X600 Series 265MB" > > I'm not sure where pciconf gets it's data. I would actaully like to > look at that. According to the pciconf(8) manpage: The PCI vendor/device information database is normally read from /usr/share/misc/pci_vendors. This path can be overridden by setting the environment variable PCICONF_VENDOR_DATABASE. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 07:04:32 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8F3F10656EC; Thu, 19 Mar 2009 07:04:32 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 86DA78FC65; Thu, 19 Mar 2009 07:04:32 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2J739Vh077855 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 03:03:10 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Erik Trulsson In-Reply-To: <20090319061438.GA48484@owl.midgard.homeip.net> References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> <20090319061438.GA48484@owl.midgard.homeip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-lJ8xAdctL5GmJZsSWDfq" Organization: FreeBSD Date: Thu, 19 Mar 2009 02:04:14 -0500 Message-Id: <1237446254.6146.45.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: Greg Rivers , freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 07:04:35 -0000 --=-lJ8xAdctL5GmJZsSWDfq Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2009-03-19 at 07:14 +0100, Erik Trulsson wrote: > On Wed, Mar 18, 2009 at 09:22:37PM -0500, Robert Noland wrote: > > On Wed, 2009-03-18 at 18:18 -0500, Greg Rivers wrote: >=20 > [snip] >=20 > > >=20 > > > I'm curious about why the drm driver calls this card a RV370, while p= ciconf > > > and the X server call it a RV380: > > > pciconf: "RV380 RADEON X600 Series 265MB" > >=20 > > I'm not sure where pciconf gets it's data. I would actaully like to > > look at that. >=20 > According to the pciconf(8) manpage: >=20 > The PCI vendor/device information database is normally read from > /usr/share/misc/pci_vendors. This path can be overridden by setting > the environment variable PCICONF_VENDOR_DATABASE. Right, that is just the vendor id though, not the device name string. The reason that I'm curious is that I was trying to extract device name info from Nvidia cards the other day, without using a static data source. robert. >=20 >=20 >=20 >=20 --=20 Robert Noland FreeBSD --=-lJ8xAdctL5GmJZsSWDfq Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknB7m4ACgkQM4TrQ4qfROPkUACaApjTXq1E5IBgHJwcXUOnykBm JtYAni2+W+8XOK72SBI+TpKjBvWDbQKH =yoei -----END PGP SIGNATURE----- --=-lJ8xAdctL5GmJZsSWDfq-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 08:47:24 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6272106564A; Thu, 19 Mar 2009 08:47:24 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (raats.xs4all.nl [82.95.230.43]) by mx1.freebsd.org (Postfix) with ESMTP id 6C79D8FC12; Thu, 19 Mar 2009 08:47:24 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (localhost.jarasoft.net [127.0.0.1]) by raats.xs4all.nl (Postfix) with ESMTP id 9191022C6A; Thu, 19 Mar 2009 09:34:25 +0100 (CET) Received: from jara3 (unknown [10.10.10.20]) by raats.xs4all.nl (Postfix) with ESMTPA id 155D722A2F; Thu, 19 Mar 2009 09:34:25 +0100 (CET) Message-ID: <91210A8474CD444786833AFD3542BCCA@jarasoft.net> From: "Jack Raats" To: "Robert Watson" , "kama" References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu><20090318102134.D55869@ns1.as.pvp.se> Date: Thu, 19 Mar 2009 09:34:11 +0100 Organization: JaRaSoft, Steenbergen, Nederland MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5512 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Relayed-By: GPGrelay Version 0.959 (Win32) X-Virus-Scanned: ClamAV using ClamSMTP on orac.jarasoft.net Cc: Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jack Raats List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 08:47:25 -0000 ----- Original Message ----- From: "Robert Watson" > One of the most important things for us to keep an eye on in this release > is that the boot loader now works on a number of pieces of hardware on > which it reressed for 6.4/7.1. If it proves successful, we'll likely also > do errata notes and roll new ISOs for 6.4. About FreeBSD 6.4. If you consider to make new 6.4 iso's, perhaps it would be better to think about an 6.5 release???? Jack Raats From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 09:02:38 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D34B10656BE for ; Thu, 19 Mar 2009 09:02:38 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp02.sth.basefarm.net (ch-smtp02.sth.basefarm.net [80.76.149.213]) by mx1.freebsd.org (Postfix) with ESMTP id E8E768FC1F for ; Thu, 19 Mar 2009 09:02:37 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from c83-255-48-78.bredband.comhem.se ([83.255.48.78]:64695 helo=falcon.midgard.homeip.net) by ch-smtp02.sth.basefarm.net with smtp (Exim 4.68) (envelope-from ) id 1LkE8p-00045s-9X for freebsd-stable@FreeBSD.org; Thu, 19 Mar 2009 10:02:20 +0100 Received: (qmail 41047 invoked from network); 19 Mar 2009 10:02:19 +0100 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 19 Mar 2009 10:02:19 +0100 Received: (qmail 49331 invoked by uid 1001); 19 Mar 2009 10:02:19 +0100 Date: Thu, 19 Mar 2009 10:02:19 +0100 From: Erik Trulsson To: Robert Noland Message-ID: <20090319090219.GA49247@owl.midgard.homeip.net> References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> <20090319061438.GA48484@owl.midgard.homeip.net> <1237446254.6146.45.camel@balrog.2hip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1237446254.6146.45.camel@balrog.2hip.net> User-Agent: Mutt/1.5.18 (2008-05-17) X-Originating-IP: 83.255.48.78 X-Scan-Result: No virus found in message 1LkE8p-00045s-9X. X-Scan-Signature: ch-smtp02.sth.basefarm.net 1LkE8p-00045s-9X 8c7bbb4e1b664d0c215f845e18007e35 Cc: Greg Rivers , freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 09:02:38 -0000 On Thu, Mar 19, 2009 at 02:04:14AM -0500, Robert Noland wrote: > On Thu, 2009-03-19 at 07:14 +0100, Erik Trulsson wrote: > > On Wed, Mar 18, 2009 at 09:22:37PM -0500, Robert Noland wrote: > > > On Wed, 2009-03-18 at 18:18 -0500, Greg Rivers wrote: > > > > [snip] > > > > > > > > > > I'm curious about why the drm driver calls this card a RV370, while pciconf > > > > and the X server call it a RV380: > > > > pciconf: "RV380 RADEON X600 Series 265MB" > > > > > > I'm not sure where pciconf gets it's data. I would actaully like to > > > look at that. > > > > According to the pciconf(8) manpage: > > > > The PCI vendor/device information database is normally read from > > /usr/share/misc/pci_vendors. This path can be overridden by setting > > the environment variable PCICONF_VENDOR_DATABASE. > > Right, that is just the vendor id though, not the device name string. Have you actually looked at the contents of that file? All the strings describing vendor and device name that pciconf prints can be found in that file. > The reason that I'm curious is that I was trying to extract device name > info from Nvidia cards the other day, without using a static data > source. > > robert. > -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 09:24:41 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F70D1065676 for ; Thu, 19 Mar 2009 09:24:41 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 497BC8FC1B for ; Thu, 19 Mar 2009 09:24:41 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KGQ00DVKY53CQ60@osl1smout1.broadpark.no> for freebsd-stable@freebsd.org; Thu, 19 Mar 2009 10:24:39 +0100 (CET) Received: from kg-work2.kg4.no ([80.202.83.38]) by osl1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KGQ00502Y53KY80@osl1sminn1.broadpark.no> for freebsd-stable@freebsd.org; Thu, 19 Mar 2009 10:24:39 +0100 (CET) Date: Thu, 19 Mar 2009 10:24:39 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20090319102439.cd75b2a0.torfinn.ingolfsen@broadpark.no> In-reply-to: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.14.7; i386-portbld-freebsd7.1) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 09:24:42 -0000 On Wed, 18 Mar 2009 18:18:41 -0500 (CDT) Greg Rivers wrote: > I'm curious about why the drm driver calls this card a RV370, while > pciconf and the X server call it a RV380: You could always install the pciutils (sysutils/pciutils) port and find out what 'lspci' says, for one more data point. -- Torfinn Ingolfsen From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 09:34:13 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15A13106566B for ; Thu, 19 Mar 2009 09:34:13 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id E27FF8FC1E for ; Thu, 19 Mar 2009 09:34:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 7F84546B49; Thu, 19 Mar 2009 05:34:12 -0400 (EDT) Date: Thu, 19 Mar 2009 09:34:12 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Jack Raats In-Reply-To: <91210A8474CD444786833AFD3542BCCA@jarasoft.net> Message-ID: References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu><20090318102134.D55869@ns1.as.pvp.se> <91210A8474CD444786833AFD3542BCCA@jarasoft.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: kama , Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 09:34:13 -0000 On Thu, 19 Mar 2009, Jack Raats wrote: >> One of the most important things for us to keep an eye on in this release >> is that the boot loader now works on a number of pieces of hardware on >> which it reressed for 6.4/7.1. If it proves successful, we'll likely also >> do errata notes and roll new ISOs for 6.4. > > About FreeBSD 6.4. If you consider to make new 6.4 iso's, perhaps it would > be better to think about an 6.5 release???? It's a question of bandwidth for the release engineering team, ports team, security officer team, etc -- I think a 6.5 is pretty much out of the question right now with 8.0 preparing to ramp up and 7.2 now in flight. That gives us a short menu of options: - Errata patches - Errata patches + ISO reroll - Point release Because of the boot loader issues, errata patches don't really cut it alone, as if you can't install, you definitely can't apply errata patches :-). This suggests a reroll or a point release. For me the distinction remains fuzzy, but I think a key to either approach would be avoiding having to fully re-QA, do BETAs, build new packages, etc. This suggests taking RELENG_6_4 on some date, perhaps rebranching if it's a point release, or not if it's an ISO reroll, and bundling it with exactly the same packages we shipped in 6.4 (etc) and bumping a few documentation parts. We'd cut a release candidate just to make sure we had the bits right, ask people to test install it, etc, but as there would be no new features, we'd expect relatively little change. I think I wouldn't even change the proposed EoL date of the branch -- 7.x is doing very well, and we need developers to focus on getting 8.0 ready to ship. Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 09:51:47 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B0ED1065676; Thu, 19 Mar 2009 09:51:47 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (raats.xs4all.nl [82.95.230.43]) by mx1.freebsd.org (Postfix) with ESMTP id E1E918FC13; Thu, 19 Mar 2009 09:51:46 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (localhost.jarasoft.net [127.0.0.1]) by raats.xs4all.nl (Postfix) with ESMTP id 7697522EDD; Thu, 19 Mar 2009 10:51:59 +0100 (CET) Received: from jara3 (unknown [10.10.10.20]) by raats.xs4all.nl (Postfix) with ESMTPA id 3AB6422A2F; Thu, 19 Mar 2009 10:51:59 +0100 (CET) Message-ID: <997A6168643B453CB90D2A25AD7AE563@jarasoft.net> From: "Jack Raats" To: "Robert Watson" References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu><20090318102134.D55869@ns1.as.pvp.se> <91210A8474CD444786833AFD3542BCCA@jarasoft.net> Date: Thu, 19 Mar 2009 10:51:45 +0100 Organization: JaRaSoft, Steenbergen, Nederland MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5512 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Relayed-By: GPGrelay Version 0.959 (Win32) X-Virus-Scanned: ClamAV using ClamSMTP on orac.jarasoft.net Cc: kama , Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jack Raats List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 09:51:47 -0000 From: "Robert Watson" >> About FreeBSD 6.4. If you consider to make new 6.4 iso's, perhaps it >> would be better to think about an 6.5 release???? > > It's a question of bandwidth for the release engineering team, ports team, > security officer team, etc -- I think a 6.5 is pretty much out of the > question right now with 8.0 preparing to ramp up and 7.2 now in flight. > That gives us a short menu of options: > > - Errata patches > - Errata patches + ISO reroll > - Point release > > Because of the boot loader issues, errata patches don't really cut it > alone, as if you can't install, you definitely can't apply errata patches > :-). This suggests a reroll or a point release. This reminds me of FreeBSD 4.6 and FreeBSD 4.6.2 (The first FreeBSD I ever used was 4.6, that's why I remember) > For me the distinction remains fuzzy, but I think a key to either approach > would be avoiding having to fully re-QA, do BETAs, build new packages, > etc. This suggests taking RELENG_6_4 on some date, perhaps rebranching if > it's a point release, or not if it's an ISO reroll, and bundling it with > exactly the same packages we shipped in 6.4 (etc) and bumping a few > documentation parts. Indeed, that's a lot of work for an errata patch. Jack From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 12:28:03 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1938F106566C for ; Thu, 19 Mar 2009 12:28:03 +0000 (UTC) (envelope-from mlfreebsd@streamingedge.com) Received: from mail.streamingedge.com (mail.streamingedge.com [66.151.192.165]) by mx1.freebsd.org (Postfix) with ESMTP id E21748FC0C for ; Thu, 19 Mar 2009 12:28:02 +0000 (UTC) (envelope-from mlfreebsd@streamingedge.com) Received: from mail.streamingedge.com (localhost.streamingedge.com [127.0.0.1]) by mail.streamingedge.com (Postfix) with ESMTP id C1DBA119E36; Thu, 19 Mar 2009 08:11:01 -0400 (EDT) Received: from [172.17.0.115] (unknown [172.17.0.115]) by mail.streamingedge.com (Postfix) with ESMTPA id A5E15119E25; Thu, 19 Mar 2009 08:11:01 -0400 (EDT) Message-ID: <49C23639.5050109@streamingedge.com> Date: Thu, 19 Mar 2009 08:10:33 -0400 From: Jacques Manukyan Organization: StreamingEdge User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Squirrel References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-stable@freebsd.org Subject: Re: Crash!!! -- Permission Error X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jacques.manukyan@streamingedge.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 12:28:03 -0000 The first thing that pops into my mind is that you may not be running mysql as the mysql user. Are you using a custom startup script? Did you change the mysql_user variable in the startup script? Do you have a custom my.cnf perhaps? -- Jacques Manukyan Squirrel wrote: > I'm currently re-installing db41 port. Earlier using 'innodb_force_recovery = 6' seemed to fix that PANIC error. But I don't understand this permission error. I've tried various permissions as well 777, 766, 666, 760, etc etc. I've also ran mysqld_safe as root user, but with same permission error. Also tried different directories without luck. > > When I log in to the server shell, it won't chroot me to my home directory. Instead it puts me in '/' with error message "no .bash_login. And when I log out I get message "no .bash_logout". I've never had these files in any of my users' directories. Another strange thing just discovered is IE or FireFox display "Forbidden - You don't have permission to access / on this server", on all web sites. > > So it seems that I have permission problem globally not just within MySQL. What can possibly cause this permission problem? Hard drive corruption? > > > -----Original message----- > From: "Daniel O'Connor" doconnor@gsoft.com.au > Date: Thu, 19 Mar 2009 01:39:30 -0600 > To: freebsd-stable@freebsd.org > Subject: Re: Crash!!! > > >> On Thursday 19 March 2009 08:52:18 Squirrel wrote: >> >>> My webserver was working just fine on FreeBSD 6.2 Apache 2.2.11, MySQL >>> 5.0.27. All of sudden MySQL quit and won't start. At the same time when >>> logged in using SSH, it's looking for .bash_login and .bash_logout which it >>> never did before, and will not chroot to user's home. >>> >>> Trying to manual start mysql causes: >>> >>> 090318 17:09:52 mysqld started >>> 090318 17:09:52 InnoDB: Started; log sequence number 2 2195718579 >>> 090318 17:09:52 [ERROR] bdb: /home/mysql: Permission denied >>> 090318 17:09:52 [ERROR] bdb: /home/mysql/log.0000000001: Permission denied >>> 090318 17:09:52 [ERROR] bdb: PANIC: Permission denied >>> 090318 17:09:52 [ERROR] bdb: PANIC: DB_RUNRECOVERY: Fatal error, run >>> database recovery 090318 17:09:52 [ERROR] bdb: fatal region error >>> detected; run recovery 090318 17:09:52 [ERROR] bdb: /home/mysql: >>> Permission denied >>> 090318 17:09:52 [ERROR] /usr/local/libexec/mysqld: Can't create/write to >>> file '/home/mysql/webserver.isot.com.pid' (Errcode: 13) 090318 17:09:52 >>> [ERROR] Can't start server: can't create PID file: Permission denied 090318 >>> 17:09:52 mysqld ended >>> >>> I tried db_recover, but it's not found. HELP!!! >>> >> There are db_recover tools installed with BDB but they're called db41_recover >> or db_recover-4.2 etc. >> >> The other error is that it doesn't appear to be able to write to /home/mysql >> but in your next email the perms look OK (well they are bad because 777 is >> insecure but they won't result in permission denied) >> >> -- >> Daniel O'Connor software and network engineer >> for Genesis Software - http://www.gsoft.com.au >> "The nice thing about standards is that there >> are so many of them to choose from." >> -- Andrew Tanenbaum >> GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C >> >> >> >> > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 13:09:31 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D619F106564A for ; Thu, 19 Mar 2009 13:09:31 +0000 (UTC) (envelope-from tim@chase2k.com) Received: from smtp.onlight.com (mx2.onlight.com [69.128.127.253]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5848FC1C for ; Thu, 19 Mar 2009 13:09:31 +0000 (UTC) (envelope-from tim@chase2k.com) Received: from localhost (livingston [127.0.0.1]) by clean.onlight.com (Postfix) with ESMTP id 6781A82012A0 for ; Thu, 19 Mar 2009 07:05:42 -0500 (CDT) X-Virus-Scanned: amavisd-new at onlight.com Received: from smtp.onlight.com ([127.0.0.1]) by localhost (filter.onlight.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HnCGvjNIm7zS for ; Thu, 19 Mar 2009 07:05:38 -0500 (CDT) Received: from chase2k.com.vpn.onlight.com (chase2k.com.vpn.onlight.com [10.8.0.33]) by smtp.onlight.com (Postfix) with ESMTPA id 92CA6830272D for ; Thu, 19 Mar 2009 07:05:38 -0500 (CDT) Date: Thu, 19 Mar 2009 07:05:34 -0500 (CDT) From: Tim Chase Sender: tim@cardinal.onlight.com To: freebsd-stable@freebsd.org Message-ID: User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: in recent 7-STABLE: VOP_WRITE...is not exclusive locked but should be X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 13:09:32 -0000 Hello, I have a system that had been running quite well with an oldish 7-STABLE (from around August 7, 2008) but has started deadlocking within the past week or so. I updated the kernel to a newer 7-STABLE (Mar 15, 2009) and enabled INVARIANTS, INVARIANT_SUPPORT, WITNESS, DEBUG_LOCKS DEBUG_VFS_LOCKS and DIAGNOSTIC and the message indicated in the subject line has now appeared 3 times as shown below. Is this something to be terribly concerned about? Is there anything I can to to further track down the cause? Since the system is a production mail server, I have it set to not drop into DDB when this happens. The machine is a 4-core Xeon X5450 with 8G of RAM running FreeBSD amd64 and in userland it's pretty much just cyrus imapd and apache/php. The file systems are all ZFS on a bunch of SAS drives connected to a LSI Logic 1068 controller. As to the deadlock that started this exercise, if the machine follows its recent pattern, that should happen within the next 2-4 hours. Thanks, Tim -- kernel messages and dmesg.boot below -- Mar 18 14:46:56 xx kernel: KDB: stack backtrace: Mar 18 14:46:56 xx kernel: db_trace_self_wrapper() at db_trace_self_wrapper+0x2a Mar 18 14:46:56 xx kernel: vfs_badlock() at vfs_badlock+0x95 Mar 18 14:46:56 xx kernel: assert_vop_elocked() at assert_vop_elocked+0x64 Mar 18 14:46:56 xx kernel: VOP_WRITE_APV() at VOP_WRITE_APV+0x155 Mar 18 14:46:56 xx kernel: vn_write() at vn_write+0x1ce Mar 18 14:46:56 xx kernel: dofilewrite() at dofilewrite+0x85 Mar 18 14:46:56 xx kernel: kern_writev() at kern_writev+0x4c Mar 18 14:46:56 xx kernel: write() at write+0x54 Mar 18 14:46:56 xx kernel: syscall() at syscall+0x1f6 Mar 18 14:46:56 xx kernel: Xfast_syscall() at Xfast_syscall+0xab Mar 18 14:46:56 xx kernel: --- syscall (4, FreeBSD ELF64, write), rip = 0x8015aad3c, rsp = 0x7fffffffa658,rbp = 0x803df2fa0 --- Mar 18 23:56:45 xx kernel: KDB: stack backtrace: Mar 18 23:56:45 xx kernel: db_trace_self_wrapper() at db_trace_self_wrapper+0x2a Mar 18 23:56:45 xx kernel: vfs_badlock() at vfs_badlock+0x95 Mar 18 23:56:45 xx kernel: assert_vop_elocked() at assert_vop_elocked+0x64 Mar 18 23:56:45 xx kernel: VOP_WRITE_APV() at VOP_WRITE_APV+0x155 Mar 18 23:56:45 xx kernel: vn_write() at vn_write+0x1ce Mar 18 23:56:45 xx kernel: dofilewrite() at dofilewrite+0x85 Mar 18 23:56:45 xx kernel: kern_writev() at kern_writev+0x4c Mar 18 23:56:45 xx kernel: write() at write+0x54 Mar 18 23:56:45 xx kernel: syscall() at syscall+0x1f6 Mar 18 23:56:45 xx kernel: Xfast_syscall() at Xfast_syscall+0xab Mar 18 23:56:45 xx kernel: --- syscall (4, FreeBSD ELF64, write), rip = 0x8015aad3c, rsp = 0x7fffffffa658,rbp = 0x803e1427c --- Mar 18 23:56:45 xx kernel: VOP_WRITE: 0xffffff0106e9c290 is not exclusive locked but should be Mar 18 23:56:58 xx kernel: KDB: stack backtrace: Mar 18 23:56:58 xx kernel: db_trace_self_wrapper() at db_trace_self_wrapper+0x2a Mar 18 23:56:58 xx kernel: vfs_badlock() at vfs_badlock+0x95 Mar 18 23:56:58 xx kernel: assert_vop_elocked() at assert_vop_elocked+0x64 Mar 18 23:56:58 xx kernel: VOP_WRITE_APV() at VOP_WRITE_APV+0x155 Mar 18 23:56:58 xx kernel: vn_write() at vn_write+0x1ce Mar 18 23:56:58 xx kernel: dofilewrite() at dofilewrite+0x85 Mar 18 23:56:58 xx kernel: kern_writev() at kern_writev+0x4c Mar 18 23:56:58 xx kernel: write() at write+0x54 Mar 18 23:56:58 xx kernel: syscall() at syscall+0x1f6 Mar 18 23:56:58 xx kernel: Xfast_syscall() at Xfast_syscall+0xab Mar 18 23:56:58 xx kernel: --- syscall (4, FreeBSD ELF64, write), rip = 0x8015aad3c, rsp = 0x7fffffffa658,rbp = 0x803e1740c --- Mar 18 23:56:58 xx kernel: VOP_WRITE: 0xffffff0106e9c290 is not exclusive locked but should be Copyright (c) 1992-2009 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-STABLE #1: Sun Mar 15 12:20:02 CDT 2009 root@xx:/root/stable7-working/src/sys/amd64/compile/SWMAIL WARNING: WITNESS option enabled, expect reduced performance. WARNING: DIAGNOSTIC option enabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Xeon(R) CPU X5450 @ 3.00GHz (2992.52-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x10676 Stepping = 6 Features=0xbfebfbff Features2=0xce3bd> AMD Features=0x20100800 AMD Features2=0x1 Cores per package: 4 usable memory = 8580468736 (8182 MB) avail memory = 8283054080 (7899 MB) ACPI APIC Table: <042908 APIC1058> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 WITNESS: spin lock cpuset not in order list This module (opensolaris) contains code covered by the Common Development and Distribution License (CDDL) see http://opensolaris.org/os/licensing/opensolaris_license/ WITNESS: spin lock intrcnt not in order list ioapic0 irqs 0-23 on motherboard ioapic1 irqs 24-47 on motherboard ioapic2 irqs 48-71 on motherboard kbd1 at kbdmux0 acpi0: <042908 XSDT1058> on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of fed1c000, 4000 (3) failed acpi0: reservation of fed20000, 25000 (3) failed acpi0: reservation of fed45000, 5b000 (3) failed acpi0: reservation of feda0000, 20000 (3) failed acpi0: reservation of fec01000, 7f000 (3) failed acpi0: reservation of fec80000, 6000 (3) failed acpi0: reservation of fec86000, a000 (3) failed acpi0: reservation of ff000000, 400000 (3) failed acpi0: reservation of ff400000, 400000 (3) failed acpi0: reservation of ff800000, 400000 (3) failed acpi0: reservation of ffc00000, 400000 (3) failed acpi0: reservation of fec00000, 1000 (3) failed acpi0: reservation of fee00000, 1000 (3) failed acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, dff00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 48 at device 1.0 on pci0 pci11: on pcib1 pcib2: irq 52 at device 5.0 on pci0 pci10: on pcib2 pcib3: irq 56 at device 9.0 on pci0 pci5: on pcib3 pcib4: irq 16 at device 0.0 on pci5 pci7: on pcib4 pcib5: at device 0.0 on pci7 pci9: on pcib5 pcib6: at device 2.0 on pci7 pci8: on pcib6 em0: port 0xe880-0xe89f mem 0xfdfa0000-0xfdfbffff irq 18 at device 0.0 on pci8 em0: Using MSI interrupt em0: [FILTER] em0: Ethernet address: 00:22:15:88:38:fc em1: port 0xec00-0xec1f mem 0xfdfe0000-0xfdffffff irq 19 at device 0.1 on pci8 em1: Using MSI interrupt em1: [FILTER] em1: Ethernet address: 00:22:15:88:38:fd pcib7: at device 0.3 on pci5 pci6: on pcib7 mpt0: port 0xd000-0xd0ff mem 0xfdefc000-0xfdefffff,0xfdee0000-0xfdeeffff irq 26 at device 3.0 on pci6 mpt0: [ITHREAD] mpt0: MPI Version=1.5.16.0 mpt0: Capabilities: ( RAID-0 RAID-1E RAID-1 ) mpt0: 0 Active Volumes (2 Max) mpt0: 0 Hidden Drive Members (14 Max) pci0: at device 15.0 (no driver attached) pcib8: irq 16 at device 28.0 on pci0 pci4: on pcib8 pcib9: irq 18 at device 28.2 on pci0 pci3: on pcib9 em2: port 0xcc00-0xcc1f mem 0xfdae0000-0xfdafffff irq 18 at device 0.0 on pci3 em2: Using MSI interrupt em2: [FILTER] em2: Ethernet address: 00:22:15:88:39:93 pcib10: irq 19 at device 28.3 on pci0 pci2: on pcib10 em3: port 0xbc00-0xbc1f mem 0xfd9e0000-0xfd9fffff irq 19 at device 0.0 on pci2 em3: Using MSI interrupt em3: [FILTER] em3: Ethernet address: 00:22:15:88:39:61 pci0: at device 29.0 (no driver attached) pci0: at device 29.1 (no driver attached) pci0: at device 29.7 (no driver attached) pcib11: at device 30.0 on pci0 pci1: on pcib11 vgapci0: port 0xac00-0xac7f mem 0xf8000000-0xfbffffff,0xfd8c0000-0xfd8fffff at device 2.0 on pci1 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 31.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] atapci1: port 0x9c00-0x9c07,0x9880-0x9883,0x9800-0x9807,0x9480-0x9483,0x9400-0x940f mem 0xfd7ffc00-0xfd7fffff irq 19 at device 31.2 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] pci0: at device 31.3 (no driver attached) acpi_button0: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model IntelliMouse Explorer, device ID 4 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x30 on acpi0 sio0: type 16550A, console sio0: [FILTER] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A sio1: [FILTER] cpu0: on acpi0 est0: failed to enable SpeedStep p4tcc0: on cpu0 cpu1: on acpi0 est1: failed to enable SpeedStep p4tcc1: on cpu1 cpu2: on acpi0 est2: failed to enable SpeedStep p4tcc2: on cpu2 cpu3: on acpi0 est3: failed to enable SpeedStep p4tcc3: on cpu3 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xc8fff,0xc9000-0xc9fff,0xd0000-0xd0fff,0xd1000-0xd1fff on isa0 ppc0: cannot reserve I/O port range sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 WARNING: ZFS is considered to be an experimental feature in FreeBSD. Timecounters tick every 1.000 msec ZFS filesystem version 6 ZFS storage pool version 6 acd0: DMA limited to UDMA33, controller found non-ATA66 cable acd0: DVDROM at ata0-master UDMA33 da0 at mpt0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-5 device da0: 300.000MB/s transfers da0: Command Queueing Enabled da0: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da1 at mpt0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-5 device da1: 300.000MB/s transfers da1: Command Queueing Enabled da1: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da2 at mpt0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-5 device da2: 300.000MB/s transfers da2: Command Queueing Enabled da2: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da3 at mpt0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-5 device da3: 300.000MB/s transfers da3: Command Queueing Enabled da3: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da4 at mpt0 bus 0 target 4 lun 0 da4: Fixed Direct Access SCSI-5 device da4: 300.000MB/s transfers da4: Command Queueing Enabled da4: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da5 at mpt0 bus 0 target 5 lun 0 da5: Fixed Direct Access SCSI-5 device da5: 300.000MB/s transfers da5: Command Queueing Enabled da5: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da6 at mpt0 bus 0 target 6 lun 0 da6: Fixed Direct Access SCSI-5 device da6: 300.000MB/s transfers da6: Command Queueing Enabled da6: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) da7 at mpt0 bus 0 target 7 lun 0 da7: Fixed Direct Access SCSI-5 device da7: 300.000MB/s transfers da7: Command Queueing Enabled da7: 953869MB (1953525168 512 byte sectors: 255H 63S/T 121601C) SMP: AP CPU #1 Launched! SMP: AP CPU #3 Launched! SMP: AP CPU #2 Launched! WARNING: WITNESS option enabled, expect reduced performance. WARNING: DIAGNOSTIC option enabled, expect reduced performance. Trying to mount root from zfs:tank/root em1: link state changed to UP From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 15:58:39 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41D0A106575D; Thu, 19 Mar 2009 15:58:38 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 028998FC21; Thu, 19 Mar 2009 15:58:37 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id 8AA3346B0D; Thu, 19 Mar 2009 11:58:36 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2JFwIom016925; Thu, 19 Mar 2009 11:58:30 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-stable@freebsd.org Date: Thu, 19 Mar 2009 09:58:10 -0400 User-Agent: KMail/1.9.7 References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <91210A8474CD444786833AFD3542BCCA@jarasoft.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903190958.11440.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 19 Mar 2009 11:58:30 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9139/Thu Mar 19 10:09:58 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: kama , Ken Smith , Robert Watson Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 15:58:41 -0000 On Thursday 19 March 2009 5:34:12 am Robert Watson wrote: > For me the distinction remains fuzzy, but I think a key to either approach > would be avoiding having to fully re-QA, do BETAs, build new packages, etc. > This suggests taking RELENG_6_4 on some date, perhaps rebranching if it's a > point release, or not if it's an ISO reroll, and bundling it with exactly the > same packages we shipped in 6.4 (etc) and bumping a few documentation parts. > We'd cut a release candidate just to make sure we had the bits right, ask > people to test install it, etc, but as there would be no new features, we'd > expect relatively little change. I think I wouldn't even change the proposed > EoL date of the branch -- 7.x is doing very well, and we need developers to > focus on getting 8.0 ready to ship. Actually, a point release shouldn't be a rebranch, it would just be a new tag on the existing RELENG_6_4 branch. The only difference in a point release vs. an errata patch is what you change the release name to (6.4-RELEASE-p(X+1) vs 6.4.1-RELEASE)) and whether or not you upload bits to the ftp servers. If the goal is to generate ISOs that we put up for ftp, I think it should be a point release, but it would certainly reuse 6.4 packages (or have no packages). That is, I think "ISO reroll" == "point release". I also think we shouldn't upload things to ftp that aren't actual releases (that is, I wouldn't upload 6.4-RELEASE-p10 to ftp since we don't upload new release bits for every security advisory we do). -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 15:58:43 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2535E106564A for ; Thu, 19 Mar 2009 15:58:43 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id EB1AF8FC1F for ; Thu, 19 Mar 2009 15:58:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id 7F38A46B81; Thu, 19 Mar 2009 11:58:42 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2JFwIon016925; Thu, 19 Mar 2009 11:58:36 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-stable@freebsd.org Date: Thu, 19 Mar 2009 10:01:44 -0400 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903191001.44491.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 19 Mar 2009 11:58:36 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9139/Thu Mar 19 10:09:58 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Subject: Re: in recent 7-STABLE: VOP_WRITE...is not exclusive locked but should be X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 15:58:43 -0000 On Thursday 19 March 2009 8:05:34 am Tim Chase wrote: > Hello, > > I have a system that had been running quite well with an oldish 7-STABLE > (from around August 7, 2008) but has started deadlocking within the past > week or so. > > I updated the kernel to a newer 7-STABLE (Mar 15, 2009) and enabled > INVARIANTS, INVARIANT_SUPPORT, WITNESS, DEBUG_LOCKS DEBUG_VFS_LOCKS and > DIAGNOSTIC and the message indicated in the subject line has now appeared > 3 times as shown below. Is this something to be terribly concerned about? > Is there anything I can to to further track down the cause? Since the > system is a production mail server, I have it set to not drop into DDB > when this happens. > > The machine is a 4-core Xeon X5450 with 8G of RAM running FreeBSD > amd64 and in userland it's pretty much just cyrus imapd and apache/php. > The file systems are all ZFS on a bunch of SAS drives connected to a > LSI Logic 1068 controller. > > As to the deadlock that started this exercise, if the machine follows its > recent pattern, that should happen within the next 2-4 hours. Err, the vn_write() routine should be using an exclusive vnode lock: vn_write() { ... vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); if ((flags & FOF_OFFSET) == 0) uio->uio_offset = fp->f_offset; ioflag |= sequential_heuristic(uio, fp); #ifdef MAC error = mac_check_vnode_write(active_cred, fp->f_cred, vp); if (error == 0) #endif error = VOP_WRITE(vp, uio, ioflag, fp->f_cred); ... } Can you check your /sys/kern/vfs_vnops.c and verify that LK_EXCLUSIVE is present in your vn_write() routine? If so, then perhaps run memtest? -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 16:02:56 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83F8C106566C; Thu, 19 Mar 2009 16:02:56 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.terabit.net.ua (mail.terabit.net.ua [195.137.202.147]) by mx1.freebsd.org (Postfix) with ESMTP id 2591E8FC12; Thu, 19 Mar 2009 16:02:55 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from skuns.zoral.com.ua ([91.193.166.194] helo=mail.zoral.com.ua) by mail.terabit.net.ua with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1LkKhq-0003pS-9j; Thu, 19 Mar 2009 18:02:54 +0200 Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id n2JG2pj4017480 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 18:02:51 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3) with ESMTP id n2JG2pjd015512; Thu, 19 Mar 2009 18:02:51 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.3/8.14.3/Submit) id n2JG2pog015493; Thu, 19 Mar 2009 18:02:51 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Thu, 19 Mar 2009 18:02:51 +0200 From: Kostik Belousov To: John Baldwin Message-ID: <20090319160251.GJ7716@deviant.kiev.zoral.com.ua> References: <200903191001.44491.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XigHxYirkHk2Kxsx" Content-Disposition: inline In-Reply-To: <200903191001.44491.jhb@freebsd.org> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-Virus-Scanned: mail.terabit.net.ua 1LkKhq-0003pS-9j ade5638aca6ad4f7c42d7993a7234cc5 X-Terabit: YES Cc: freebsd-stable@freebsd.org Subject: Re: in recent 7-STABLE: VOP_WRITE...is not exclusive locked but should be X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 16:02:57 -0000 --XigHxYirkHk2Kxsx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 19, 2009 at 10:01:44AM -0400, John Baldwin wrote: > On Thursday 19 March 2009 8:05:34 am Tim Chase wrote: > > Hello, > >=20 > > I have a system that had been running quite well with an oldish 7-STABLE > > (from around August 7, 2008) but has started deadlocking within the past > > week or so. > >=20 > > I updated the kernel to a newer 7-STABLE (Mar 15, 2009) and enabled > > INVARIANTS, INVARIANT_SUPPORT, WITNESS, DEBUG_LOCKS DEBUG_VFS_LOCKS and > > DIAGNOSTIC and the message indicated in the subject line has now appear= ed > > 3 times as shown below. Is this something to be terribly concerned abo= ut? > > Is there anything I can to to further track down the cause? Since the > > system is a production mail server, I have it set to not drop into DDB > > when this happens. > >=20 > > The machine is a 4-core Xeon X5450 with 8G of RAM running FreeBSD > > amd64 and in userland it's pretty much just cyrus imapd and apache/php. > > The file systems are all ZFS on a bunch of SAS drives connected to a > > LSI Logic 1068 controller. > >=20 > > As to the deadlock that started this exercise, if the machine follows i= ts > > recent pattern, that should happen within the next 2-4 hours. >=20 > Err, the vn_write() routine should be using an exclusive vnode lock: >=20 > vn_write() > { >=20 > ... > vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); > if ((flags & FOF_OFFSET) =3D=3D 0) > uio->uio_offset =3D fp->f_offset; > ioflag |=3D sequential_heuristic(uio, fp); > #ifdef MAC > error =3D mac_check_vnode_write(active_cred, fp->f_cred, vp); > if (error =3D=3D 0) > #endif > error =3D VOP_WRITE(vp, uio, ioflag, fp->f_cred); > ... > } >=20 > Can you check your /sys/kern/vfs_vnops.c and verify that LK_EXCLUSIVE is= =20 > present in your vn_write() routine? If so, then perhaps run memtest? Note that this happens on the ZFS. Might be, ZFS unlocks the vnode and then relocks it with some invalid flags ? --XigHxYirkHk2Kxsx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAknCbKoACgkQC3+MBN1Mb4hjlgCaAp+sXu+hS5igKIyZar0Gl0oi YOMAoNne2paSwO+3Yb2ul98wSxAbu6+q =0vTG -----END PGP SIGNATURE----- --XigHxYirkHk2Kxsx-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 16:27:06 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8967D1065709; Thu, 19 Mar 2009 16:27:06 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 2AA1A8FC2E; Thu, 19 Mar 2009 16:27:06 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2JGPhr3081179 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 12:25:44 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Erik Trulsson In-Reply-To: <20090319090219.GA49247@owl.midgard.homeip.net> References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> <20090319061438.GA48484@owl.midgard.homeip.net> <1237446254.6146.45.camel@balrog.2hip.net> <20090319090219.GA49247@owl.midgard.homeip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-NOic6pblkZBlq4mJq4Ch" Organization: FreeBSD Date: Thu, 19 Mar 2009 11:26:48 -0500 Message-Id: <1237480008.1732.0.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: Greg Rivers , freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 16:27:09 -0000 --=-NOic6pblkZBlq4mJq4Ch Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2009-03-19 at 10:02 +0100, Erik Trulsson wrote: > On Thu, Mar 19, 2009 at 02:04:14AM -0500, Robert Noland wrote: > > On Thu, 2009-03-19 at 07:14 +0100, Erik Trulsson wrote: > > > On Wed, Mar 18, 2009 at 09:22:37PM -0500, Robert Noland wrote: > > > > On Wed, 2009-03-18 at 18:18 -0500, Greg Rivers wrote: > > >=20 > > > [snip] > > >=20 > > > > >=20 > > > > > I'm curious about why the drm driver calls this card a RV370, whi= le pciconf > > > > > and the X server call it a RV380: > > > > > pciconf: "RV380 RADEON X600 Series 265MB" > > > >=20 > > > > I'm not sure where pciconf gets it's data. I would actaully like t= o > > > > look at that. > > >=20 > > > According to the pciconf(8) manpage: > > >=20 > > > The PCI vendor/device information database is normally read from > > > /usr/share/misc/pci_vendors. This path can be overridden by set= ting > > > the environment variable PCICONF_VENDOR_DATABASE. > >=20 > > Right, that is just the vendor id though, not the device name string. >=20 > Have you actually looked at the contents of that file? > All the strings describing vendor and device name that pciconf prints can > be found in that file. Hrm, Ok... I only glanced at it, it lists only the vendors first. robert. >=20 > > The reason that I'm curious is that I was trying to extract device name > > info from Nvidia cards the other day, without using a static data > > source. > >=20 > > robert. > >=20 >=20 >=20 >=20 >=20 --=20 Robert Noland FreeBSD --=-NOic6pblkZBlq4mJq4Ch Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknCckgACgkQM4TrQ4qfROMuxACfUOvI6743Ft88gdur4+HDUH11 MkoAnianvA+O3sh5gyOlrWq2gSZIh9m8 =vlEi -----END PGP SIGNATURE----- --=-NOic6pblkZBlq4mJq4Ch-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 17:04:01 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B53A2106564A for ; Thu, 19 Mar 2009 17:04:01 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 77EDC8FC13 for ; Thu, 19 Mar 2009 17:04:01 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2JH2aJk081487 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 13:02:36 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Torfinn Ingolfsen In-Reply-To: <20090319102439.cd75b2a0.torfinn.ingolfsen@broadpark.no> References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <20090319102439.cd75b2a0.torfinn.ingolfsen@broadpark.no> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-abR7TyvHTMLrPRzIR7Jo" Organization: FreeBSD Date: Thu, 19 Mar 2009 12:03:41 -0500 Message-Id: <1237482221.1732.35.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-stable@freebsd.org Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 17:04:02 -0000 --=-abR7TyvHTMLrPRzIR7Jo Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2009-03-19 at 10:24 +0100, Torfinn Ingolfsen wrote: > On Wed, 18 Mar 2009 18:18:41 -0500 (CDT) > Greg Rivers wrote: >=20 > > I'm curious about why the drm driver calls this card a RV370, while > > pciconf and the X server call it a RV380: FWIW, despite the text description, drm treats this as CHIP_RV380. robert. > You could always install the pciutils (sysutils/pciutils) port and find > out what 'lspci' says, for one more data point. --=20 Robert Noland FreeBSD --=-abR7TyvHTMLrPRzIR7Jo Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknCeu0ACgkQM4TrQ4qfRONtwQCfWbE8H2VHWHkU+tjBc6nNR4Ev iRUAniJ7MBdMABO4Ds+YuaWmR9duYowf =uU2X -----END PGP SIGNATURE----- --=-abR7TyvHTMLrPRzIR7Jo-- From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 17:55:06 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9530D106564A for ; Thu, 19 Mar 2009 17:55:06 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC878FC0A for ; Thu, 19 Mar 2009 17:55:06 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id D434146B9F; Thu, 19 Mar 2009 13:55:05 -0400 (EDT) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n2JHsxf3017781; Thu, 19 Mar 2009 13:54:59 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Kostik Belousov Date: Thu, 19 Mar 2009 12:46:05 -0400 User-Agent: KMail/1.9.7 References: <200903191001.44491.jhb@freebsd.org> <20090319160251.GJ7716@deviant.kiev.zoral.com.ua> In-Reply-To: <20090319160251.GJ7716@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903191246.05641.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 19 Mar 2009 13:55:00 -0400 (EDT) X-Virus-Scanned: ClamAV 0.94.2/9140/Thu Mar 19 11:16:32 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: freebsd-stable@freebsd.org Subject: Re: in recent 7-STABLE: VOP_WRITE...is not exclusive locked but should be X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 17:55:06 -0000 On Thursday 19 March 2009 12:02:51 pm Kostik Belousov wrote: > On Thu, Mar 19, 2009 at 10:01:44AM -0400, John Baldwin wrote: > > On Thursday 19 March 2009 8:05:34 am Tim Chase wrote: > > > Hello, > > > > > > I have a system that had been running quite well with an oldish 7-STABLE > > > (from around August 7, 2008) but has started deadlocking within the past > > > week or so. > > > > > > I updated the kernel to a newer 7-STABLE (Mar 15, 2009) and enabled > > > INVARIANTS, INVARIANT_SUPPORT, WITNESS, DEBUG_LOCKS DEBUG_VFS_LOCKS and > > > DIAGNOSTIC and the message indicated in the subject line has now appeared > > > 3 times as shown below. Is this something to be terribly concerned about? > > > Is there anything I can to to further track down the cause? Since the > > > system is a production mail server, I have it set to not drop into DDB > > > when this happens. > > > > > > The machine is a 4-core Xeon X5450 with 8G of RAM running FreeBSD > > > amd64 and in userland it's pretty much just cyrus imapd and apache/php. > > > The file systems are all ZFS on a bunch of SAS drives connected to a > > > LSI Logic 1068 controller. > > > > > > As to the deadlock that started this exercise, if the machine follows its > > > recent pattern, that should happen within the next 2-4 hours. > > > > Err, the vn_write() routine should be using an exclusive vnode lock: > > > > vn_write() > > { > > > > ... > > vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); > > if ((flags & FOF_OFFSET) == 0) > > uio->uio_offset = fp->f_offset; > > ioflag |= sequential_heuristic(uio, fp); > > #ifdef MAC > > error = mac_check_vnode_write(active_cred, fp->f_cred, vp); > > if (error == 0) > > #endif > > error = VOP_WRITE(vp, uio, ioflag, fp->f_cred); > > ... > > } > > > > Can you check your /sys/kern/vfs_vnops.c and verify that LK_EXCLUSIVE is > > present in your vn_write() routine? If so, then perhaps run memtest? > > Note that this happens on the ZFS. Might be, ZFS unlocks the vnode and > then relocks it with some invalid flags ? Hmm, it depends on where the check is I guess (before or after zfs_write()). Tim, can you do 'l *VOP_WRITE_APV+0x155' on your kernel from gdb? -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 19:15:53 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CAE71065723 for ; Thu, 19 Mar 2009 19:15:53 +0000 (UTC) (envelope-from tim@chase2k.com) Received: from smtp.onlight.com (mx1.onlight.com [69.129.177.182]) by mx1.freebsd.org (Postfix) with ESMTP id EEC438FC08 for ; Thu, 19 Mar 2009 19:15:52 +0000 (UTC) (envelope-from tim@chase2k.com) Received: from localhost (livingston [127.0.0.1]) by clean.onlight.com (Postfix) with ESMTP id 2EB78830272D; Thu, 19 Mar 2009 14:08:23 -0500 (CDT) X-Virus-Scanned: amavisd-new at onlight.com Received: from smtp.onlight.com ([127.0.0.1]) by localhost (filter.onlight.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 6vC9MZl3UPoy; Thu, 19 Mar 2009 14:08:22 -0500 (CDT) Received: from chase2k.com.vpn.onlight.com (chase2k.com.vpn.onlight.com [10.8.0.33]) by smtp.onlight.com (Postfix) with ESMTPA id D43A583218BC; Thu, 19 Mar 2009 14:08:21 -0500 (CDT) Date: Thu, 19 Mar 2009 14:08:18 -0500 (CDT) From: Tim Chase Sender: tim@cardinal.onlight.com To: John Baldwin In-Reply-To: <200903191246.05641.jhb@freebsd.org> Message-ID: References: <200903191001.44491.jhb@freebsd.org> <20090319160251.GJ7716@deviant.kiev.zoral.com.ua> <200903191246.05641.jhb@freebsd.org> User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Kostik Belousov , freebsd-stable@freebsd.org Subject: Re: in recent 7-STABLE: VOP_WRITE...is not exclusive locked but should be X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 19:15:54 -0000 Hello, Regarding: >>>> As to the deadlock that started this exercise, if the machine follows > its >>>> recent pattern, that should happen within the next 2-4 hours. FWIW, it did _not_ deadlock this morning and there haven't been any more of the "is exclusive locked" messages have come out, either. John Baldwin asked: > Hmm, it depends on where the check is I guess (before or after zfs_write()). > Tim, can you do 'l *VOP_WRITE_APV+0x155' on your kernel from gdb? (kgdb) l *VOP_WRITE_APV+0x155 0xffffffff8048f4b5 is in VOP_WRITE_APV (vnode_if.c:704). 699 ASSERT_VOP_ELOCKED(a->a_vp, "VOP_WRITE"); 700 } else { 701 ASSERT_VI_UNLOCKED(a->a_vp, "VOP_WRITE"); 702 ASSERT_VOP_ELOCKED(a->a_vp, "VOP_WRITE"); 703 } 704 VOP_WRITE_POST(a, rc); 705 return (rc); 706 } 707 708 struct vnodeop_desc vop_write_desc = { (kgdb) Line 704 would appear to be after the ZFS write which I guess means ZFS is doing something it shouldn't be? - Tim From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 20:01:43 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C46E10656CC for ; Thu, 19 Mar 2009 20:01:43 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from QMTA02.westchester.pa.mail.comcast.net (qmta02.westchester.pa.mail.comcast.net [76.96.62.24]) by mx1.freebsd.org (Postfix) with ESMTP id BE3648FC28 for ; Thu, 19 Mar 2009 20:01:42 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from OMTA08.westchester.pa.mail.comcast.net ([76.96.62.12]) by QMTA02.westchester.pa.mail.comcast.net with comcast id Uy2p1b0020Fqzac5281jUx; Thu, 19 Mar 2009 20:01:43 +0000 Received: from roadkill.tharned.org ([75.145.12.185]) by OMTA08.westchester.pa.mail.comcast.net with comcast id V83o1b00g3zZBGT3U83qbP; Thu, 19 Mar 2009 20:03:52 +0000 Received: from roadkill.tharned.org (11008@localhost [127.0.0.1]) by roadkill.tharned.org (8.14.3/8.14.3) with ESMTP id n2JK1Ylj058675 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 15:01:35 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by roadkill.tharned.org (8.14.3/8.14.3/Submit) with ESMTP id n2JK1YDR058672; Thu, 19 Mar 2009 15:01:34 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Thu, 19 Mar 2009 15:01:34 -0500 (CDT) From: Greg Rivers To: Robert Noland In-Reply-To: <1237429357.1738.61.camel@balrog.2hip.net> Message-ID: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (roadkill.tharned.org [127.0.0.1]); Thu, 19 Mar 2009 15:01:35 -0500 (CDT) Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 20:01:43 -0000 On Wed, 18 Mar 2009, Robert Noland wrote: > Ok, so it isn't the gart caching... Can you get me a pointer to a > screenshot? > fetch http://www.tharned.org/rv380-drm-issue.tbz This archive contains various logs and system configuration files as well as screen shot images. Look at the README file for a description of the images. > What is garbled exactly? Is the damage constrained to specific windows > or it it the entire framebuffer? > The entire frame buffer is garbled; switching to syscons and back seems to change the way it's garbled. However, the interior of an xterm window is never garbled. I'm running a dual-head configuration with the frame buffer spanning both monitors. -- Greg Rivers From owner-freebsd-stable@FreeBSD.ORG Thu Mar 19 21:53:36 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B7F2106564A; Thu, 19 Mar 2009 21:53:36 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 4DEB88FC08; Thu, 19 Mar 2009 21:53:34 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2JLqD8c083149 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 19 Mar 2009 17:52:13 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Greg Rivers In-Reply-To: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-FhCq95KucvhXXPM0gMxe" Organization: FreeBSD Date: Thu, 19 Mar 2009 16:53:17 -0500 Message-Id: <1237499597.1732.329.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, MIME_QP_LONG_LINE,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 21:53:37 -0000 --=-FhCq95KucvhXXPM0gMxe Content-Type: multipart/mixed; boundary="=-CZWRO+TH2aglFuLXhIPm" --=-CZWRO+TH2aglFuLXhIPm Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2009-03-19 at 15:01 -0500, Greg Rivers wrote: > On Wed, 18 Mar 2009, Robert Noland wrote: >=20 > > Ok, so it isn't the gart caching... Can you get me a pointer to a=20 > > screenshot? > > >=20 > fetch http://www.tharned.org/rv380-drm-issue.tbz > This archive contains various logs and system configuration files as well= =20 > as screen shot images. Look at the README file for a description of the=20 > images. >=20 >=20 > > What is garbled exactly? Is the damage constrained to specific windows= =20 > > or it it the entire framebuffer? > > >=20 > The entire frame buffer is garbled; switching to syscons and back seems t= o=20 > change the way it's garbled. However, the interior of an xterm window is= =20 > never garbled. I'm running a dual-head configuration with the frame=20 > buffer spanning both monitors. Ok, I thought that I had already fixed this up, but I missed this spot... Please try this patch. robert. --=20 Robert Noland FreeBSD --=-CZWRO+TH2aglFuLXhIPm Content-Disposition: attachment; filename="drm-ati_pcigart.patch" Content-Transfer-Encoding: base64 Content-Type: text/x-patch; name="drm-ati_pcigart.patch"; charset="us-ascii" SW5kZXg6IGRldi9kcm0vYXRpX3BjaWdhcnQuYw0KPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGRldi9kcm0vYXRp X3BjaWdhcnQuYwkocmV2aXNpb24gMTkwMDk2KQ0KKysrIGRldi9kcm0vYXRpX3BjaWdhcnQuYwko d29ya2luZyBjb3B5KQ0KQEAgLTc1LDE4ICs3NSwxNSBAQA0KIAkgICAgTlVMTCwgTlVMTCwgLyog ZmlsdGZ1bmMsIGZpbHRmdW5jYXJncyAqLw0KIAkgICAgZ2FydF9pbmZvLT50YWJsZV9zaXplLCAx LCAvKiBtYXhzaXplLCBuc2VncyAqLw0KIAkgICAgZ2FydF9pbmZvLT50YWJsZV9zaXplLCAvKiBt YXhzZWdzaXplICovDQotCSAgICBCVVNfRE1BX0FMTE9DTk9XLCBOVUxMLCBOVUxMLCAvKiBmbGFn cywgbG9ja2Z1bmMsIGxvY2tmdW5jYXJncyAqLw0KKwkgICAgMCwgTlVMTCwgTlVMTCwgLyogZmxh Z3MsIGxvY2tmdW5jLCBsb2NrZnVuY2FyZ3MgKi8NCiAJICAgICZkbWFoLT50YWcpOw0KIAlpZiAo cmV0ICE9IDApIHsNCiAJCWZyZWUoZG1haCwgRFJNX01FTV9ETUEpOw0KIAkJcmV0dXJuIEVOT01F TTsNCiAJfQ0KIA0KLQlmbGFncyA9IEJVU19ETUFfTk9XQUlUIHwgQlVTX0RNQV9aRVJPOw0KLQlp ZiAoZ2FydF9pbmZvLT5nYXJ0X3JlZ19pZiA9PSBEUk1fQVRJX0dBUlRfSUdQKQ0KLQkgICAgZmxh Z3MgfD0gQlVTX0RNQV9OT0NBQ0hFOw0KLQkNCi0JcmV0ID0gYnVzX2RtYW1lbV9hbGxvYyhkbWFo LT50YWcsICZkbWFoLT52YWRkciwgZmxhZ3MsICZkbWFoLT5tYXApOw0KKwlyZXQgPSBidXNfZG1h bWVtX2FsbG9jKGRtYWgtPnRhZywgJmRtYWgtPnZhZGRyLA0KKwkgICAgQlVTX0RNQV9XQUlUT0sg fCBCVVNfRE1BX1pFUk8sICZkbWFoLT5tYXApOw0KIAlpZiAocmV0ICE9IDApIHsNCiAJCWJ1c19k bWFfdGFnX2Rlc3Ryb3koZG1haC0+dGFnKTsNCiAJCWZyZWUoZG1haCwgRFJNX01FTV9ETUEpOw0K QEAgLTk0LDggKzkxLDEyIEBADQogCX0NCiAJRFJNX0xPQ0soKTsNCiANCisJZmxhZ3MgPSBCVVNf RE1BX05PV0FJVDsNCisJaWYgKGdhcnRfaW5mby0+Z2FydF9yZWdfaWYgPT0gRFJNX0FUSV9HQVJU X0lHUCkNCisJICAgIGZsYWdzIHw9IEJVU19ETUFfTk9DQUNIRTsNCisJDQogCXJldCA9IGJ1c19k bWFtYXBfbG9hZChkbWFoLT50YWcsIGRtYWgtPm1hcCwgZG1haC0+dmFkZHIsDQotCSAgICBnYXJ0 X2luZm8tPnRhYmxlX3NpemUsIGRybV9hdGlfYWxsb2NfcGNpZ2FydF90YWJsZV9jYiwgZG1haCwg MCk7DQorCSAgICBnYXJ0X2luZm8tPnRhYmxlX3NpemUsIGRybV9hdGlfYWxsb2NfcGNpZ2FydF90 YWJsZV9jYiwgZG1haCwgZmxhZ3MpOw0KIAlpZiAocmV0ICE9IDApIHsNCiAJCWJ1c19kbWFtZW1f ZnJlZShkbWFoLT50YWcsIGRtYWgtPnZhZGRyLCBkbWFoLT5tYXApOw0KIAkJYnVzX2RtYV90YWdf ZGVzdHJveShkbWFoLT50YWcpOw0K --=-CZWRO+TH2aglFuLXhIPm-- --=-FhCq95KucvhXXPM0gMxe Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknCvs0ACgkQM4TrQ4qfROOJIACeNe8a/fNnSdpjYR125KaGMbN0 CqQAnjWbDFctBJVCCmiqQprHf8K9+zAu =m2Xz -----END PGP SIGNATURE----- --=-FhCq95KucvhXXPM0gMxe-- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 01:21:55 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 426771065670; Fri, 20 Mar 2009 01:21:55 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.227]) by mx1.freebsd.org (Postfix) with ESMTP id 02B188FC17; Fri, 20 Mar 2009 01:21:54 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by rv-out-0506.google.com with SMTP id l9so832247rvb.43 for ; Thu, 19 Mar 2009 18:21:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:date:to:cc :subject:message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=JeqV0DCafpuIh3aoo3P6oXv7wfWYTJxL3pIDxDt0WUQ=; b=h2kfPM6n/GOQxScyD6xsFyAbo2GQv4OxzTl/j0nbdvp4OA7Vi/CRp/Nqsgmnh714Vz byFdGrI0TCXzbWcHCamYVJlf2QR1od+x9OANMsbKl/PVdJWDb34Yxiu4febETq5ffGKQ KQjYjDsvSD6ZoNUxBZrH4O0jDdbTzT2c4acBo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=MskflxPI0yszB59hl7klw8+gGyH+yz5uK+S4Rbmyh+TbuA6wGJu5tji1pH3aSMywcF fB0arO7EGIkw20r10FtVYbGh2ePqbgNGQRDtc5ByOWWioVOSGYVRfjfCxBQbPUrcKJgg HmudkvXrsQ3PWCjOat6V2A+bRA4vBqsGepi4Q= Received: by 10.141.53.4 with SMTP id f4mr1056988rvk.35.1237512114738; Thu, 19 Mar 2009 18:21:54 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ([114.111.62.249]) by mx.google.com with ESMTPS id k2sm3512179rvb.14.2009.03.19.18.21.52 (version=SSLv3 cipher=RC4-MD5); Thu, 19 Mar 2009 18:21:53 -0700 (PDT) Received: by michelle.cdnetworks.co.kr (sSMTP sendmail emulation); Fri, 20 Mar 2009 10:22:23 +0900 From: Pyun YongHyeon Date: Fri, 20 Mar 2009 10:22:23 +0900 To: Steve Wills Message-ID: <20090320012223.GA50100@michelle.cdnetworks.co.kr> References: <20090226003842.GB63173@michelle.cdnetworks.co.kr> <95AD32AC-93AE-4945-A18E-CE7099BEC3CA@stevenwills.com> <20090226041023.GD63173@michelle.cdnetworks.co.kr> <594BAC6A-498A-4B82-A18B-EB09FEA2F322@stevenwills.com> <20090226042732.GE63173@michelle.cdnetworks.co.kr> <22F5A82D-290D-4B84-92AB-670EDB49AF22@stevenwills.com> <20090303120734.GB84434@michelle.cdnetworks.co.kr> <26A74AAD-1556-4BA7-8E89-72BE36C667A7@stevenwills.com> <20090309035613.GF5039@michelle.cdnetworks.co.kr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090309035613.GF5039@michelle.cdnetworks.co.kr> User-Agent: Mutt/1.4.2.3i Cc: stable@freebsd.org, yongari@freebsd.org Subject: Re: 7.1-R to RELENG_7 upgrade breaks re nic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 01:21:55 -0000 On Mon, Mar 09, 2009 at 12:56:13PM +0900, Pyun YongHyeon wrote: > On Sun, Mar 08, 2009 at 09:52:19PM -0400, Steve Wills wrote: > > Hi, > > > > Sorry for the late reply. > > > > On Mar 3, 2009, at 7:07 AM, Pyun YongHyeon wrote: > > >Ok, when you plug UTP cable can you see "re0: link state changed to > > >UP" in dmesg output? Or if you unplug the cable, you should see > > >"re0: link state changed to DOWN"(With "tail -f /var/log/message", > > >you can easily check this.) > > > > Nope. > > > > > > > >If this is not the case something is wrong on RTL8168D. Since > > >you've said re0 works for a short time, can you see "re0: link > > >state changed to DOWN" on your dmesg output right before seeing > > >"re0: PHY read failed" message? > > > > After boot and DHCP, it works for about a minute, then I see "PHY read > > failed" for a few seconds, network continues to work, then I see "link > > state changed to DOWN", network stops working and frequency of read > > failed message increases. Unplugging the cable and plugging it back in > > doesn't change anything or cause the system to log any messages beyond > > "PHY read failed". > > > > >I've also attached patch which may apply to your case. Would you > > >give it spin? Note, the patch was generated against CURRENT, so > > >you should use re(4) in CURRENT. Just save your old re(4)/rl(4) > > >files and download if_re.c, if_rl.c and if_rlreg.h from CURRENT > > >and apply the patch. > > > > > > > Unfortunately, for me, this patch doesn't change things. > > > > Ok, please try again with attached patch. Any progress here? I've checked changes made in RELENG7 but I failed to see what revision broke RTL8168D support. Can you narrow down which revision broke RTL8168D support if previous patch have no effect? > Index: sys/dev/re/if_re.c > =================================================================== > --- sys/dev/re/if_re.c (revision 189551) > +++ sys/dev/re/if_re.c (working copy) > @@ -1266,6 +1266,8 @@ > /* FALLTHROUGH */ > case RL_HWREV_8168CP: > case RL_HWREV_8168D: > + if (hw_rev->rl_rev == RL_HWREV_8168D) > + sc->rl_flags |= 0x10000; > sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_PAR | > RL_FLAG_DESCV2 | RL_FLAG_MACSTAT | RL_FLAG_CMDSTOP; > /* > @@ -2061,6 +2063,8 @@ > > RL_LOCK_ASSERT(sc); > > + if ((sc->rl_flags & 0x10000) != 0) > + re_miibus_writereg(sc->rl_dev, 1, 0x1f, 0); > mii = device_get_softc(sc->rl_miibus); > mii_tick(mii); > if ((sc->rl_flags & RL_FLAG_LINK) == 0) From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 03:32:26 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71E3E106566B for ; Fri, 20 Mar 2009 03:32:26 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from QMTA06.emeryville.ca.mail.comcast.net (qmta06.emeryville.ca.mail.comcast.net [76.96.30.56]) by mx1.freebsd.org (Postfix) with ESMTP id 379198FC1B for ; Fri, 20 Mar 2009 03:32:26 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from OMTA04.emeryville.ca.mail.comcast.net ([76.96.30.35]) by QMTA06.emeryville.ca.mail.comcast.net with comcast id V3ii1b0010lTkoCA6FYTBx; Fri, 20 Mar 2009 03:32:27 +0000 Received: from packrat.tharned.org ([75.145.12.185]) by OMTA04.emeryville.ca.mail.comcast.net with comcast id VFYN1b00C3zZBGT8QFYRLy; Fri, 20 Mar 2009 03:32:26 +0000 Received: from packrat.tharned.org (11008@localhost [127.0.0.1]) by packrat.tharned.org (8.14.3/8.14.3) with ESMTP id n2K3WKw9001195; Thu, 19 Mar 2009 22:32:20 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by packrat.tharned.org (8.14.3/8.14.3/Submit) with ESMTP id n2K3WJcP001192; Thu, 19 Mar 2009 22:32:19 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Thu, 19 Mar 2009 22:32:19 -0500 (CDT) From: Greg Rivers To: Robert Noland In-Reply-To: <1237499597.1732.329.camel@balrog.2hip.net> Message-ID: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> <1237499597.1732.329.camel@balrog.2hip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="=-CZWRO+TH2aglFuLXhIPm" Content-ID: Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 03:32:26 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --=-CZWRO+TH2aglFuLXhIPm Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; format=flowed Content-ID: On Thu, 19 Mar 2009, Robert Noland wrote: > On Thu, 2009-03-19 at 15:01 -0500, Greg Rivers wrote: >> On Wed, 18 Mar 2009, Robert Noland wrote: >> >>> Ok, so it isn't the gart caching... Can you get me a pointer to a >>> screenshot? >>> >> >> fetch http://www.tharned.org/rv380-drm-issue.tbz >> This archive contains various logs and system configuration files as well >> as screen shot images. Look at the README file for a description of the >> images. >> >> >>> What is garbled exactly? Is the damage constrained to specific windows >>> or it it the entire framebuffer? >>> >> >> The entire frame buffer is garbled; switching to syscons and back seems to >> change the way it's garbled. However, the interior of an xterm window is >> never garbled. I'm running a dual-head configuration with the frame >> buffer spanning both monitors. > > Ok, I thought that I had already fixed this up, but I missed this > spot... Please try this patch. > It's still garbled with this patch too. Any other ideas? Just let me know when it's time for me to buy a different video card. :-) -- Greg Rivers --=-CZWRO+TH2aglFuLXhIPm Content-Type: TEXT/X-PATCH; NAME=drm-ati_pcigart.patch; CHARSET=us-ascii Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME=drm-ati_pcigart.patch SW5kZXg6IGRldi9kcm0vYXRpX3BjaWdhcnQuYw0KPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGRldi9kcm0vYXRp X3BjaWdhcnQuYwkocmV2aXNpb24gMTkwMDk2KQ0KKysrIGRldi9kcm0vYXRpX3BjaWdhcnQuYwko d29ya2luZyBjb3B5KQ0KQEAgLTc1LDE4ICs3NSwxNSBAQA0KIAkgICAgTlVMTCwgTlVMTCwgLyog ZmlsdGZ1bmMsIGZpbHRmdW5jYXJncyAqLw0KIAkgICAgZ2FydF9pbmZvLT50YWJsZV9zaXplLCAx LCAvKiBtYXhzaXplLCBuc2VncyAqLw0KIAkgICAgZ2FydF9pbmZvLT50YWJsZV9zaXplLCAvKiBt YXhzZWdzaXplICovDQotCSAgICBCVVNfRE1BX0FMTE9DTk9XLCBOVUxMLCBOVUxMLCAvKiBmbGFn cywgbG9ja2Z1bmMsIGxvY2tmdW5jYXJncyAqLw0KKwkgICAgMCwgTlVMTCwgTlVMTCwgLyogZmxh Z3MsIGxvY2tmdW5jLCBsb2NrZnVuY2FyZ3MgKi8NCiAJICAgICZkbWFoLT50YWcpOw0KIAlpZiAo cmV0ICE9IDApIHsNCiAJCWZyZWUoZG1haCwgRFJNX01FTV9ETUEpOw0KIAkJcmV0dXJuIEVOT01F TTsNCiAJfQ0KIA0KLQlmbGFncyA9IEJVU19ETUFfTk9XQUlUIHwgQlVTX0RNQV9aRVJPOw0KLQlp ZiAoZ2FydF9pbmZvLT5nYXJ0X3JlZ19pZiA9PSBEUk1fQVRJX0dBUlRfSUdQKQ0KLQkgICAgZmxh Z3MgfD0gQlVTX0RNQV9OT0NBQ0hFOw0KLQkNCi0JcmV0ID0gYnVzX2RtYW1lbV9hbGxvYyhkbWFo LT50YWcsICZkbWFoLT52YWRkciwgZmxhZ3MsICZkbWFoLT5tYXApOw0KKwlyZXQgPSBidXNfZG1h bWVtX2FsbG9jKGRtYWgtPnRhZywgJmRtYWgtPnZhZGRyLA0KKwkgICAgQlVTX0RNQV9XQUlUT0sg fCBCVVNfRE1BX1pFUk8sICZkbWFoLT5tYXApOw0KIAlpZiAocmV0ICE9IDApIHsNCiAJCWJ1c19k bWFfdGFnX2Rlc3Ryb3koZG1haC0+dGFnKTsNCiAJCWZyZWUoZG1haCwgRFJNX01FTV9ETUEpOw0K QEAgLTk0LDggKzkxLDEyIEBADQogCX0NCiAJRFJNX0xPQ0soKTsNCiANCisJZmxhZ3MgPSBCVVNf RE1BX05PV0FJVDsNCisJaWYgKGdhcnRfaW5mby0+Z2FydF9yZWdfaWYgPT0gRFJNX0FUSV9HQVJU X0lHUCkNCisJICAgIGZsYWdzIHw9IEJVU19ETUFfTk9DQUNIRTsNCisJDQogCXJldCA9IGJ1c19k bWFtYXBfbG9hZChkbWFoLT50YWcsIGRtYWgtPm1hcCwgZG1haC0+dmFkZHIsDQotCSAgICBnYXJ0 X2luZm8tPnRhYmxlX3NpemUsIGRybV9hdGlfYWxsb2NfcGNpZ2FydF90YWJsZV9jYiwgZG1haCwg MCk7DQorCSAgICBnYXJ0X2luZm8tPnRhYmxlX3NpemUsIGRybV9hdGlfYWxsb2NfcGNpZ2FydF90 YWJsZV9jYiwgZG1haCwgZmxhZ3MpOw0KIAlpZiAocmV0ICE9IDApIHsNCiAJCWJ1c19kbWFtZW1f ZnJlZShkbWFoLT50YWcsIGRtYWgtPnZhZGRyLCBkbWFoLT5tYXApOw0KIAkJYnVzX2RtYV90YWdf ZGVzdHJveShkbWFoLT50YWcpOw0K --=-CZWRO+TH2aglFuLXhIPm-- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 04:28:56 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1224106566B for ; Fri, 20 Mar 2009 04:28:55 +0000 (UTC) (envelope-from socialmsg.hq3tkzlfmjrdgodfha3dkyrwmqydmmbsgfrdkm3dge4dczrvgvtgkljrgawtembpjvqxelzsgaydsljqgq5dcnj2gizc2kzqgaydapq-freebsd-stable=freebsd.org@returns.bulk.yahoo.com) Received: from n1a.bullet.mud.yahoo.com (n1a.bullet.mud.yahoo.com [209.191.126.212]) by mx1.freebsd.org (Postfix) with SMTP id B94158FC19 for ; Fri, 20 Mar 2009 04:28:55 +0000 (UTC) (envelope-from socialmsg.hq3tkzlfmjrdgodfha3dkyrwmqydmmbsgfrdkm3dge4dczrvgvtgkljrgawtembpjvqxelzsgaydsljqgq5dcnj2gizc2kzqgaydapq-freebsd-stable=freebsd.org@returns.bulk.yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo-inc.com; s=ginc1024; t=1237522522; bh=jeaN2EcoYziSFkuBtuPt5pIg7/GBq+HJAbTg+KdOFU0=; h=Received:Received:Received:To:From:Reply-To:Subject:Date:MIME-Version:Content-type:Content-transfer-encoding:X-Yahoo-Newman-Property:X-Yahoo-Newman-Id; b=H+DMvFGvM4TGuQBs/EB3rEZJFaDM2hL//Fn4IWIo+gi7WCVbhm4+F4ihgRlzEDUB8U9R4AsWnuT+DGd2C6n3XuKx0b1bryd24SFXX94Ae4iwOI3ps7wREAmO9lH39yhwIN252aPicdmirw8uyDEK4YUVicUZPsgpUCKCST0ziFI= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ginc1024; d=yahoo-inc.com; b=hmfB0xWuHH/KoAY51p9sSOZ1WdNOgYyVOYx7oORYVeEv6yiw/QJIB7ZrFN/ymtqMvpAPcs4fdl+bY5BIa0IXyeB1f1BUA3b29MOgpZP4LGJTadItYtd1iZOkNhvLcg+vR5LNXUjYG1/Fq46JXGPFfXcSKr1Sf9XlLytaMhKD6ho=; Received: from [68.142.194.243] by n1.bullet.mud.yahoo.com with NNFMP; 20 Mar 2009 04:15:22 -0000 Received: from [209.191.109.72] by t1.bullet.mud.yahoo.com with NNFMP; 20 Mar 2009 04:15:22 -0000 Received: from [127.0.0.1] by mr1.yosmsg.mud.yahoo.com with NNFMP; 20 Mar 2009 04:15:22 -0000 To: =?utf-8?b?RmFubnkgU2FudG9zIA==?= From: =?utf-8?b?RmFubnkgU2FudG9z?= Date: 20 Mar 2009 04:15:22 +0000 Content-transfer-encoding: base64 X-Yahoo-Newman-Property: socialmsg X-Yahoo-Newman-Id: <75eebb38e865b6d06021b53c181f55fe-10-20/Mar/2009-04:15:22-+0000> Message-Id: <20090320042855.B94158FC19@mx1.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fanny Santos wants to connect to you on Yahoo! X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: do-not-reply@profiles.yahoo.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 04:28:56 -0000 PGh0bWw+Cjxib2R5IHN0eWxlPSJtYXJnaW46MDtwYWRkaW5nOjA7Ij4KPHRhYmxlIGJvcm Rlcj0i MCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSI+CiAgPH RyPgog ICAgPHRkIHN0eWxlPSJiYWNrZ3JvdW5kOiNGMUYxRjEgdXJsKGh0dHA6Ly91cy5pMS55aW 1nLmNv bS91cy55aW1nLmNvbS9pL3VzL21hc2gvZ3IvY250LWdyZC0xcHguZ2lmKSAwIDEwMCUgcm VwZWF0 LXg7cGFkZGluZy1sZWZ0OjNweDtwYWRkaW5nLXRvcDo2cHg7IiB2YWxpZ249InRvcCIgYm djb2xv cj0iI0YxRjFGMSIgaGVpZ2h0PSI0OCI+CiAgICAgIDxpbWcgc3JjPSJodHRwOi8vdXMuaT EueWlt Zy5jb20vdXMueWltZy5jb20vaS91cy9udC9iL21hXzAxLmdpZiIgYWx0PSJZYWhvbyEiIH dpZHRo PSIxNDciIGhlaWdodD0iMzEiPgogICAgPC90ZD4KICA8L3RyPgo8L3RhYmxlPgo8ZGl2IH N0eWxl PSJtYXJnaW46MCAwIDMwcHggMThweDsiPgo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZG luZz0i MCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSI2MDAiIHN0eWxlPSJtYXJnaW4tdG9wOjlweD siPgog IDx0cj4KICAgIDx0ZCBjb2xzcGFuPSIyIj4KICAgICAgIDxkaXYgc3R5bGU9Im1hcmdpbi 1ib3R0 b206MTNweDtmb250LWZhbWlseTphcmlhbCx2ZXJkYW5hLGhlbHZldGljYTtmb250LXNpem U6MzBw eDsiPkxldCdzIGNvbm5lY3Qgb24gWWFob28hPC9kaXY+CiAgICA8L3RkPgogIDwvdHI+Ci AgPHRy PgogICAgPHRkIHZhbGlnbj0idG9wIiBzdHlsZT0icGFkZGluZy1yaWdodDo1MHB4OyI+Ci AgICAg ICA8ZGl2PjxhIGhyZWY9Imh0dHA6Ly9wcm9maWxlcy55YWhvby5jb20vYWNjZXB0L0kuZW ptVGlZ Szh6WV9ab0duZHhRUHdSZWlNLmFMVURNaTVsR0ExZ2U1dDM0cmpnb1d3cTFWbFZnYkpEVj 9xPTAi PjxpbWcgc3JjPSJodHRwOi8vdXMuaTEueWltZy5jb20vdXMueWltZy5jb20vaS91cy9tYX NoL2dy L2FjY2VwdF9idXR0b24ucG5nIiBib3JkZXI9IjAiIGFsdD0iQWNjZXB0IEludml0YXRpb2 4iIHdp ZHRoPSIyMzUiIGhlaWdodD0iMzMiPjwvYT48L2Rpdj4KICAgICAgIDxkaXYgc3R5bGU9Im 1hcmdp bjoxNnB4IDA7bGluZS1oZWlnaHQ6MS4xMWVtO2ZvbnQtZmFtaWx5OmFyaWFsLHZlcmRhbm EsaGVs dmV0aWNhO2ZvbnQtc2l6ZToxOHB4OyI+Q29ubmVjdGluZyBtYWtlcyBpdCBlYXN5IHRvIG tlZXAg dXAgd2l0aCBmcmllbmRzIGFuZCBmYW1pbHk8L2Rpdj4KICAgICAgIDxkaXYgc3R5bGU9Im 1hcmdp bi1ib3R0b206MThweDtmb250LWZhbWlseTphcmlhbCx2ZXJkYW5hLGhlbHZldGljYTtmb2 50LXNp emU6MTRweDtjb2xvcjojMzMzMzMzOyI+JmJ1bGw7Jm5ic3A7WW91IGdldCBhdXRvbWF0aW NhbGx5 IHVwZGF0ZWQgd2hlbiBJIHNoYXJlIHN0dWZmIG9ubGluZSAtIGluY2x1ZGluZyBteSBwaG 90b3Mg YW5kIHJldmlld3M8L2Rpdj4KICAgICAgIDxkaXYgc3R5bGU9Im1hcmdpbi1ib3R0b206MT hweDtm b250LWZhbWlseTphcmlhbCx2ZXJkYW5hLGhlbHZldGljYTtmb250LXNpemU6MTRweDtjb2 xvcjoj MzMzMzMzOyI+JmJ1bGw7Jm5ic3A7WW91IGNhbiBzZWUgbXkgcHJvZmlsZSBvbiBZYWhvby E8L2Rp dj4KICAgICAgIDxkaXYgc3R5bGU9Im1hcmdpbi1ib3R0b206MThweDtmb250LWZhbWlseT phcmlh bCx2ZXJkYW5hLGhlbHZldGljYTtmb250LXNpemU6MTRweDtjb2xvcjojMzMzMzMzOyI+Jm J1bGw7 Jm5ic3A7WW91J2xsIGdldCBlYXJsaWVyIGFjY2VzcyB0byA8YSBocmVmPSJodHRwOi8vb3 ZlcnZp ZXcubWFpbC55YWhvby5jb20vd2hhdHNuZXcvc21hcnRlcmluYm94Ij5jb29sIG5ldyBZYW hvbyEg TWFpbCBmZWF0dXJlczwvYT48L2Rpdj4KICAgICAgIDxkaXYgc3R5bGU9ImZvbnQtZmFtaW x5OmFy aWFsLHZlcmRhbmEsaGVsdmV0aWNhO2ZvbnQtc2l6ZToxNnB4OyI+QW5kIG11Y2ggbW9yZS Bjb21p bmcgc29vbiE8L2Rpdj4KICAgICAgIDxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OmFyaWFsLH ZlcmRh bmEsaGVsdmV0aWNhO2ZvbnQtc2l6ZToxNnB4OyI+PGEgaHJlZj0iaHR0cDovL3Byb2ZpbG VzLnlh aG9vLmNvbS9hY2NlcHQvSS5lam1UaVlLOHpZX1pvR25keFFQd1JlaU0uYUxVRE1pNWxHQT FnZTV0 MzRyamdvV3dxMVZsVmdiSkRWP3E9MCI+Q2xpY2sgaGVyZSB0byBhY2NlcHQ8L2E+PC9kaX Y+CiAg ICA8L3RkPgogICAgPHRkIHZhbGlnbj0idG9wIiBzdHlsZT0iYmFja2dyb3VuZDp1cmwoaH R0cDov L3VzLmkxLnlpbWcuY29tL3VzLnlpbWcuY29tL2kvdXMvbWFzaC9nci9waG90b19iZy5naW YpIC02 cHggLTJweCBuby1yZXBlYXQ7cGFkZGluZzo1cHg7Ij4KICAgICAgIDxhIGhyZWY9Imh0dH A6Ly9w cm9maWxlcy55YWhvby5jb20vdS9EQ0VGWkFGQlZWSlZKNVVSVk5QUklaMlc3USI+PGltZy BzcmM9 Imh0dHA6Ly9sLnlpbWcuY29tL3VzLnlpbWcuY29tL2kvaWRlbnRpdHkvbm9waWNfMTkyLm dpZiIg Ym9yZGVyPSIwIiBhbHQ9IiIgd2lkdGg9IjE5MiIgaGVpZ2h0PSIxOTIiPjwvYT4KICAgIC AgIDxk aXYgc3R5bGU9Im1hcmdpbi10b3A6OHB4O2ZvbnQtZmFtaWx5OmFyaWFsLHZlcmRhbmEsaG VsdmV0 aWNhO2ZvbnQtc2l6ZToxOHB4OyI+PGEgaHJlZj0iaHR0cDovL3Byb2ZpbGVzLnlhaG9vLm NvbS91 L0RDRUZaQUZCVlZKVko1VVJWTlBSSVoyVzdRIj5GYW5ueSBTYW50b3MgKEZhbm55Uyk8L2 E+PC9k aXY+CiAgICA8L3RkPgogIDwvdHI+CjwvdGFibGU+CjwvZGl2Pgo8aHIgbm9zaGFkZSBzaX plPSIx IiBjb2xvcj0iI0I1QjVCNSI+CjxkaXYgc3R5bGU9Im1hcmdpbjotNXB4IDAgMCAyM3B4O3 dpZHRo OjYwMHB4OyIgd2lkdGg9IjYwMCI+CiAgIDxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OmFyaW FsLHZl cmRhbmEsaGVsdmV0aWNhO2ZvbnQtc2l6ZToxMXB4O2NvbG9yOiMzMzMzMzM7Ij4KICAgIC AgVGhp cyBpbnZpdGF0aW9uIHdpbGwgZXhwaXJlIGFmdGVyIDkwIGRheXMuCiAgICAgIDxicj4KIC AgICAg V2FudCB0byBjb250cm9sIHdoaWNoIGVtYWlscyB5b3UgcmVjZWl2ZSBhYm91dCB5b3VyIG Nvbm5l Y3Rpb25zIGFuZCB5b3VyIHByb2ZpbGUgb24gWWFob28hPwogICAgICA8YnI+CiAgICAgIE dvIHRv OiA8YSBocmVmPSJodHRwOi8vcHJvZmlsZXMueWFob28uY29tL3NldHRpbmdzL25vdGlmaW NhdGlv bnMiPmh0dHA6Ly9wcm9maWxlcy55YWhvby5jb20vc2V0dGluZ3Mvbm90aWZpY2F0aW9ucz wvYT4K ICAgIDwvZGl2Pgo8L2Rpdj4KPC9ib2R5Pgo8L2h0bWw+Cg== From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 04:28:59 2009 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F66D106566C; Fri, 20 Mar 2009 04:28:59 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id E72EB8FC08; Fri, 20 Mar 2009 04:28:58 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.156] (adsl-19-214-182.bna.bellsouth.net [68.19.214.182]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n2K4RbrN085116 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 20 Mar 2009 00:27:37 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Greg Rivers In-Reply-To: References: <1231599679.1837.13.camel@wombat.2hip.net> <1237318671.1728.7.camel@balrog.2hip.net> <1237395643.1738.3.camel@balrog.2hip.net> <1237429357.1738.61.camel@balrog.2hip.net> <1237499597.1732.329.camel@balrog.2hip.net> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-YonMED6pNrTvGhnEByqQ" Organization: FreeBSD Date: Thu, 19 Mar 2009 23:28:39 -0500 Message-Id: <1237523319.1777.407.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port X-Spam-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: freebsd-x11 , freebsd-stable Subject: Re: [HEADS UP] drm merged to -STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 04:28:59 -0000 --=-YonMED6pNrTvGhnEByqQ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2009-03-19 at 22:32 -0500, Greg Rivers wrote: > On Thu, 19 Mar 2009, Robert Noland wrote: >=20 > > On Thu, 2009-03-19 at 15:01 -0500, Greg Rivers wrote: > >> On Wed, 18 Mar 2009, Robert Noland wrote: > >> > >>> Ok, so it isn't the gart caching... Can you get me a pointer to a > >>> screenshot? > >>> > >> > >> fetch http://www.tharned.org/rv380-drm-issue.tbz > >> This archive contains various logs and system configuration files as w= ell > >> as screen shot images. Look at the README file for a description of t= he > >> images. > >> > >> > >>> What is garbled exactly? Is the damage constrained to specific windo= ws > >>> or it it the entire framebuffer? > >>> > >> > >> The entire frame buffer is garbled; switching to syscons and back seem= s to > >> change the way it's garbled. However, the interior of an xterm window= is > >> never garbled. I'm running a dual-head configuration with the frame > >> buffer spanning both monitors. > > > > Ok, I thought that I had already fixed this up, but I missed this > > spot... Please try this patch. > > >=20 > It's still garbled with this patch too. Any other ideas? Just let me=20 > know when it's time for me to buy a different video card. :-) So, what I noticed today is that the difference between your ok and garbled xorg.logs seems to be the ring pointer contents not being empty... I haven't really figured out why that is yet... robert. > --=20 > Greg Rivers --=20 Robert Noland FreeBSD --=-YonMED6pNrTvGhnEByqQ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEABECAAYFAknDG3cACgkQM4TrQ4qfROMM+ACgiCgGs0jUL6+G07bRMXpYTT7l 0ZIAnRZJf2XyJ/zL1RqLyiKAscPg8mXK =Yj2W -----END PGP SIGNATURE----- --=-YonMED6pNrTvGhnEByqQ-- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 04:32:45 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB1701065679; Fri, 20 Mar 2009 04:32:45 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.delphij.net (delphij-pt.tunnel.tserv2.fmt.ipv6.he.net [IPv6:2001:470:1f03:2c9::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5CF8A8FC08; Fri, 20 Mar 2009 04:32:45 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [211.166.10.233]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsier.delphij.net (Postfix) with ESMTPS id E47182844E; Fri, 20 Mar 2009 12:32:43 +0800 (CST) Received: from localhost (tarsier.geekcn.org [211.166.10.233]) by tarsier.geekcn.org (Postfix) with ESMTP id 0B5B2EC765E; Fri, 20 Mar 2009 12:32:43 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([211.166.10.233]) by localhost (mail.geekcn.org [211.166.10.233]) (amavisd-new, port 10024) with ESMTP id X-aK8sOoYC7R; Fri, 20 Mar 2009 12:32:37 +0800 (CST) Received: from charlie.delphij.net (c-69-181-141-49.hsd1.ca.comcast.net [69.181.141.49]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTPSA id C32ACEC70D8; Fri, 20 Mar 2009 12:32:35 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:reply-to:organization:user-agent: mime-version:to:cc:subject:references:in-reply-to: x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=hZtWW1pyqDZlxlXTSfuMekMsdnCKsPrqG+OzOc91WlHT7ik5eD+vv/REQoIww7bZZ +tmz1+PzgT61PeHfdNYMw== Message-ID: <49C31C5F.9070402@delphij.net> Date: Thu, 19 Mar 2009 21:32:31 -0700 From: Xin LI Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.19 (X11/20090217) MIME-Version: 1.0 To: pyunyh@gmail.com References: <20090303123156.GC84434@michelle.cdnetworks.co.kr> <20090304011019.GA87142@michelle.cdnetworks.co.kr> In-Reply-To: <20090304011019.GA87142@michelle.cdnetworks.co.kr> X-Enigmail-Version: 0.95.7 OpenPGP: id=18EDEBA0; url=http://www.delphij.net/delphij.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Stable Mailing List , Cristiano Deana , delphij@FreeBSD.org Subject: Re: bce: unable to fix media X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 04:32:46 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, Pyun, Pyun YongHyeon wrote: > On Tue, Mar 03, 2009 at 02:26:11PM +0100, Cristiano Deana wrote: >> 2009/3/3 Pyun YongHyeon : >> >>>> # ifconfig bce0 media 1000baseSX >>>> ifconfig: SIOCSIFMEDIA (media): Device not configured >>> I don't have experience on bce(4) hardwares so I'm not sure but how >>> about adding full-duplex? >>> e.g. ifconfig bce0 media 1000baseSX mediaopt full-duplex >> Thanks, that works. But put the card in "no carrier". >> I will let in autoselect >> > > Yeah, that would be the reason why you always have to rely on > auto-negotiation. IIRC bce(4) has some problem when 1000baseSX not being auto-negotiated so I believe that your analysis is right. >>>> or (according to bce(4)): >>>> >>>> # ifconfig bce0 media 1000baseTX >>>> ifconfig: SIOCSIFMEDIA (media): Device not configured >>>> >>> I guess your PHY type is not for 1000baseT. That's not valid option >>> for your controller. >> I think there is a typo o incomplete description in bce(4): >> >> 1000baseTX Set 1000baseTX operation over twisted pair. Only >> full-duplex mode is supported. >> >> No entry for "1000baseSX". > > bce(4) man page should reflect reality. I think the man page was > written when there was no support for TBI. Things has changed since > then(e.g BCM5709, 1000baseSX/2500baseSX support etc). > Xin Li, would you take care of this?(CCed) Yes. I'll give this a shoot, thanks for pointing out! Cheers, - -- Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAknDHF8ACgkQi+vbBBjt66D6UQCbBoAJjHQIuUxs6Dzjz38Razqj 5EkAoKYQnzKsTtE6sdPPpi15+1XXwS0n =bE5N -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 06:35:42 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED0301065673 for ; Fri, 20 Mar 2009 06:35:42 +0000 (UTC) (envelope-from eugen@kuzbass.ru) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.freebsd.org (Postfix) with ESMTP id 4DC158FC27 for ; Fri, 20 Mar 2009 06:35:41 +0000 (UTC) (envelope-from eugen@kuzbass.ru) Received: from kuzbass.ru (kost [213.184.65.82]) by www.svzserv.kemerovo.su (8.13.8/8.13.8) with ESMTP id n2K6ZdAn019864; Fri, 20 Mar 2009 13:35:39 +0700 (KRAT) (envelope-from eugen@kuzbass.ru) Message-ID: <49C339AE.E4254A0C@kuzbass.ru> Date: Fri, 20 Mar 2009 13:37:34 +0700 From: Eugene Grosbein Organization: SVZServ X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: ru,en MIME-Version: 1.0 To: Kostik Belousov References: <498FAA2A.7423AC15@kuzbass.ru> <20090209214822.GH9427@deviant.kiev.zoral.com.ua> <20090210040125.GA80054@svzserv.kemerovo.su> <20090210062757.GK9427@deviant.kiev.zoral.com.ua> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Cc: stable@freebsd.org Subject: Re: sysctl lock in RELENG_6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 06:35:43 -0000 Kostik Belousov wrote: > > On Tue, Feb 10, 2009 at 11:01:25AM +0700, Eugene Grosbein wrote: > > On Mon, Feb 09, 2009 at 11:48:22PM +0200, Kostik Belousov wrote: > > > > > > I've digged commit logs a bit and found this change MFC'd to RELENG_7 > > > > but not RELENG_6: > > > > > > > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/kern/kern_sysctl.c#rev1.177.6.2 > > > > > > > > It seems RELENG_6 needs this too, doesn't it? > > > > I'm going to merge the change to RELENG_6 and give it a try. > > > > > > Yes, please give it a try. In fact, it was quite specific situation > > > that I observed and produced a fix for. You need execing process that > > > needs to grab Giant, e.g. due to image being located on !MPSAFE fs, and > > > simultaneous sysctl issued that inspects this process. > > > > Well, my 6.3-STABLE locked very often (sometimes every hour). > > Yesterday I've upgraded it to 6.4-STABLE, applied 1.177.2.1 of the file > > to sources, rebuilt NanoBSD image and ran it. It has not locked yet. > Can you be slightly more scientific in your tests ? > Try RELENG_6 without my patch to see whether it is needed at all. Well, there was pretty long testing period (over a month) and I conclude: 1. 6.4-STABLE without your patch hangs. 2. 6.4-STABLE with your patch does not. Eugene Grosbein From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 10:36:22 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7F54106566C for ; Fri, 20 Mar 2009 10:36:22 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from mail.anduin.net (mail.anduin.net [213.225.74.249]) by mx1.freebsd.org (Postfix) with ESMTP id 8A7DF8FC14 for ; Fri, 20 Mar 2009 10:36:22 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from [193.213.86.45] (helo=[192.168.3.103]) by mail.anduin.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lkc5L-0006vK-Ka for stable@freebsd.org; Fri, 20 Mar 2009 11:36:19 +0100 Message-Id: <722EA5AE-82F1-4ED0-9F45-9951BF41AE4F@anduin.net> From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: stable@freebsd.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Fri, 20 Mar 2009 11:36:20 +0100 X-Mailer: Apple Mail (2.930.3) Cc: Subject: ugen and Gemplus SC reader X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 10:36:23 -0000 Hi, whenever I try to use openct/opensc to use my gemplus USB smartcard readers, I get the following in dmesg: ugenioctl: USB_SET_SHORT_XFER, no pipe The readers work fine on MacOS X and (reportedly) Linux, and the driver included in openct should support it. I can't find any PC/SC driver bundles for it though, only the serial readers. Is this a problem in ugen? With best regards, /Eirik From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 16:57:07 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8870106564A for ; Fri, 20 Mar 2009 16:57:07 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: from blah.sun-fish.com (blah.sun-fish.com [217.18.249.150]) by mx1.freebsd.org (Postfix) with ESMTP id 46FA18FC0C for ; Fri, 20 Mar 2009 16:57:06 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: by blah.sun-fish.com (Postfix, from userid 1002) id 91A291B13916; Fri, 20 Mar 2009 17:57:05 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on malcho.cmotd.com X-Spam-Level: X-Spam-Status: No, score=-10.6 required=5.0 tests=ALL_TRUSTED,BAYES_00, HTML_MESSAGE autolearn=ham version=3.2.5 Received: from hater.cmotd.com (hater.cmotd.com [192.168.3.125]) by blah.sun-fish.com (Postfix) with ESMTP id BE1E11B138F4 for ; Fri, 20 Mar 2009 17:57:02 +0100 (CET) Message-Id: <0E486099-ED60-43E6-A86E-75B2CBC1DC00@moneybookers.com> From: Stefan Lambrev To: freebsd-stable@freebsd.org Mime-Version: 1.0 (Apple Message framework v930.3) Date: Fri, 20 Mar 2009 18:57:02 +0200 X-Mailer: Apple Mail (2.930.3) X-Virus-Scanned: ClamAV 0.94/9145/Fri Mar 20 15:59:16 2009 on blah.cmotd.com X-Virus-Status: Clean Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 16:57:08 -0000 Greetings, Is this still correct: Note that you want to insert the remote disk into the mirror first. The disk in the mirror with the highest priority gets used first if you set the balance algorithm to 'prefer'--it seems like a good idea to make sure that's the local disk... The first item inserted in the mirror automatically gets a priority of 0. There is a documented limitation of gmirror--you can't change the priority of a component after it's added. If you add the local disk first and the filesystem is live (being changed), you'll need to do a full sync, then remove the local disk, and then add the local disk back with a higher priority and complete another full sync--which can take some time over the network. Or in other words - priority=0 means lowest or highest priority for reading from geom mirror? -- Best Wishes, Stefan Lambrev ICQ# 24134177 From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 17:00:24 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 028511065670 for ; Fri, 20 Mar 2009 17:00:24 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id BD20B8FC08 for ; Fri, 20 Mar 2009 17:00:23 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lki4u-000A90-Hq; Fri, 20 Mar 2009 17:00:16 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lki4u-000BHk-Fw; Fri, 20 Mar 2009 17:00:16 +0000 To: freebsd-stable@freebsd.org, stefan.lambrev@moneybookers.com In-Reply-To: <0E486099-ED60-43E6-A86E-75B2CBC1DC00@moneybookers.com> Message-Id: From: Pete French Date: Fri, 20 Mar 2009 17:00:16 +0000 Cc: Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 17:00:24 -0000 > Is this still correct: Yup - I made a patch to start the priorities in the middle of the range and to add a 'prefer-low' to reverse the way it is selected to get round the problem though. You can try it out if you want... -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 17:06:33 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93FC11065670 for ; Fri, 20 Mar 2009 17:06:33 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: from blah.sun-fish.com (blah.sun-fish.com [217.18.249.150]) by mx1.freebsd.org (Postfix) with ESMTP id 161308FC08 for ; Fri, 20 Mar 2009 17:06:32 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: by blah.sun-fish.com (Postfix, from userid 1002) id ECB671B13964; Fri, 20 Mar 2009 18:06:31 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on malcho.cmotd.com X-Spam-Level: X-Spam-Status: No, score=-10.6 required=5.0 tests=ALL_TRUSTED,BAYES_00, HTML_MESSAGE autolearn=ham version=3.2.5 Received: from hater.cmotd.com (hater.cmotd.com [192.168.3.125]) by blah.sun-fish.com (Postfix) with ESMTP id 81B971B1395E; Fri, 20 Mar 2009 18:06:29 +0100 (CET) Message-Id: <21FD4FB4-7BD8-4FDD-878F-7D7F2158AD4B@moneybookers.com> From: Stefan Lambrev To: Pete French In-Reply-To: Mime-Version: 1.0 (Apple Message framework v930.3) Date: Fri, 20 Mar 2009 19:06:29 +0200 References: X-Mailer: Apple Mail (2.930.3) X-Virus-Scanned: ClamAV 0.94/9145/Fri Mar 20 15:59:16 2009 on blah.cmotd.com X-Virus-Status: Clean Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 17:06:34 -0000 On Mar 20, 2009, at 7:00 PM, Pete French wrote: >> Is this still correct: > > Yup - I made a patch to start the priorities in the middle of the > range and to add a 'prefer-low' to reverse the way it is selected > to get round the problem though. You can try it out if you want... > > -pete. If it can apply to 7-stable or 7.1-release I'll be even grateful to have it ;) -- Best Wishes, Stefan Lambrev ICQ# 24134177 From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 17:11:37 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C3671065678 for ; Fri, 20 Mar 2009 17:11:37 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 210278FC0C for ; Fri, 20 Mar 2009 17:11:37 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LkiFn-000AI1-5A; Fri, 20 Mar 2009 17:11:31 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LkiFn-000BJv-3s; Fri, 20 Mar 2009 17:11:31 +0000 To: stefan.lambrev@moneybookers.com In-Reply-To: <21FD4FB4-7BD8-4FDD-878F-7D7F2158AD4B@moneybookers.com> Message-Id: From: Pete French Date: Fri, 20 Mar 2009 17:11:31 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 17:11:38 -0000 > If it can apply to 7-stable or 7.1-release I'll be even grateful to > have it ;) Find it here: http://www.freebsd.org/cgi/query-pr.cgi?pr=123630 That was relative to 7.0 - I havent tried it on 7.1. I was hopinh that the changes would be incorporated, but pjd didn't like the solution and said he would prefer it if someone extended the configure sub-command to change disc priorities in an existing config. I didn't have time to do do that thought (and I dont like that as a solution, as it means changing the array priorities rather than having fixed ones and changing which is used - I think we should have both). One day, when I get some time, I will have another look at it. -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 17:24:42 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1ECC1065688 for ; Fri, 20 Mar 2009 17:24:42 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: from blah.sun-fish.com (blah.sun-fish.com [217.18.249.150]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2938FC2D for ; Fri, 20 Mar 2009 17:24:42 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: by blah.sun-fish.com (Postfix, from userid 1002) id 8FFD51B13960; Fri, 20 Mar 2009 18:24:41 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on malcho.cmotd.com X-Spam-Level: X-Spam-Status: No, score=-10.6 required=5.0 tests=ALL_TRUSTED,BAYES_00, HTML_MESSAGE autolearn=ham version=3.2.5 Received: from hater.cmotd.com (hater.cmotd.com [192.168.3.125]) by blah.sun-fish.com (Postfix) with ESMTP id CEFBE1B13916; Fri, 20 Mar 2009 18:24:38 +0100 (CET) Message-Id: From: Stefan Lambrev To: Pete French In-Reply-To: Mime-Version: 1.0 (Apple Message framework v930.3) Date: Fri, 20 Mar 2009 19:24:38 +0200 References: X-Mailer: Apple Mail (2.930.3) X-Virus-Scanned: ClamAV 0.94/9145/Fri Mar 20 15:59:16 2009 on blah.cmotd.com X-Virus-Status: Clean Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 17:24:43 -0000 Thanks for the patch. I'll try it and report after the weekend :) On Mar 20, 2009, at 7:11 PM, Pete French wrote: >> If it can apply to 7-stable or 7.1-release I'll be even grateful to >> have it ;) > > Find it here: http://www.freebsd.org/cgi/query-pr.cgi?pr=123630 > > That was relative to 7.0 - I havent tried it on 7.1. I was hopinh > that the changes would be incorporated, but pjd didn't like the > solution > and said he would prefer it if someone extended the configure sub- > command to > change disc priorities in an existing config. I didn't have time to do > do that thought (and I dont like that as a solution, as it means > changing > the array priorities rather than having fixed ones and changing > which is > used - I think we should have both). > > One day, when I get some time, I will have another look at it. > > -pete. -- Best Wishes, Stefan Lambrev ICQ# 24134177 From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 17:39:15 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89A52106566C for ; Fri, 20 Mar 2009 17:39:15 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 4BAD28FC08 for ; Fri, 20 Mar 2009 17:39:15 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lkigc-000AZ9-Id; Fri, 20 Mar 2009 17:39:14 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Lkigc-000BOY-HL; Fri, 20 Mar 2009 17:39:14 +0000 To: stefan.lambrev@moneybookers.com In-Reply-To: Message-Id: From: Pete French Date: Fri, 20 Mar 2009 17:39:14 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 17:39:15 -0000 > I'll try it and report after the weekend :) It should be OK - we ran it here on the main database server until a couple of months ago, which I went back to using vanilla 7.1 in an attempt to try and track down a bug. I will probably continue to use the patch in future though - it's very stable, and very useful if you haave some kind of "homemade clustering" solution with a local and remote drive. -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Mar 20 20:09:12 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02FC71065673 for ; Fri, 20 Mar 2009 20:09:12 +0000 (UTC) (envelope-from lambert@lambertfam.org) Received: from sysmon.tcworks.net (sysmon.tcworks.net [65.66.76.4]) by mx1.freebsd.org (Postfix) with ESMTP id BE4BB8FC16 for ; Fri, 20 Mar 2009 20:09:11 +0000 (UTC) (envelope-from lambert@lambertfam.org) Received: from sysmon.tcworks.net (localhost [127.0.0.1]) by sysmon.tcworks.net (8.13.1/8.13.1) with ESMTP id n2KJfvHT014515 for ; Fri, 20 Mar 2009 14:41:57 -0500 (CDT) (envelope-from lambert@lambertfam.org) Received: (from lambert@localhost) by sysmon.tcworks.net (8.13.1/8.13.1/Submit) id n2KJfvjR014514 for freebsd-stable@freebsd.org; Fri, 20 Mar 2009 14:41:57 -0500 (CDT) (envelope-from lambert@lambertfam.org) X-Authentication-Warning: sysmon.tcworks.net: lambert set sender to lambert@lambertfam.org using -f Date: Fri, 20 Mar 2009 14:41:57 -0500 From: Scott Lambert To: FreeBSD-STABLE Message-ID: <20090320194157.GB80292@sysmon.tcworks.net> Mail-Followup-To: FreeBSD-STABLE Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: Is some combination of gmirror, md file systems, snapshots and, maybe, quotas considered harmful? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 20:09:12 -0000 I have a previously stable machine, other than a one time panic in soft-updates which I could never reproduce, running RELENG_7 from July 23, 2008. Starting update: Wed Jul 23 01:29:47 CDT 2008 Finished update: Wed Jul 23 01:31:13 CDT 2008 I had the userquota option in the fstab for /home, but I did not yet have anything in /etc/rc.conf to enable them. I have been running an unmodified GENERIC kernel config. /dev/mirror/gm0s1g on /home (ufs, local, soft-updates) It runs a few jails, using ezjails. Two of them were image based jails, 1GB and 2GB. There is also one non-image file jail. The jails live in /home/ezjails. I added another image based jail, 3GB image, on March 12th. I added this machine to our AMANDA setup on March 13, 2009. Things seemed to be okay until the 19th. On the 19th, during the dump of /home, things gradually started to hang. Nagios paged me about services not responding. I did not find any explanation for it. The disks were idle according to systat -vm. I was able to grep the log files on /var for a while, and then I could no longer do anything with it. I eventually had to go to the office and power cycle it. I tried C-A-D first, but shutdown timed out after 30 seconds. Just to make sure it wasn't something that had since been fixed, I updated to RELENG_7 as of Mar 19th. Starting update: Thu Mar 19 03:40:41 CDT 2009 Finished update: Thu Mar 19 03:48:45 CDT 2009 I rebooted to the new kernel and installed the world just after midnight on the 20th. I started getting paged by Nagios again at 3:40am. I noticed that mksnap_ffs was running on /home, cpu time used: 0:00.77, as things began to circle the drain. That was about 30 minutes after the dump attempt had been started by AMANDA. There were many processes waiting in state D. This time I did a reboot -n -q and the box rebooted but was still fscking when I got to the office. # ls -l /home/.snap -r-------- 1 root operator 117285093376 Mar 20 03:18 dump_snapshot # df /home Filesystem Size Used Avail Capacity Mounted on /dev/mirror/gm0s1g 106G 11G 86G 11% /home I removed userquota from the fstab entry for /home and rebooted, just to be sure. The last danger combination I remember for snapshots was in combination with quotas. Am I even in the danger zone for quotas without having them compiled into the kernel? It looks like removing the .snap directory should be enough to prevent any future snapshots during the backup process. Does that sound like a reasonable workaround? It would at least remove one variable from the trouble shooting process. Any other suggestions? Thank you for any help you may be able to provide, -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.org From owner-freebsd-stable@FreeBSD.ORG Sat Mar 21 11:49:31 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 130B7106566B for ; Sat, 21 Mar 2009 11:49:31 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id E17F08FC14 for ; Sat, 21 Mar 2009 11:49:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 7D81D46B06; Sat, 21 Mar 2009 07:49:30 -0400 (EDT) Date: Sat, 21 Mar 2009 11:49:30 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: kama In-Reply-To: <20090318124806.K55869@ns1.as.pvp.se> Message-ID: References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> <20090318124806.K55869@ns1.as.pvp.se> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2009 11:49:31 -0000 On Wed, 18 Mar 2009, kama wrote: > What I meant was the todo page on www.freebsd.org. > > Like: http://www.freebsd.org/releases/7.2R/TODO.html > > Where problems and showstoppers where brought up. I found that information > very valueble. Especially when the release went overdue I could easily see > what caused the delay. > > The last release I did not really get information about why the release was > delayed. At least not as easily as reloading a webpage. We do plan to create such a page, but are currently finding things to populate it with since we're early in the release process yet. We'll send out an e-mail once it's up. Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-stable@FreeBSD.ORG Sat Mar 21 16:43:16 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA14E106566C; Sat, 21 Mar 2009 16:43:16 +0000 (UTC) (envelope-from tom.hurst@clara.net) Received: from ita.aagh.net (ita.aagh.net [208.86.225.114]) by mx1.freebsd.org (Postfix) with ESMTP id AAE298FC27; Sat, 21 Mar 2009 16:43:16 +0000 (UTC) (envelope-from tom.hurst@clara.net) Received: from cpc1-hart9-2-0-cust900.11-3.cable.virginmedia.com ([86.30.3.133] helo=voi.aagh.net ident=mailnull) by ita.aagh.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Ll3dx-000ExR-2R; Sat, 21 Mar 2009 16:01:53 +0000 Received: from freaky by voi.aagh.net with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Ll3du-0004NB-Sn; Sat, 21 Mar 2009 16:01:50 +0000 Date: Sat, 21 Mar 2009 16:01:50 +0000 From: Thomas Hurst To: Robert Watson Message-ID: <20090321160150.GA12802@voi.aagh.net> Mail-Followup-To: Robert Watson , kama , Ken Smith , freebsd-stable References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Not much. User-Agent: Mutt/1.5.19 (2009-01-05) Cc: kama , Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2009 16:43:17 -0000 * Robert Watson (rwatson@FreeBSD.org) wrote: > It would probably be worth skimming svn logs for stable/7 to see what > other testing focuses would be particularly useful. In case it's of use, I have full searchable SVN history here: http://beta.freshbsd.org/?q=branch:RELENG_7 -- Thomas 'Freaky' Hurst http://hur.st/ From owner-freebsd-stable@FreeBSD.ORG Sat Mar 21 18:44:45 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92106106566B for ; Sat, 21 Mar 2009 18:44:45 +0000 (UTC) (envelope-from cliftonr@lava.net) Received: from outgoing01.lava.net (cake.lava.net [IPv6:2001:1888:0:1:230:48ff:fe5b:3b50]) by mx1.freebsd.org (Postfix) with ESMTP id 6DEC18FC1E for ; Sat, 21 Mar 2009 18:44:44 +0000 (UTC) (envelope-from cliftonr@lava.net) Received: from malasada.lava.net (malasada.lava.net [64.65.64.17]) by outgoing01.lava.net (Postfix) with ESMTP id 57CD7D006F; Sat, 21 Mar 2009 08:44:43 -1000 (HST) Received: by malasada.lava.net (Postfix, from userid 102) id 99D20153882; Sat, 21 Mar 2009 08:44:42 -1000 (HST) Date: Sat, 21 Mar 2009 08:44:42 -1000 From: Clifton Royston To: Pete French Message-ID: <20090321184440.GA29399@lava.net> Mail-Followup-To: Pete French , freebsd-stable@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: freebsd-stable@freebsd.org Subject: Re: gemor mirror and priority X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2009 18:44:45 -0000 On Fri, Mar 20, 2009 at 05:39:14PM +0000, Pete French wrote: > > I'll try it and report after the weekend :) > > It should be OK - we ran it here on the main database server until > a couple of months ago, which I went back to using vanilla 7.1 in an attempt to > try and track down a bug. I will probably continue to use the patch in > future though - it's very stable, and very useful if you haave some > kind of "homemade clustering" solution with a local and remote drive. Even if you don't, I think it's quite useful to make the *default* priority set when creating a mirror be some value which allows both higher and lower values to be specified. I hadn't known about that issue until I read the original thread here a while back.If the default were set to some mid-range value, or even to 2, for example, then at least creating a new mirror and adding drives without setting a priority would continue to behave as usual, while it would be possible to explicitly insert new components with a lower priority. (I see why one wouldn't want to change the default interpretation of existing priority values for POLA reasons.) There are lots of reasons one could want to control priorities of mirrored drives in various ways. One is to use gmirror as a long-term backup approach: mirror with three drives, periodically disconnecting one from the mirror to swap it with a fresh drive from a pool of backup drives. I haven't tried this, but it's been on my mind to mess around with soon. In this case, I would want the designated backup drive to always be lowest-priority, to ensure the mirror never accidentally started rebuilding from a newly reinserted backup. (This probably wouldn't happen anyway, but it would be nice to be sure...) -- Clifton -- Clifton Royston -- cliftonr@iandicomputing.com / cliftonr@lava.net President - I and I Computing * http://www.iandicomputing.com/ Custom programming, network design, systems and network consulting services From owner-freebsd-stable@FreeBSD.ORG Sat Mar 21 19:55:28 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C90701065674 for ; Sat, 21 Mar 2009 19:55:28 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE658FC1D for ; Sat, 21 Mar 2009 19:55:28 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Ll7Hp-000NKK-2U for freebsd-stable@freebsd.org; Sat, 21 Mar 2009 19:55:17 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Ll7Hp-000Kqr-1P for freebsd-stable@freebsd.org; Sat, 21 Mar 2009 19:55:17 +0000 To: freebsd-stable@freebsd.org Message-Id: From: Pete French Date: Sat, 21 Mar 2009 19:55:17 +0000 Subject: KDB+DDB make interrupt storm on MSI motherboards go away it seems X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2009 19:55:29 -0000 I admit I was scepticle of this suggestion - but it actually seems to have worked. COmpiling a straight GENERIC kernel with KDB and DDB included do seem to have made my irq22 interrupt storms go away. Certainly I have spent some time trying to provoke the problem and not managed to make it read it's ugly head again. The thing is though, this doen't make me particularly happy - as I am sure that KDB and DDB are not supposed to make any major changes to how the kernel functions are they ? -pete. From owner-freebsd-stable@FreeBSD.ORG Sat Mar 21 22:33:04 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F40310656F0 for ; Sat, 21 Mar 2009 22:33:00 +0000 (UTC) (envelope-from ari@ish.com.au) Received: from fish.ish.com.au (eth5921.nsw.adsl.internode.on.net [59.167.240.32]) by mx1.freebsd.org (Postfix) with ESMTP id 24D9C8FC16 for ; Sat, 21 Mar 2009 22:32:59 +0000 (UTC) (envelope-from ari@ish.com.au) Received: from [10.242.2.10] (port=51474) by fish.ish.com.au with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from ) id 1LlAHm-0002H2-36; Sun, 22 Mar 2009 10:07:27 +1100 Message-Id: From: Aristedes Maniatis To: Robert Watson In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Sun, 22 Mar 2009 09:18:03 +1100 References: <1237299551.80881.16.camel@bauer.cse.buffalo.edu> <20090318102134.D55869@ns1.as.pvp.se> <20090318124806.K55869@ns1.as.pvp.se> X-Mailer: Apple Mail (2.930.3) Cc: kama , Ken Smith , freebsd-stable Subject: Re: FreeBSD 7.2 Release process starting... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2009 22:33:04 -0000 On 21/03/2009, at 10:49 PM, Robert Watson wrote: > > On Wed, 18 Mar 2009, kama wrote: > >> What I meant was the todo page on www.freebsd.org. >> >> Like: http://www.freebsd.org/releases/7.2R/TODO.html >> >> Where problems and showstoppers where brought up. I found that >> information very valueble. Especially when the release went overdue >> I could easily see what caused the delay. >> >> The last release I did not really get information about why the >> release was delayed. At least not as easily as reloading a webpage. > > We do plan to create such a page, but are currently finding things > to populate it with since we're early in the release process yet. > We'll send out an e-mail once it's up. Is there any way to automatically create such a page from the bug tracker? Ari Maniatis --------------------------> ish http://www.ish.com.au Level 1, 30 Wilson Street Newtown 2042 Australia phone +61 2 9550 5001 fax +61 2 9550 4001 GPG fingerprint CBFB 84B4 738D 4E87 5E5C 5EFA EF6A 7D2E 3E49 102A