public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]: Error in ACPI error handling results in WARN_ON
@ 2005-01-14 13:51 Prarit Bhargava
  2005-01-14 14:09 ` Matthew Wilcox
  2005-01-14 14:18 ` Prarit Bhargava
  0 siblings, 2 replies; 3+ messages in thread
From: Prarit Bhargava @ 2005-01-14 13:51 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 378 bytes --]

The issue here is the error handling within the ACPI layer.  gsi = 0 is a
valid return value from acpi_pci_irq_lookup, while gsi = (-1) is the value
returned when a PRT cannot be found.

This error in error handling can result in a WARN_ON at
arch/ia64/kernel/iosapic.c:622 .

The remaining fix is to complete error handling within the core IDE
layer and the IOC4 IDE driver.



[-- Attachment #2: acpi-ide.patch --]
[-- Type: text/plain, Size: 1360 bytes --]

===== drivers/acpi/pci_irq.c 1.35 vs edited =====
--- 1.35/drivers/acpi/pci_irq.c	2005-01-04 21:48:17 -05:00
+++ edited/drivers/acpi/pci_irq.c	2005-01-13 16:08:10 -05:00
@@ -487,10 +487,10 @@
 	 * If no PRT entry was found, we'll try to derive an IRQ from the
 	 * device's parent bridge.
 	 */
-	if (!gsi)
+	if (gsi == (-1))
  		gsi = acpi_pci_irq_derive(dev, pin,
 					  &edge_level, &active_high_low);
-	if (!gsi)
+	if (!gsi == (-1))
 		return_VOID;
 
 	/*
===== drivers/ide/ide-probe.c 1.90 vs edited =====
--- 1.90/drivers/ide/ide-probe.c	2004-12-10 14:12:14 -05:00
+++ edited/drivers/ide/ide-probe.c	2005-01-14 07:16:42 -05:00
@@ -841,7 +841,11 @@
 	if (fixup)
 		fixup(hwif);
 
-	hwif_init(hwif);
+	if (!hwif_init(hwif))
+	{
+		printk("%s: Failed to initialize IDE interface\n", hwif->name);
+		return -1;
+	}
 
 	if (hwif->present) {
 		u16 unit = 0;
===== drivers/ide/pci/sgiioc4.c 1.22 vs edited =====
--- 1.22/drivers/ide/pci/sgiioc4.c	2005-01-06 20:35:35 -05:00
+++ edited/drivers/ide/pci/sgiioc4.c	2005-01-14 07:23:27 -05:00
@@ -669,7 +669,11 @@
 		printk(KERN_INFO "%s: %s Bus-Master DMA disabled\n",
 		       hwif->name, d->name);
 
-	probe_hwif_init(hwif);
+	if (probe_hwif_init(hwif))
+	{
+		printk(KERN_INFO "%s: initialization failed\n", hwif->name);
+		return -EIO;
+	}
 
 	/* Create /proc/ide entries */
 	create_proc_ide_interfaces(); 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH]: Error in ACPI error handling results in WARN_ON
  2005-01-14 13:51 [PATCH]: Error in ACPI error handling results in WARN_ON Prarit Bhargava
@ 2005-01-14 14:09 ` Matthew Wilcox
  2005-01-14 14:18 ` Prarit Bhargava
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew Wilcox @ 2005-01-14 14:09 UTC (permalink / raw)
  To: linux-ia64

On Fri, Jan 14, 2005 at 08:51:25AM -0500, Prarit Bhargava wrote:
> The issue here is the error handling within the ACPI layer.  gsi = 0 is a
> valid return value from acpi_pci_irq_lookup, while gsi = (-1) is the value
> returned when a PRT cannot be found.

> === drivers/acpi/pci_irq.c 1.35 vs edited ==> --- 1.35/drivers/acpi/pci_irq.c	2005-01-04 21:48:17 -05:00
> +++ edited/drivers/acpi/pci_irq.c	2005-01-13 16:08:10 -05:00
> @@ -487,10 +487,10 @@
>  	 * If no PRT entry was found, we'll try to derive an IRQ from the
>  	 * device's parent bridge.
>  	 */
> -	if (!gsi)
> +	if (gsi = (-1))

