From: Thomas Gleixner Date: Sat, 24 May 2008 15:24:34 +0000 (+0200) Subject: x86: fixup the fallout of the bitops changes X-Git-Tag: v2.6.27-rc1~1106^2~251^6~24 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=48e239572271cf79412d90753a721242a765f7d9;p=karo-tx-linux.git x86: fixup the fallout of the bitops changes Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c index 50159764f694..ee1d6d39edd4 100644 --- a/arch/x86/mm/pgtable.c +++ b/arch/x86/mm/pgtable.c @@ -255,7 +255,7 @@ int ptep_test_and_clear_young(struct vm_area_struct *vma, if (pte_young(*ptep)) ret = test_and_clear_bit(_PAGE_BIT_ACCESSED, - &ptep->pte); + (unsigned long *) &ptep->pte); if (ret) pte_update(vma->vm_mm, addr, ptep);