diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-07 02:07:35 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-07 02:07:35 -0400 |
commit | d763d5edf945eec47bd443b699f174976f0afc13 (patch) | |
tree | 3e5cd46b9a783999716bf92176854f4f1215d930 /arch/x86/mm/fault.c | |
parent | 790e2a290b499b0400254e6870ec27969065d122 (diff) | |
parent | 1b40a895df6c7d5a80e71f65674060b03d84bbef (diff) |
Merge branch 'linus' into tracing/mmiotrace
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. |