Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932329AbWLLTvf (ORCPT ); Tue, 12 Dec 2006 14:51:35 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932340AbWLLTvf (ORCPT ); Tue, 12 Dec 2006 14:51:35 -0500 Received: from palrel13.hp.com ([156.153.255.238]:56302 "EHLO palrel13.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932329AbWLLTve (ORCPT ); Tue, 12 Dec 2006 14:51:34 -0500 Date: Tue, 12 Dec 2006 13:51:31 -0600 From: "Mike Miller (OS Dev)" To: akpm@osdl.org, jens.axboe@oracle.com Cc: linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org Subject: [PATCH 1/2] cciss: map out more memory for config table Message-ID: <20061212195131.GA2471@beardog.cca.cpqcorp.net> Reply-To: mike.miller@hp.com, mikem@beardog.cca.cpqcorp.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1294 Lines: 30 PATCH 1/2 This patch maps out more memory for our config table. It's required to reach offset 0x214 to disable DMA on the P600. I'm not sure how I lost this hunk. Please consider this for inclusion. Thanks, mikem Signed-off-by: Mike Miller drivers/block/cciss.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) -------------------------------------------------------------------------------- diff -puN drivers/block/cciss.c~cciss_fix_for_p600_dma drivers/block/cciss.c --- linux-2.6-work/drivers/block/cciss.c~cciss_fix_for_p600_dma 2006-12-11 15:20:07.000000000 -0600 +++ linux-2.6-work-mikem/drivers/block/cciss.c 2006-12-11 15:21:33.000000000 -0600 @@ -2865,7 +2865,7 @@ static int cciss_pci_init(ctlr_info_t *c #ifdef CCISS_DEBUG printk("address 0 = %x\n", c->paddr); #endif /* CCISS_DEBUG */ - c->vaddr = remap_pci_mem(c->paddr, 200); + c->vaddr = remap_pci_mem(c->paddr, 0x250); /* Wait for the board to become ready. (PCI hotplug needs this.) * We poll for up to 120 secs, once per 100ms. */ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/