aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Gang <gang.chen@asianux.com>2013-09-11 17:24:35 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-09-11 18:59:03 -0400
commita3c039929d01f793c47922017b6c0ae438e11598 (patch)
tree38c5b762cbdf36877416e80f5009ec5e48c624b8
parent4649602265495a3bb776d777c91dba569f4afb5d (diff)
fs/proc/task_mmu.c: check the return value of mpol_to_str()
mpol_to_str() may fail, and not fill the buffer (e.g. -EINVAL), so need check about it, or buffer may not be zero based, and next seq_printf() will cause issue. The failure return need after mpol_cond_put() to match get_vma_policy(). Signed-off-by: Chen Gang <gang.chen@asianux.com> Cc: Cyrill Gorcunov <gorcunov@gmail.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: Andi Kleen <andi@firstfloor.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/proc/task_mmu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index 09228639b83d..7366e9d63cee 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -1402,8 +1402,10 @@ static int show_numa_map(struct seq_file *m, void *v, int is_pid)
1402 walk.mm = mm; 1402 walk.mm = mm;
1403 1403
1404 pol = get_vma_policy(task, vma, vma->vm_start); 1404 pol = get_vma_policy(task, vma, vma->vm_start);
1405 mpol_to_str(buffer, sizeof(buffer), pol); 1405 n = mpol_to_str(buffer, sizeof(buffer), pol);
1406 mpol_cond_put(pol); 1406 mpol_cond_put(pol);
1407 if (n < 0)
1408 return n;
1407 1409
1408 seq_printf(m, "%08lx %s", vma->vm_start, buffer); 1410 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1409 1411