diff options
author | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2008-06-18 18:32:56 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-06-30 21:28:02 -0400 |
commit | 87e9ab13c36b838f7d557a6111dfdd29fcde85ad (patch) | |
tree | a5256d771463eebdf1830b2d9587758519040ed2 /arch/powerpc/mm/hugetlbpage.c | |
parent | 0cb99013775f75a7b2cc72a26f48827601cf7cee (diff) |
powerpc: hash_huge_page() should get the WIMG bits from the lpte
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Cc: Jon Tollefson <kniht@linux.vnet.ibm.com>
Cc: Adam Litke <agl@us.ibm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm/hugetlbpage.c')
-rw-r--r-- | arch/powerpc/mm/hugetlbpage.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/powerpc/mm/hugetlbpage.c b/arch/powerpc/mm/hugetlbpage.c index 8fa07f3f6c2b..0d12fba31bc5 100644 --- a/arch/powerpc/mm/hugetlbpage.c +++ b/arch/powerpc/mm/hugetlbpage.c | |||
@@ -504,9 +504,8 @@ repeat: | |||
504 | new_pte = (new_pte & ~_PAGE_HPTEFLAGS) | _PAGE_HASHPTE; | 504 | new_pte = (new_pte & ~_PAGE_HPTEFLAGS) | _PAGE_HASHPTE; |
505 | #endif | 505 | #endif |
506 | /* Add in WIMG bits */ | 506 | /* Add in WIMG bits */ |
507 | /* XXX We should store these in the pte */ | 507 | rflags |= (new_pte & (_PAGE_WRITETHRU | _PAGE_NO_CACHE | |
508 | /* --BenH: I think they are ... */ | 508 | _PAGE_COHERENT | _PAGE_GUARDED)); |
509 | rflags |= _PAGE_COHERENT; | ||
510 | 509 | ||
511 | /* Insert into the hash table, primary slot */ | 510 | /* Insert into the hash table, primary slot */ |
512 | slot = ppc_md.hpte_insert(hpte_group, va, pa, rflags, 0, | 511 | slot = ppc_md.hpte_insert(hpte_group, va, pa, rflags, 0, |