diff options
author | Christoph Lameter <clameter@engr.sgi.com> | 2006-03-02 05:54:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-02 11:33:07 -0500 |
commit | a57ebfdb2cf9fa60dfa2f403f70ef6c432ca2a62 (patch) | |
tree | 1597343f3e9c076fa37ceb2c6442cc9e3ca44656 | |
parent | 685db65e422bfa523b8a9dacb5a658b42b254f05 (diff) |
[PATCH] numa_maps: Fix potential crash on non IA64 platforms
numa_maps should not scan over huge vmas in order not to cause problems for
non IA64 platforms that may have pte entries pointing to huge pages in a
variety of ways in their page tables. Add a simple check to ignore vmas
containing huge pages.
Signed-off-by: Christoph Lameter <clameter@engr.sgi.com>
Cc: Hugh Dickins <hugh@veritas.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | mm/mempolicy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 5643cfed6b0f..1a210088ad80 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
@@ -1793,7 +1793,8 @@ int show_numa_map(struct seq_file *m, void *v) | |||
1793 | if (!md) | 1793 | if (!md) |
1794 | return 0; | 1794 | return 0; |
1795 | 1795 | ||
1796 | check_pgd_range(vma, vma->vm_start, vma->vm_end, | 1796 | if (!is_vm_hugetlb_page(vma)) |
1797 | check_pgd_range(vma, vma->vm_start, vma->vm_end, | ||
1797 | &node_online_map, MPOL_MF_STATS, md); | 1798 | &node_online_map, MPOL_MF_STATS, md); |
1798 | 1799 | ||
1799 | if (md->pages) { | 1800 | if (md->pages) { |