diff options
author | Maciej Sosnowski <[email protected]> | 2009-02-26 11:04:54 +0100 |
---|---|---|
committer | Dan Williams <[email protected]> | 2009-03-04 16:04:39 -0700 |
commit | 8b794b141c633083408d0bfb2229b3406d0ebf99 (patch) | |
tree | 767cad4cafccce7c606003088ead281b70477fe3 | |
parent | ea9c717d0148d4194f9bd04ecfa6b59b20fc0a08 (diff) |
I/OAT: fail initialization on zero channels detection
On some systems with I/OAT ver.2 when DCA is disabled in BIOS
situations have been observed
that zero DMA channels are detected instead of four.
To avoid kernel panic driver should fail gracefully with appropriate message.
Signed-off-by: Maciej Sosnowski <[email protected]>
Signed-off-by: Shannon Nelson <[email protected]>
Acked-by: Jeff Kirsher <[email protected]>
Signed-off-by: Dan Williams <[email protected]>
-rw-r--r-- | drivers/dma/ioat_dma.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat_dma.c index 879f4a06e3ca..9012da7908f5 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat_dma.c @@ -1659,6 +1659,13 @@ struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev, " %d channels, device version 0x%02x, driver version %s\n", device->common.chancnt, device->version, IOAT_DMA_VERSION); + if (!device->common.chancnt) { + dev_err(&device->pdev->dev, + "Intel(R) I/OAT DMA Engine problem found: " + "zero channels detected\n"); + goto err_setup_interrupts; + } + err = ioat_dma_setup_interrupts(device); if (err) goto err_setup_interrupts; |