Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19783
b: refs/heads/master
c: d646bce
h: refs/heads/master
i:
  19781: 0ee6baa
  19779: 4f8c1ec
  19775: 447814d
v: v3
  • Loading branch information
Jan Beulich authored and Linus Torvalds committed Feb 5, 2006
1 parent f11d588 commit 9d47ac5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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: 91522a964b295e7bccb173218cc00adadfc77bbf
refs/heads/master: d646bce4c77af72f5a293a96fbf14174c9f2a9c2
3 changes: 1 addition & 2 deletions trunk/arch/x86_64/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include <asm/proto.h>
#include <asm/kdebug.h>
#include <asm-generic/sections.h>
#include <asm/kdebug.h>

/* Page fault error code bits */
#define PF_PROT (1<<0) /* or no page found */
Expand Down Expand Up @@ -157,8 +156,8 @@ void dump_pagetable(unsigned long address)

pgd = __va((unsigned long)pgd & PHYSICAL_PAGE_MASK);
pgd += pgd_index(address);
printk("PGD %lx ", pgd_val(*pgd));
if (bad_address(pgd)) goto bad;
printk("PGD %lx ", pgd_val(*pgd));
if (!pgd_present(*pgd)) goto ret;

pud = __pud_offset_k((pud_t *)pgd_page(*pgd), address);
Expand Down

0 comments on commit 9d47ac5

Please sign in to comment.