Your message dated Wed, 16 Nov 2005 13:06:03 +0900 with message-id <[EMAIL PROTECTED]> and subject line Bug#255425: kernel-source-2.4.26: Patch to enable Dell PowerEdge 750 SATA DMA support has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 20 Jun 2004 20:45:10 +0000 >From [EMAIL PROTECTED] Sun Jun 20 13:45:10 2004 Return-path: <[EMAIL PROTECTED]> Received: from lyra.bfree.on.ca [66.207.115.254] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Bc9BP-0002lG-00; Sun, 20 Jun 2004 13:44:55 -0700 Received: from [199.79.214.237] (207-177-225-50.dsl.redshift.com [::ffff:207.177.225.50]) (AUTH: PLAIN dajhorn, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by lyra with esmtp; Sun, 20 Jun 2004 16:43:04 -0400 Message-ID: <[EMAIL PROTECTED]> Date: Sun, 20 Jun 2004 13:44:10 -0700 From: Darik Horn <[EMAIL PROTECTED]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=_lyra-15735-1087764184-0001-2" To: [EMAIL PROTECTED] Subject: kernel-source-2.4.26: Patch to enable Dell PowerEdge 750 SATA DMA support Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-3.2 required=4.0 tests=BAYES_01,DOMAIN_BODY, HAS_PACKAGE,UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: This is a MIME-formatted message. If you see this text it means that your E-mail software does not support MIME-formatted messages. --=_lyra-15735-1087764184-0001-2 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Package: kernel-source-2.4.26 Version: 2.4.26-2 Severity: wishlist Tags: patch This patch by Nick Craig-Wood enables DMA support for the Intel 6300ESB SATA disk controller in the Dell PowerEdge 750. A compatible driver is already in the kernel, so this patch just adds the new PCI device id. --=_lyra-15735-1087764184-0001-2 Content-Type: text/plain; name="linux-2.4.26-pe750.patch"; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="linux-2.4.26-pe750.patch" diff -Ndru kernel-source-2.4.26/drivers/ide/pci/piix.c kernel-source-2.4.26-pe750/drivers/ide/pci/piix.c --- kernel-source-2.4.26/drivers/ide/pci/piix.c Wed Apr 14 13:05:30 2004 +++ kernel-source-2.4.26-pe750/drivers/ide/pci/piix.c Tue Jun 15 20:50:25 2004 @@ -155,6 +155,7 @@ case PCI_DEVICE_ID_INTEL_82801E_11: case PCI_DEVICE_ID_INTEL_ESB_2: case PCI_DEVICE_ID_INTEL_ICH6_2: + case PCI_DEVICE_ID_INTEL_ESB_3: p += sprintf(p, "PIIX4 Ultra 100 "); break; case PCI_DEVICE_ID_INTEL_82372FB_1: @@ -294,6 +295,7 @@ case PCI_DEVICE_ID_INTEL_82801EB_11: case PCI_DEVICE_ID_INTEL_ESB_2: case PCI_DEVICE_ID_INTEL_ICH6_2: + case PCI_DEVICE_ID_INTEL_ESB_3: mode = 3; break; /* UDMA 66 capable */ @@ -686,6 +688,7 @@ case PCI_DEVICE_ID_INTEL_82801E_11: case PCI_DEVICE_ID_INTEL_ESB_2: case PCI_DEVICE_ID_INTEL_ICH6_2: + case PCI_DEVICE_ID_INTEL_ESB_3: { unsigned int extra = 0; pci_read_config_dword(dev, 0x54, &extra); @@ -883,6 +886,7 @@ { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 18}, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 19}, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 20}, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 21}, { 0, }, }; diff -Ndru kernel-source-2.4.26/drivers/ide/pci/piix.h kernel-source-2.4.26-pe750/drivers/ide/pci/piix.h --- kernel-source-2.4.26/drivers/ide/pci/piix.h Wed Apr 14 13:05:30 2004 +++ kernel-source-2.4.26-pe750/drivers/ide/pci/piix.h Wed Jun 16 07:59:41 2004 @@ -333,6 +333,20 @@ .enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, .bootable = ON_BOARD, .extra = 0, + },{ /* 21 */ + .vendor = PCI_VENDOR_ID_INTEL, + .device = PCI_DEVICE_ID_INTEL_ESB_3, + .name = "ICH5", + .init_setup = init_setup_piix, + .init_chipset = init_chipset_piix, + .init_iops = NULL, + .init_hwif = init_hwif_piix, + .init_dma = init_dma_piix, + .channels = 2, + .autodma = AUTODMA, + .enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, + .bootable = ON_BOARD, + .extra = 0, },{ .vendor = 0, .device = 0, --=_lyra-15735-1087764184-0001-2-- --------------------------------------- Received: (at 255425-done) by bugs.debian.org; 16 Nov 2005 04:06:49 +0000 >From [EMAIL PROTECTED] Tue Nov 15 20:06:49 2005 Return-path: <[EMAIL PROTECTED]> Received: from koto.vergenet.net ([210.128.90.7]) by spohr.debian.org with esmtp (Exim 4.50) id 1EcEZN-00025m-6i for [EMAIL PROTECTED]; Tue, 15 Nov 2005 20:06:49 -0800 Received: by koto.vergenet.net (Postfix, from userid 7100) id E817C3402F; Wed, 16 Nov 2005 13:06:17 +0900 (JST) Date: Wed, 16 Nov 2005 13:06:03 +0900 From: Horms <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Bug#255425: kernel-source-2.4.26: Patch to enable Dell PowerEdge 750 SATA DMA support Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Cluestick: seven User-Agent: Mutt/1.5.11 X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Version: 2.4.27-1 This patch appears to have been incoporated in 2.4.27. Closing accordingly. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]