[PARISC] Fix BLK_BOUNCE_HIGH on parisc by initializing max_low_pfn

max_low_pfn was not being set in arch/parisc/mm/init.c, causing severe
problems whenever anything tried to use BLK_BOUNCE_HIGH. Set it to
max_pfn like other similar architectures do.

Signed-off-by: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by

Grant Grundler and committed by
Kyle McMartin
5cdb8205 6ca45a24

+7
+7
arch/parisc/mm/init.c
··· 300 300 max_pfn = start_pfn + npages; 301 301 } 302 302 303 + /* IOMMU is always used to access "high mem" on those boxes 304 + * that can support enough mem that a PCI device couldn't 305 + * directly DMA to any physical addresses. 306 + * ISA DMA support will need to revisit this. 307 + */ 308 + max_low_pfn = max_pfn; 309 + 303 310 if ((bootmap_pfn - bootmap_start_pfn) != bootmap_pages) { 304 311 printk(KERN_WARNING "WARNING! bootmap sizing is messed up!\n"); 305 312 BUG();