aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorWanpeng Li <liwanp@linux.vnet.ibm.com>2013-11-12 18:07:32 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-12 22:09:05 -0500
commitaf12346cdacda36f0c35c657088282b8ecd0df72 (patch)
tree0909e340b521d0b1bc006eb858806769dba97e3c /mm
parentc2ce8c142c43c360047e173d2018d94a4d0f7a59 (diff)
mm/vmalloc: revert "mm/vmalloc.c: check VM_UNINITIALIZED flag in s_show instead of show_numa_info"
The VM_UNINITIALIZED/VM_UNLIST flag introduced by f5252e009d5b ("mm: avoid null pointer access in vm_struct via /proc/vmallocinfo") is used to avoid accessing the pages field with unallocated page when show_numa_info() is called. This patch moves the check just before show_numa_info in order that some messages still can be dumped via /proc/vmallocinfo. This patch reverts commit d157a55815ff ("mm/vmalloc.c: check VM_UNINITIALIZED flag in s_show instead of show_numa_info"); Reviewed-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Cc: Mitsuo Hayasaka <mitsuo.hayasaka.hu@hitachi.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/vmalloc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 814ce9122709..67535f87846c 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2562,6 +2562,11 @@ static void show_numa_info(struct seq_file *m, struct vm_struct *v)
2562 if (!counters) 2562 if (!counters)
2563 return; 2563 return;
2564 2564
2565 /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */
2566 smp_rmb();
2567 if (v->flags & VM_UNINITIALIZED)
2568 return;
2569
2565 memset(counters, 0, nr_node_ids * sizeof(unsigned int)); 2570 memset(counters, 0, nr_node_ids * sizeof(unsigned int));
2566 2571
2567 for (nr = 0; nr < v->nr_pages; nr++) 2572 for (nr = 0; nr < v->nr_pages; nr++)
@@ -2587,11 +2592,6 @@ static int s_show(struct seq_file *m, void *p)
2587 2592
2588 v = va->vm; 2593 v = va->vm;
2589 2594
2590 /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */
2591 smp_rmb();
2592 if (v->flags & VM_UNINITIALIZED)
2593 return 0;
2594
2595 seq_printf(m, "0x%pK-0x%pK %7ld", 2595 seq_printf(m, "0x%pK-0x%pK %7ld",
2596 v->addr, v->addr + v->size, v->size); 2596 v->addr, v->addr + v->size, v->size);
2597 2597