The patch titled Subject: mm/ptdump: fix a -Wold-style-declaration warning has been removed from the -mm tree. Its filename was mm-add-generic-ptdump-v15-fix.patch This patch was dropped because it was folded into mm-add-generic-ptdump.patch ------------------------------------------------------ From: Qian Cai <cai@xxxxxx> Subject: mm/ptdump: fix a -Wold-style-declaration warning The -next commit "mm: add generic ptdump" [1] introduced a GCC compilation warning, mm/ptdump.c:123:1: warning: 'static' is not at beginning of declaration [-Wold-style-declaration] const static struct mm_walk_ops ptdump_ops = { ^~~~~ [1] http://lkml.kernel.org/r/20191028135910.33253-20-steven.price@xxxxxxx Link: http://lkml.kernel.org/r/1572895385-29194-1-git-send-email-cai@xxxxxx Signed-off-by: Qian Cai <cai@xxxxxx> Cc: Steven Price <steven.price@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/ptdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/ptdump.c~mm-add-generic-ptdump-v15-fix +++ a/mm/ptdump.c @@ -120,7 +120,7 @@ static int ptdump_hole(unsigned long add return 0; } -const static struct mm_walk_ops ptdump_ops = { +static const struct mm_walk_ops ptdump_ops = { .pgd_entry = ptdump_pgd_entry, .p4d_entry = ptdump_p4d_entry, .pud_entry = ptdump_pud_entry, _ Patches currently in -mm which might be from cai@xxxxxx are mm-add-generic-ptdump.patch mm-vmscan-simplify-lruvec_lru_size-fix.patch mm-vmscan-detect-file-thrashing-at-the-reclaim-root-fix-2.patch z3fold-add-inter-page-compaction-fix.patch hugetlb-remove-unused-hstate-in-hugetlb_fault_mutex_hash-fix-fix.patch