From 894f53ecb35101ced8a13db84879d5d770d73978 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Thu, 29 Nov 2012 14:18:54 +1100 Subject: [PATCH] procfs-add-vmflags-field-in-smaps-output-v4-fix remove unneeded brakes per sfr, avoid using bloaty for_each_set_bit() Cc: Cyrill Gorcunov Cc: Pavel Emelyanov Cc: Peter Zijlstra Cc: Stephen Rothwell Signed-off-by: Andrew Morton --- fs/proc/task_mmu.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index 7a1176939ef9..448455b7fd91 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c @@ -535,7 +535,7 @@ static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma) /* * In case if we meet a flag we don't know about. */ - [0 ... (BITS_PER_LONG-1)] = { "??" }, + [0 ... (BITS_PER_LONG-1)] = "??", [ilog2(VM_READ)] = "rd", [ilog2(VM_WRITE)] = "wr", @@ -568,10 +568,11 @@ static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma) size_t i; seq_puts(m, "VmFlags: "); - for_each_set_bit(i, &vma->vm_flags, BITS_PER_LONG) { - seq_printf(m, "%c%c ", - mnemonics[i][0], - mnemonics[i][1]); + for (i = 0; i < BITS_PER_LONG; i++) { + if (vma->vm_flags & (1UL << i)) { + seq_printf(m, "%c%c ", + mnemonics[i][0], mnemonics[i][1]); + } } seq_putc(m, '\n'); } -- 2.39.5