rpms/kernel/F-8 linux-2.6-debug-resource-overflow.patch, NONE, 1.1 kernel.spec, 1.377, 1.378

Chuck Ebbert (cebbert) fedora-extras-commits at redhat.com
Tue Mar 11 19:31:10 UTC 2008


Author: cebbert

Update of /cvs/pkgs/rpms/kernel/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv16961

Modified Files:
	kernel.spec 
Added Files:
	linux-2.6-debug-resource-overflow.patch 
Log Message:
* Tue Mar 11 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.24.3-32
- Add missing debug patch.
- Remove the fix for stray GPEs because it breaks ACPI (#436959)


linux-2.6-debug-resource-overflow.patch:

--- NEW FILE linux-2.6-debug-resource-overflow.patch ---
diff --git a/drivers/pnp/pnpacpi/rsparser.c b/drivers/pnp/pnpacpi/rsparser.c
index 6aa231e..0c22e41 100644
--- a/drivers/pnp/pnpacpi/rsparser.c
+++ b/drivers/pnp/pnpacpi/rsparser.c
@@ -86,7 +86,7 @@ static void pnpacpi_parse_allocated_irqresource(struct pnp_resource_table *res,
 		i++;
 	if (i >= PNP_MAX_IRQ && !warned) {
 		printk(KERN_ERR "pnpacpi: exceeded the max number of IRQ "
-				"resources: %d \n", PNP_MAX_IRQ);
+				"resources. Max:%d Found:%d\n", PNP_MAX_IRQ, i);
 		warned = 1;
 		return;
 	}
@@ -188,7 +188,7 @@ static void pnpacpi_parse_allocated_dmaresource(struct pnp_resource_table *res,
 		res->dma_resource[i].end = dma;
 	} else if (!warned) {
 		printk(KERN_ERR "pnpacpi: exceeded the max number of DMA "
-				"resources: %d \n", PNP_MAX_DMA);
+				"resources. Max:%d Found:%d\n", PNP_MAX_DMA, i);
 		warned = 1;
 	}
 }
@@ -214,7 +214,7 @@ static void pnpacpi_parse_allocated_ioresource(struct pnp_resource_table *res,
 		res->port_resource[i].end = io + len - 1;
 	} else if (!warned) {
 		printk(KERN_ERR "pnpacpi: exceeded the max number of IO "
-				"resources: %d \n", PNP_MAX_PORT);
+				"resources. Max:%d Found:%d\n", PNP_MAX_PORT, i);
 		warned = 1;
 	}
 }
@@ -242,7 +242,7 @@ static void pnpacpi_parse_allocated_memresource(struct pnp_resource_table *res,
 		res->mem_resource[i].end = mem + len - 1;
 	} else if (!warned) {
 		printk(KERN_ERR "pnpacpi: exceeded the max number of mem "
-				"resources: %d\n", PNP_MAX_MEM);
+				"resources. Max:%d Found:%d\n", PNP_MAX_MEM, i);
 		warned = 1;
 	}
 }


Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-8/kernel.spec,v
retrieving revision 1.377
retrieving revision 1.378
diff -u -r1.377 -r1.378
--- kernel.spec	11 Mar 2008 19:03:21 -0000	1.377
+++ kernel.spec	11 Mar 2008 19:30:38 -0000	1.378
@@ -677,7 +677,7 @@
 #Patch780: linux-2.6-clockevents-fix-resume-logic.patch
 Patch761: linux-2.6-acpi-video-backlight-rationalize.patch
 Patch763: linux-2.6-acpi-video-fix-multiple-busses.patch
-Patch766: linux-2.6-acpi-disable-gpe-fix.patch
+#Patch766: linux-2.6-acpi-disable-gpe-fix.patch
 Patch784: linux-2.6-acpi-eeepc-hotkey.patch
 
 Patch820: linux-2.6-compile-fixes.patch
@@ -1257,7 +1257,8 @@
 ApplyPatch linux-2.6-acpi-video-backlight-rationalize.patch
 ApplyPatch linux-2.6-acpi-video-fix-multiple-busses.patch
 # disable stray gpe properly
-ApplyPatch linux-2.6-acpi-disable-gpe-fix.patch
+# need to find out why this is broken
+#ApplyPatch linux-2.6-acpi-disable-gpe-fix.patch
 # Eeepc hotkey driver
 ApplyPatch linux-2.6-acpi-eeepc-hotkey.patch
 
@@ -1912,6 +1913,10 @@
 
 
 %changelog
+* Tue Mar 11 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.24.3-32
+- Add missing debug patch.
+- Remove the fix for stray GPEs because it breaks ACPI (#436959)
+
 * Tue Mar 11 2008 Dave Jones <davej at redhat.com>
 - Print values when we overflow resource allocation.
 




More information about the fedora-extras-commits mailing list