From patchwork Fri Feb 25 12:30:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Niehusmann X-Patchwork-Id: 589981 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1PCn1GC017522 for ; Fri, 25 Feb 2011 12:49:22 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 270DC9F397 for ; Fri, 25 Feb 2011 04:49:01 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 25 Feb 2011 12:49:22 +0000 (UTC) X-Greylist: delayed 1064 seconds by postgrey-1.31 at gabe; Fri, 25 Feb 2011 04:48:42 PST Received: from mail.moria.gondor.com (vs1.gondor.com [78.47.100.202]) by gabe.freedesktop.org (Postfix) with ESMTP id A0F979E75F for ; Fri, 25 Feb 2011 04:48:42 -0800 (PST) Received: from vpn.moria.gondor.com ([10.12.0.8] helo=localhost) by mail.moria.gondor.com with esmtp (Exim 4.72) (envelope-from ) id 1Pswoy-0002bD-Uc; Fri, 25 Feb 2011 13:30:56 +0100 Date: Fri, 25 Feb 2011 13:30:56 +0100 From: Jan Niehusmann To: linux-kernel@vger.kernel.org Message-ID: <20110225123056.GA3759@x61s.reliablesolutions.de> References: <20110223233022.GA3439@x61s.reliablesolutions.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20110223233022.GA3439@x61s.reliablesolutions.de> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: intel-gfx@lists.freedesktop.org Subject: [Intel-gfx] [PATCH] intel-gtt: fix memory corruption with GM965 and >4GB RAM X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org diff --git a/drivers/char/agp/intel-gtt.c b/drivers/char/agp/intel-gtt.c index 29ac6d4..f7977f2 100644 --- a/drivers/char/agp/intel-gtt.c +++ b/drivers/char/agp/intel-gtt.c @@ -1379,7 +1379,7 @@ static const struct intel_gtt_driver i965_gtt_driver = { .setup = i9xx_setup, .cleanup = i9xx_cleanup, .write_entry = i965_write_entry, - .dma_mask_size = 36, + .dma_mask_size = 32, .check_flags = i830_check_flags, .chipset_flush = i9xx_chipset_flush, };