diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-16 05:16:46 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-16 05:16:46 -0400 |
commit | cb9aa97c21c59ad01c9514d7faf45dc166fba226 (patch) | |
tree | 66a530f154db78b85f5b1406ebc51401df8d3913 /arch/x86/mm/fault.c | |
parent | 668a6c3654560aef8741642478973e205a4f02bf (diff) | |
parent | 066519068ad2fbe98c7f45552b1f592903a9c8c8 (diff) |
Merge branch 'linus' into tracing/mmiotrace-mergefixups
Diffstat (limited to 'arch/x86/mm/fault.c')
-rw-r--r-- | arch/x86/mm/fault.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index 8c828a68d3b6..0a778e3c43ee 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c | |||
@@ -508,6 +508,11 @@ static int vmalloc_fault(unsigned long address) | |||
508 | unsigned long pgd_paddr; | 508 | unsigned long pgd_paddr; |
509 | pmd_t *pmd_k; | 509 | pmd_t *pmd_k; |
510 | pte_t *pte_k; | 510 | pte_t *pte_k; |
511 | |||
512 | /* Make sure we are in vmalloc area */ | ||
513 | if (!(address >= VMALLOC_START && address < VMALLOC_END)) | ||
514 | return -1; | ||
515 | |||
511 | /* | 516 | /* |
512 | * Synchronize this task's top level page-table | 517 | * Synchronize this task's top level page-table |
513 | * with the 'reference' page table. | 518 | * with the 'reference' page table. |