[SPARC64]: Fix >8K I/O mappings.

Increment the PFN field of the PTE so that the tests
on vm_pfn in mm/memory.c match up. The TLB ignores these
lower bits for larger page sizes, so it's OK to set things
like this.

Signed-off-by: David S. Miller <davem@davemloft.net>

+1
+1
arch/sparc64/mm/generic.c
··· 77 BUG_ON(!pte_none(*pte)); 78 set_pte_at(mm, address, pte, entry); 79 address += PAGE_SIZE; 80 pte++; 81 } while (address < curend); 82 } while (address < end);
··· 77 BUG_ON(!pte_none(*pte)); 78 set_pte_at(mm, address, pte, entry); 79 address += PAGE_SIZE; 80 + pte_val(entry) += PAGE_SIZE; 81 pte++; 82 } while (address < curend); 83 } while (address < end);