From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <20080618223329.009886485@linux.vnet.ibm.com> References: <20080618223254.966080905@linux.vnet.ibm.com> Date: Wed, 18 Jun 2008 17:32:56 -0500 From: shaggy@linux.vnet.ibm.com To: Andrew Morton Subject: [patch 2/6] powerpc: hash_huge_page() should get the WIMG bits from the lpte Cc: Jon Tollefson , Linuxppc-dev@ozlabs.org, linux-mm@kvack.org, Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Signed-off-by: Dave Kleikamp Cc: Jon Tollefson Cc: Adam Litke Cc: Benjamin Herrenschmidt --- arch/powerpc/mm/hugetlbpage.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Index: linux-2.6.26-rc5/arch/powerpc/mm/hugetlbpage.c =================================================================== --- linux-2.6.26-rc5.orig/arch/powerpc/mm/hugetlbpage.c +++ linux-2.6.26-rc5/arch/powerpc/mm/hugetlbpage.c @@ -502,9 +502,8 @@ repeat: new_pte = (new_pte & ~_PAGE_HPTEFLAGS) | _PAGE_HASHPTE; /* Add in WIMG bits */ - /* XXX We should store these in the pte */ - /* --BenH: I think they are ... */ - rflags |= _PAGE_COHERENT; + rflags |= (new_pte & (_PAGE_WRITETHRU | _PAGE_NO_CACHE | + _PAGE_COHERENT | _PAGE_GUARDED)); /* Insert into the hash table, primary slot */ slot = ppc_md.hpte_insert(hpte_group, va, pa, rflags, 0, --