From owner-freebsd-x11@FreeBSD.ORG Sun Dec 10 01:03:58 2006 Return-Path: X-Original-To: freebsd-x11@freebsd.org Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0459E16A40F for ; Sun, 10 Dec 2006 01:03:58 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 033CC43CA2 for ; Sun, 10 Dec 2006 01:02:49 +0000 (GMT) (envelope-from r.c.ladan@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so952868uge for ; Sat, 09 Dec 2006 17:03:55 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type; b=pcpcsoHVoYmywuGbvjQ2SLT89CfiEBWKnxhJqb46E8bQmmkEIcwclChKOHXyRr5N2SjIhAxVA2t7Tk1NSsCkRgFmhLCERwV5OWlQd32u4yJrSxYniEdptswurr5OU5CxLBMU2uS0ZealgE9jB/5GLHrsDcpBk0zewVdfAu6oWY0= Received: by 10.67.121.15 with SMTP id y15mr7611847ugm.1165712635632; Sat, 09 Dec 2006 17:03:55 -0800 (PST) Received: from ?192.168.123.106? ( [195.241.221.201]) by mx.google.com with ESMTP id b23sm5124942ugd.2006.12.09.17.03.54; Sat, 09 Dec 2006 17:03:55 -0800 (PST) Message-ID: <457B5CF9.3020309@gmail.com> Date: Sun, 10 Dec 2006 02:03:53 +0100 From: Rene Ladan User-Agent: Thunderbird 1.5.0.8 (X11/20061117) MIME-Version: 1.0 To: Kai Lockwood References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/mixed; boundary="------------080900080706050800070201" Cc: freebsd-x11@freebsd.org Subject: Re: Crash exiting Xorg/KDE X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Dec 2006 01:03:58 -0000 This is a multi-part message in MIME format. --------------080900080706050800070201 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Kai Lockwood schreef: > Hello, I am getting a message when I exit Xorg: > > Fatal trap 12: page fault while in kernel mode > fault virtual address =0xdea12080 > fault code =supervisor read, page not present > instruction point =0x20:0xc06871df > stack pointer =0x28:0xde9abbd0 > frame pointer =0x28:0xde9abbdc > code segment =base 0x0, limit 0xfffff, type 0x1b > =DPL 0, pres 1, def32 1, gran 1 > processor eflags =interrupt enabled, resume, IOPL = 0 > current process =7466 (sh) > trap number =12 > panic: page fault > Uptime: 8m35s > Cannot dump. No dump device defined. (how do I capture this?) > Automatic reboot in 15 sec(yada yada)........ > > I am running: > Athlon XP 2400+ > Biostar M7VIT Brano > ATI Radeon 9200 <------ This is a PCI card > Do you have AIGLX enabled in xorg-server? Because AIGLX + Radeon card = kernel panic. What happens if you apply the attached patch to the x11-servers/xorg-server port and recompile it with WITHOUT_AIGLX=yes (the patch correctly defines this knob) ? You also have to disable AIGLX in xorg.conf . > I've had trouble configuring the Radeon 9200 to display Xorg properly. X > -config thinks that I should use the 'ati' driver, but Xorg won't start > unless I use the 'radeon' driver. 'radeon' matches Radeon, as it already tells you... I get panics with AIGLX enabled to, but they happen when I start X, not when I exit it. Regards, Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 --------------080900080706050800070201 Content-Type: text/plain; name="xorg-server-Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xorg-server-Makefile.diff" --- Makefile.orig Fri Dec 8 12:10:23 2006 +++ Makefile Fri Dec 8 12:18:19 2006 @@ -39,6 +39,8 @@ .if !defined(WITHOUT_AIGLX) CONFIGURE_ARGS+= --enable-aiglx=yes +.else +CONFIGURE_ARGS+= --enable-aiglx=no .endif .if !defined(NO_SUID_XSERVER) || ${NO_SUID_XSERVER} == NO --------------080900080706050800070201--