rpms/kernel/FC-4 linux-2.6.12-acpi-legacy-irq.patch, NONE, 1.1 kernel-2.6.spec, 1.1387, 1.1388

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Jul 5 19:16:57 UTC 2005


Author: davej

Update of /cvs/dist/rpms/kernel/FC-4
In directory cvs.devel.redhat.com:/tmp/cvs-serv11223

Modified Files:
	kernel-2.6.spec 
Added Files:
	linux-2.6.12-acpi-legacy-irq.patch 
Log Message:
irq fix


linux-2.6.12-acpi-legacy-irq.patch:
 pci_irq.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE linux-2.6.12-acpi-legacy-irq.patch ---
--- linux-2.6.12/drivers/acpi/pci_irq.c~	2005-07-05 15:09:07.000000000 -0400
+++ linux-2.6.12/drivers/acpi/pci_irq.c	2005-07-05 15:09:43.000000000 -0400
@@ -433,7 +433,7 @@ acpi_pci_irq_enable (
 		printk(KERN_WARNING PREFIX "PCI Interrupt %s[%c]: no GSI",
 			pci_name(dev), ('A' + pin));
 		/* Interrupt Line values above 0xF are forbidden */
-		if (dev->irq >= 0 && (dev->irq <= 0xF)) {
+		if (dev->irq > 0 && (dev->irq <= 0xF)) {
 			printk(" - using IRQ %d\n", dev->irq);
 			acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
 			return_VALUE(0);


Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-4/kernel-2.6.spec,v
retrieving revision 1.1387
retrieving revision 1.1388
diff -u -r1.1387 -r1.1388
--- kernel-2.6.spec	1 Jul 2005 16:29:24 -0000	1.1387
+++ kernel-2.6.spec	5 Jul 2005 19:16:52 -0000	1.1388
@@ -343,6 +343,7 @@
 Patch1890: linux-2.6.12-firedire-init-breakage.patch 
 Patch1900: linux-2.6.12-pwc-warning.patch
 Patch1910: linux-2.6.12-ns558-nodev-rmmod.patch
+Patch1920: linux-2.6.12-acpi-legacy-irq.patch
 
 Patch2000: linux-2.6.11-vm-taint.patch
 Patch2001: linux-2.6.9-vm-oomkiller-debugging.patch
@@ -793,6 +794,8 @@
 %patch1900 -p1
 # Fix oops in ns558 on rmmod
 %patch1910 -p1
+# legacy irq routing fix.
+%patch1920 -p1
 
 #
 # VM related fixes.
@@ -1253,6 +1256,9 @@
 %endif
 
 %changelog
+* Tue Jul  5 2005 Dave Jones <davej at redhat.com>
+- Fixup ACPI IRQ routing bug that prevented booting for some folks.
+
 * Wed Jun 29 2005 Dave Jones <davej at redhat.com>
 - 2.6.12.2
 




More information about the fedora-cvs-commits mailing list