[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#254748: marked as done (kernel-source-2.4.26: Patch to enable Dell PowerEdge 750 SATA DMA support)



Your message dated Fri, 03 Sep 2004 02:47:29 -0400
with message-id <E1C37r7-00010P-00@newraff.debian.org>
and subject line Bug#254748: fixed in kernel-source-2.4.27 2.4.27-5
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; 16 Jun 2004 19:24:54 +0000
>From dajhorn@vanadac.com Wed Jun 16 12:24:54 2004
Return-path: <dajhorn@vanadac.com>
Received: from lyra.bfree.on.ca [66.207.115.254] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Bag1l-0003NB-00; Wed, 16 Jun 2004 12:24:53 -0700
Received: from vanadac.com (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; Wed, 16 Jun 2004 15:23:41 -0400
Message-ID: <40D09E7B.4050007@vanadac.com>
Date: Wed, 16 Jun 2004 12:24:43 -0700
From: Darik Horn <dajhorn@vanadac.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113
X-Accept-Language: en-us, en
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_lyra-17552-1087413822-0001-2"
To: submit@bugs.debian.org
Subject: kernel-source-2.4.26: Patch to enable Dell PowerEdge 750 SATA DMA
 support
Delivered-To: submit@bugs.debian.org
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=-4.2 required=4.0 tests=BAYES_00,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-17552-1087413822-0001-2
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

Package: kernel-source-2.6.26
Version: 2.4.26-2
Severity: wishlist
Tags: patch

This patch 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-17552-1087413822-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-17552-1087413822-0001-2--

---------------------------------------
Received: (at 254748-close) by bugs.debian.org; 3 Sep 2004 06:53:07 +0000
>From katie@ftp-master.debian.org Thu Sep 02 23:53:07 2004
Return-path: <katie@ftp-master.debian.org>
Received: from newraff.debian.org [208.185.25.31] (mail)
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1C37wZ-0001Wi-00; Thu, 02 Sep 2004 23:53:07 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
	id 1C37r7-00010P-00; Fri, 03 Sep 2004 02:47:29 -0400
From: Joshua Kwan <joshk@triplehelix.org>
To: 254748-close@bugs.debian.org
X-Katie: $Revision: 1.51 $
Subject: Bug#254748: fixed in kernel-source-2.4.27 2.4.27-5
Message-Id: <E1C37r7-00010P-00@newraff.debian.org>
Sender: Archive Administrator <katie@ftp-master.debian.org>
Date: Fri, 03 Sep 2004 02:47:29 -0400
Delivered-To: 254748-close@bugs.debian.org
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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: kernel-source-2.4.27
Source-Version: 2.4.27-5

We believe that the bug you reported is fixed in the latest version of
kernel-source-2.4.27, which is due to be installed in the Debian FTP archive:

kernel-doc-2.4.27_2.4.27-5_all.deb
  to pool/main/k/kernel-source-2.4.27/kernel-doc-2.4.27_2.4.27-5_all.deb
kernel-patch-debian-2.4.27_2.4.27-5_all.deb
  to pool/main/k/kernel-source-2.4.27/kernel-patch-debian-2.4.27_2.4.27-5_all.deb
kernel-source-2.4.27_2.4.27-5.diff.gz
  to pool/main/k/kernel-source-2.4.27/kernel-source-2.4.27_2.4.27-5.diff.gz
kernel-source-2.4.27_2.4.27-5.dsc
  to pool/main/k/kernel-source-2.4.27/kernel-source-2.4.27_2.4.27-5.dsc
kernel-source-2.4.27_2.4.27-5_all.deb
  to pool/main/k/kernel-source-2.4.27/kernel-source-2.4.27_2.4.27-5_all.deb
kernel-tree-2.4.27_2.4.27-5_all.deb
  to pool/main/k/kernel-source-2.4.27/kernel-tree-2.4.27_2.4.27-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 254748@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joshua Kwan <joshk@triplehelix.org> (supplier of updated kernel-source-2.4.27 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu,  2 Sep 2004 18:56:21 -0700
Source: kernel-source-2.4.27
Binary: kernel-tree-2.4.27 kernel-source-2.4.27 kernel-patch-debian-2.4.27 kernel-doc-2.4.27
Architecture: source all
Version: 2.4.27-5
Distribution: unstable
Urgency: high
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Joshua Kwan <joshk@triplehelix.org>
Description: 
 kernel-doc-2.4.27 - Linux kernel specific documentation for version 2.4.27
 kernel-patch-debian-2.4.27 - Debian patches to Linux 2.4.27
 kernel-source-2.4.27 - Linux kernel source for version 2.4.27 with Debian patches
 kernel-tree-2.4.27 - Linux kernel tree for building prepackaged Debian kernel images
Closes: 254748 268436 269412
Changes: 
 kernel-source-2.4.27 (2.4.27-5) unstable; urgency=high
 .
   * Fix a goofup in debian/apply that didn't really affect normal users.
   * 070_ide_scan_pcibus.diff: Add this very crucial hunk of code that was
     missed while exploding the monolithic patchset into small diffs.
   * 071_dep_fw_loader-2.diff: Simplify 066_dep_fw_loader.diff (removed) so
     that it works with make xconfig as well. (Closes: #268436)
   * Remove obsoleted README.NMU.
   * 072_6300esb_sata.diff: Enable DMA support for Intel 6300ESB SATA disk
     controller through piix. (Closes: #254748)
   * 073_tg3_hw_autoneg.diff: A patch by David S. Miller fixes problems when
     using tg3 devices plugged into hubs and switches that don't support
     autonegotiation.
   * 074_fealnx_ampersand.diff: Fix spurious ampersand in a
     spin_unlock_irqrestore call that caused a hang on SMP.
   * 075_lvm_ioctl.diff: Fix some problems with generic LVM ioctl handling,
     patch by David S. Miller.
   * Extend debian/apply to be able to try to remove files (actually, back
     them up) so that we can run the debian/apply script on a real pristine
     source tree. (Closes: #269412)
   * Remove Documentation/man in clean target, make-kpkg kernel-doc leaves it
     lying around.
Files: 
 8e93bbde248c3bc1a501ce56b67fb45e 1578 devel optional kernel-source-2.4.27_2.4.27-5.dsc
 2be714601c3e7f40ac9d78a92647a30d 499868 devel optional kernel-source-2.4.27_2.4.27-5.diff.gz
 b30fdbbb4e1414f9f3a05db20d0c84e2 414276 devel optional kernel-patch-debian-2.4.27_2.4.27-5_all.deb
 68427f94a67273641dc86ad89e4b9293 3554528 doc optional kernel-doc-2.4.27_2.4.27-5_all.deb
 f455bccab4f8b1141f23688aeaaea7be 31248492 devel optional kernel-source-2.4.27_2.4.27-5_all.deb
 5f66decf59e69bca394c7b58600647a9 18810 devel optional kernel-tree-2.4.27_2.4.27-5_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: http://triplehelix.org/~joshk/pubkey_gpg.asc

iQIVAwUBQTfT86OILr94RG8mAQIQwRAAolYVYAuRlcaWcxQvCubrxt7QpCSLA16S
I0DGi4WBMRQgpMl9UyRQv2WL/FAaYxpH7Cx6fgMYKG3ezvnwcEas1WxmtujWBd7l
/9NTpjLLoJRVv9iFA4kmc5rg+T6AiJCvfExSnds7ijH8Gshr+td5plA1qEGhq3aP
/c+/5QbNlaDpf6fPCW+5TpGEv1qd1/6U47/R1i/QwK62qXtFJn/EVInAGvBiF5yN
IpmweoCN+Ypv0y5/JARYiVphy8LLnBG/Qo5AUuzU6OjL9IRRDYyTQIoDe2E7yzbf
t4eNulu+/CGouwAMUbHhGR9rqo/df1ouwYh4H+6bmkzorgB4qaq4Wwd5yT1uTbbr
0nYf6eZCaNditi76e/LocIdNl5YQSrqPSGTdi1sr5+FkL6Ai65vU+EjHNezLM1Bt
v8/zDMRcP5fBWcYHiGTKcVZbTRiVONqek/svInWffbDJvoVQoCGtt0wSAcMPZYfg
tvvekF9Zq/d/FPG9fQduWLSqwX7LAEIBQzjXUrN+P65ZRRO4dCN2bk77VZdKF6bE
TAx8XU+r09j04dF2O8ZsgHuL1ToDKq3P1RzX1Iy2W+7L5aFSunS9lwb2Iok5/cU2
BR8fOfZTvjw5bIYFx/TESRUY3VWv1R9MqSbUUbtg8tJgiG5mDxzlXO6GsJjrwUen
C0rQwIvp7aE=
=e5kY
-----END PGP SIGNATURE-----



Reply to: