From owner-cvs-src-old@FreeBSD.ORG Thu Dec 18 21:04:55 2008 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E9D61065675 for ; Thu, 18 Dec 2008 21:04:55 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 943868FC18 for ; Thu, 18 Dec 2008 21:04:55 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id mBIL4tSh053476 for ; Thu, 18 Dec 2008 21:04:55 GMT (envelope-from rnoland@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mBIL4tWL053475 for cvs-src-old@freebsd.org; Thu, 18 Dec 2008 21:04:55 GMT (envelope-from rnoland@repoman.freebsd.org) Message-Id: <200812182104.mBIL4tWL053475@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rnoland@repoman.freebsd.org using -f From: Robert Noland Date: Thu, 18 Dec 2008 21:04:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/drm drmP.h drm_scatter.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Dec 2008 21:04:55 -0000 rnoland 2008-12-18 21:04:50 UTC FreeBSD src repository Modified files: sys/dev/drm drmP.h drm_scatter.c Log: SVN rev 186295 on 2008-12-18 21:04:50Z by rnoland rework drm_scatter.c which allocates scatter / gather pages for use by ati pci gart to use bus_dma to handle the allocations. This fixes a garbled screen issue on at least some radeons (X1400 tested). It is also likely that this is the correct fix for PR# 119324, though that is not confirmed yet. Reviewed by: jhb@ (mentor, prior version) Approved by: kib@ MFC after: 2 weeks Revision Changes Path 1.23 +7 -5 src/sys/dev/drm/drmP.h 1.7 +84 -26 src/sys/dev/drm/drm_scatter.c