From c1a3697053cc39639dda0312df54cf07da3d0efd Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Wed, 30 Jan 2008 13:32:42 +0100 Subject: [PATCH] --- yaml --- r: 80168 b: refs/heads/master c: 7a2389b457a03f226b441b5c53f9808d4eefdcea h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/asm-x86/pgtable_64.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 29593bc71a95..335f0aa6fb5f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 3da1bcc2659de27094592e5a037d0b1d59351e03 +refs/heads/master: 7a2389b457a03f226b441b5c53f9808d4eefdcea diff --git a/trunk/include/asm-x86/pgtable_64.h b/trunk/include/asm-x86/pgtable_64.h index 5c252d9fee1b..3f280105d7b3 100644 --- a/trunk/include/asm-x86/pgtable_64.h +++ b/trunk/include/asm-x86/pgtable_64.h @@ -79,12 +79,12 @@ static inline void set_pte(pte_t *dst, pte_t val) static inline void set_pmd(pmd_t *dst, pmd_t val) { - pmd_val(*dst) = pmd_val(val); + *dst = val; } static inline void set_pud(pud_t *dst, pud_t val) { - pud_val(*dst) = pud_val(val); + *dst = val; } static inline void pud_clear (pud_t *pud) @@ -94,7 +94,7 @@ static inline void pud_clear (pud_t *pud) static inline void set_pgd(pgd_t *dst, pgd_t val) { - pgd_val(*dst) = pgd_val(val); + *dst = val; } static inline void pgd_clear (pgd_t * pgd)