[PATCH] x86_64: Tell user to enable GART_IOMMU when needed

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andi Kleen and committed by
Linus Torvalds
5b22a385 7554c3f0

+3 -2
+3 -2
arch/x86_64/kernel/pci-nommu.c
··· 92 dma_ops = &nommu_dma_ops; 93 if (end_pfn > MAX_DMA32_PFN) { 94 printk(KERN_ERR 95 - "WARNING more than 4GB of memory but IOMMU disabled.\n" 96 - KERN_ERR "WARNING 32bit PCI may malfunction.\n"); 97 } 98 }
··· 92 dma_ops = &nommu_dma_ops; 93 if (end_pfn > MAX_DMA32_PFN) { 94 printk(KERN_ERR 95 + "WARNING more than 4GB of memory but IOMMU not compiled in.\n" 96 + KERN_ERR "WARNING 32bit PCI may malfunction.\n" 97 + KERN_ERR "You might want to enable CONFIG_GART_IOMMU\n"); 98 } 99 }