projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3da1bcc
)
x86: page.h: move and unify types for pagetable entry, #2
author
Ingo Molnar
<
[email protected]
>
Wed, 30 Jan 2008 12:32:42 +0000
(13:32 +0100)
committer
Ingo Molnar
<
[email protected]
>
Wed, 30 Jan 2008 12:32:42 +0000
(13:32 +0100)
based on:
Subject: x86: page.h: move and unify types for pagetable entry
From: Jeremy Fitzhardinge <
[email protected]
>
Signed-off-by: Ingo Molnar <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
include/asm-x86/pgtable_64.h
patch
|
blob
|
history
diff --git
a/include/asm-x86/pgtable_64.h
b/include/asm-x86/pgtable_64.h
index 5c252d9fee1bbebeb869c85b2bc2ba8833d15ed4..3f280105d7b39516636fb93467a3741fbe57023a 100644
(file)
--- a/
include/asm-x86/pgtable_64.h
+++ b/
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)