The patch titled Subject: procfs-add-vmflags-field-in-smaps-output-v3-fix-2 has been removed from the -mm tree. Its filename was procfs-add-vmflags-field-in-smaps-output-v3-fix-2.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Cyrill Gorcunov <gorcunov@xxxxxxxxxx> Subject: procfs-add-vmflags-field-in-smaps-output-v3-fix-2 Use designated init to assign "??" mnemonic on unknown flags. Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxxx> Cc: Pavel Emelyanov <xemul@xxxxxxxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/task_mmu.c | 5 +++++ 1 file changed, 5 insertions(+) diff -puN fs/proc/task_mmu.c~procfs-add-vmflags-field-in-smaps-output-v3-fix-2 fs/proc/task_mmu.c --- a/fs/proc/task_mmu.c~procfs-add-vmflags-field-in-smaps-output-v3-fix-2 +++ a/fs/proc/task_mmu.c @@ -534,6 +534,11 @@ static void show_smap_vma_flags(struct s static const struct { const char l[2]; } mnemonics[BITS_PER_LONG] = { + /* + * In case if we meet a flag we don't know about. + */ + [0 ... (BITS_PER_LONG-1)] = { {'?', '?'} }, + [ilog2(VM_READ)] = { {'r', 'd'} }, [ilog2(VM_WRITE)] = { {'w', 'r'} }, [ilog2(VM_EXEC)] = { {'e', 'x'} }, _ Patches currently in -mm which might be from gorcunov@xxxxxxxxxx are pidns-limit-the-nesting-depth-of-pid-namespaces.patch pidns-limit-the-nesting-depth-of-pid-namespaces-fix.patch linux-next.patch proc-check-vma-vm_file-before-dereferencing.patch procfs-add-vmflags-field-in-smaps-output-v4.patch procfs-add-vmflags-field-in-smaps-output-v4-fix.patch tools-testing-selftests-kcmp-kcmp_testc-print-reason-for-failure-in-kcmp_test.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html