From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 23 04:40:29 2005 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A64C16A4CF for ; Sun, 23 Jan 2005 04:40:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2DE343D2F for ; Sun, 23 Jan 2005 04:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j0N4eSBq040559 for ; Sun, 23 Jan 2005 04:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j0N4eSbR040558; Sun, 23 Jan 2005 04:40:28 GMT (envelope-from gnats) Date: Sun, 23 Jan 2005 04:40:28 GMT Message-Id: <200501230440.j0N4eSbR040558@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jonathan Fosburgh Subject: Re: kern/76411: [patch] AGP aperture incorrectly probed for SiS 755 AGP X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jonathan Fosburgh List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jan 2005 04:40:29 -0000 The following reply was made to PR kern/76411; it has been noted by GNATS. From: Jonathan Fosburgh To: freebsd-gnats-submit@freebsd.org, jonathan@fosburgh.org Cc: Subject: Re: kern/76411: [patch] AGP aperture incorrectly probed for SiS 755 AGP Date: Sat, 22 Jan 2005 22:32:32 -0600 I have fixed the problem. I looked into agp_amd64.c and agp_sis.c on -CURRENT and found that AGP_AMD_GART appears to have been removed. I therefore modified Junk-uk's patch to agp_sis.c. Here is a diff from the version in RELENG_5: --- agp_sis.c.orig Sat Jan 22 21:49:03 2005 +++ agp_sis.c Sat Jan 22 21:51:05 2005 @@ -109,7 +109,7 @@ case 0x07601039: return ("SiS 760 host to AGP bridge"); #if defined(__amd64__) || defined(AGP_AMD64_GART) - case 0x10221039: /* AMD64 */ + case 0x7551039: /* AMD64 */ return NULL; #endif }; glxinfo now reports director rendering enabled. OpenGL apps now perform *much* better.