Brackets here just look clumsy; better to write:

	if (gsi = -1)

>   		gsi = acpi_pci_irq_derive(dev, pin,
>  					  &edge_level, &active_high_low);
> -	if (!gsi)
> +	if (!gsi = (-1))

And this is a mistake -- you didn't remove the !  Again, it should be:

	if (gsi = -1)

> === drivers/ide/ide-probe.c 1.90 vs edited ==> --- 1.90/drivers/ide/ide-probe.c	2004-12-10 14:12:14 -05:00
> +++ edited/drivers/ide/ide-probe.c	2005-01-14 07:16:42 -05:00
> @@ -841,7 +841,11 @@
>  	if (fixup)
>  		fixup(hwif);
>  
> -	hwif_init(hwif);
> +	if (!hwif_init(hwif))
> +	{
> +		printk("%s: Failed to initialize IDE interface\n", hwif->name);
> +		return -1;
> +	}
>  
>  	if (hwif->present) {
>  		u16 unit = 0;

Please send this one to linux-ide@vger.kernel.org

> === drivers/ide/pci/sgiioc4.c 1.22 vs edited ==> --- 1.22/drivers/ide/pci/sgiioc4.c	2005-01-06 20:35:35 -05:00
> +++ edited/drivers/ide/pci/sgiioc4.c	2005-01-14 07:23:27 -05:00
> @@ -669,7 +669,11 @@
>  		printk(KERN_INFO "%s: %s Bus-Master DMA disabled\n",
>  		       hwif->name, d->name);
>  
> -	probe_hwif_init(hwif);
> +	if (probe_hwif_init(hwif))
> +	{
> +		printk(KERN_INFO "%s: initialization failed\n", hwif->name);
> +		return -EIO;
> +	}
>  
>  	/* Create /proc/ide entries */
>  	create_proc_ide_interfaces(); 

May as well send this one along with it.  BTW, the normal coding style is
to place brackets on the same line as the conditional:

	if (probe_hwif_init(hwif)) {
		printk(...)
		return -EIO;
	}

-- 
"Next the statesmen will invent cheap lies, putting the blame upon 
the nation that is attacked, and every man will be glad of those
conscience-soothing falsities, and will diligently study them, and refuse
to examine any refutations of them; and thus he will by and by convince 
himself that the war is just, and will thank God for the better sleep 
he enjoys after this process of grotesque self-deception." -- Mark Twain

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH]: Error in ACPI error handling results in WARN_ON
  2005-01-14 13:51 [PATCH]: Error in ACPI error handling results in WARN_ON Prarit Bhargava
  2005-01-14 14:09 ` Matthew Wilcox
@ 2005-01-14 14:18 ` Prarit Bhargava
  1 sibling, 0 replies; 3+ messages in thread
From: Prarit Bhargava @ 2005-01-14 14:18 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 120 bytes --]

Thanks for your input Matthew -- it's always appreciated.

Here's a new patch taking into account Matthew's comments.



[-- Attachment #2: acpi-ide.patch --]
[-- Type: text/plain, Size: 456 bytes --]

===== drivers/acpi/pci_irq.c 1.35 vs edited =====
--- 1.35/drivers/acpi/pci_irq.c	2005-01-04 21:48:17 -05:00
+++ edited/drivers/acpi/pci_irq.c	2005-01-14 08:14:34 -05:00
@@ -487,10 +487,10 @@
 	 * If no PRT entry was found, we'll try to derive an IRQ from the
 	 * device's parent bridge.
 	 */
-	if (!gsi)
+	if (gsi == -1)
  		gsi = acpi_pci_irq_derive(dev, pin,
 					  &edge_level, &active_high_low);
-	if (!gsi)
+	if (gsi == -1)
 		return_VOID;
 
 	/*

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-01-14 14:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-14 13:51 [PATCH]: Error in ACPI error handling results in WARN_ON Prarit Bhargava
2005-01-14 14:09 ` Matthew Wilcox
2005-01-14 14:18 ` Prarit Bhargava

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox