Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 82870
b: refs/heads/master
c: edd6bcd
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Fitzhardinge authored and Ingo Molnar committed Feb 4, 2008
1 parent c531ab9 commit 51e51b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 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: a67ad9c9f82342a9b320fdad204a490727ef4a18
refs/heads/master: edd6bcd8209c31b91e1fbc112a756475091c483d
11 changes: 7 additions & 4 deletions trunk/include/asm-x86/pgtable-3level.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,20 @@ static inline void native_pmd_clear(pmd_t *pmd)

static inline void pud_clear(pud_t *pudp)
{
unsigned long pgd;

set_pud(pudp, __pud(0));

/*
* Pentium-II erratum A13: in PAE mode we explicitly have to flush
* the TLB via cr3 if the top-level pgd is changed...
*
* XXX I don't think we need to worry about this here, since
* when clearing the pud, the calling code needs to flush the
* tlb anyway. But do it now for safety's sake. - jsgf
* Make sure the pud entry we're updating is within the
* current pgd to avoid unnecessary TLB flushes.
*/
write_cr3(read_cr3());
pgd = read_cr3();
if (__pa(pudp) >= pgd && __pa(pudp) < (pgd + sizeof(pgd_t)*PTRS_PER_PGD))
write_cr3(pgd);
}

#define pud_page(pud) \
Expand Down

0 comments on commit 51e51b1

Please sign in to comment.