Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80168
b: refs/heads/master
c: 7a2389b
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Jan 30, 2008
1 parent 116c4f3 commit c1a3697
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3da1bcc2659de27094592e5a037d0b1d59351e03
refs/heads/master: 7a2389b457a03f226b441b5c53f9808d4eefdcea
6 changes: 3 additions & 3 deletions trunk/include/asm-x86/pgtable_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit c1a3697

Please sign in to comment.