[PATCH] pnpacpi: reject ACPI_PRODUCER resources

A patch in -mm kernel correct the parsing of "address resources" of pnpacpi.
Before we assumed it was memory only, but it could be also IO.

But this change show an hidden bug : some resources could be producer type
that are not handled by pnp layer. So we should ignore the producer
resources.

This patch fixes bug 6292 (http://bugzilla.kernel.org/show_bug.cgi?id=6292).
Some devices like PNP0A03 have 0xd00-0xffff and 0x0-0xcf7 as IO producer
resources.

Before correcting "address resources" parsing, it was seen as memory and was
harmless, because nobody tried to reserve this memory range as it should be
IO.

With the correction it become IO resources, and make failed all others device
that want to register IO in this range and use pnp layer (like a ISA sound
card).

The solution is to ignore producer resources

Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr>
Signed-off-by: Uwe Bugla <uwe.bugla@gmx.de>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: Adam Belay <ambx1@neo.rr.com>
Cc: "Brown, Len" <len.brown@intel.com>
Acked-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by matthieu castet and committed by Linus Torvalds 2b8de5f5 b4c76fa7

+8
+8
drivers/pnp/pnpacpi/rsparser.c
··· 173 173 return; 174 174 } 175 175 176 + if (p->producer_consumer == ACPI_PRODUCER) 177 + return; 178 + 176 179 if (p->resource_type == ACPI_MEMORY_RANGE) 177 180 pnpacpi_parse_allocated_memresource(res_table, 178 181 p->minimum, p->address_length); ··· 255 252 break; 256 253 257 254 case ACPI_RESOURCE_TYPE_EXTENDED_ADDRESS64: 255 + if (res->data.ext_address64.producer_consumer == ACPI_PRODUCER) 256 + return AE_OK; 258 257 break; 259 258 260 259 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: 260 + if (res->data.extended_irq.producer_consumer == ACPI_PRODUCER) 261 + return AE_OK; 262 + 261 263 for (i = 0; i < res->data.extended_irq.interrupt_count; i++) { 262 264 pnpacpi_parse_allocated_irqresource(res_table, 263 265 res->data.extended_irq.interrupts[i],