The patch titled Subject: certs/blacklist_nohashes.c: fix const confusion in certs blacklist has been added to the -mm tree. Its filename is fix-const-confusion-in-certs-blacklist.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fix-const-confusion-in-certs-blacklist.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fix-const-confusion-in-certs-blacklist.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andi Kleen <ak@xxxxxxxxxxxxxxx> Subject: certs/blacklist_nohashes.c: fix const confusion in certs blacklist const must be marked __initconst, not __initdata. Link: http://lkml.kernel.org/r/20171222001335.1987-1-andi@xxxxxxxxxxxxxx Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- certs/blacklist_nohashes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN certs/blacklist_nohashes.c~fix-const-confusion-in-certs-blacklist certs/blacklist_nohashes.c --- a/certs/blacklist_nohashes.c~fix-const-confusion-in-certs-blacklist +++ a/certs/blacklist_nohashes.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 #include "blacklist.h" -const char __initdata *const blacklist_hashes[] = { +const char __initconst *const blacklist_hashes[] = { NULL }; _ Patches currently in -mm which might be from ak@xxxxxxxxxxxxxxx are fix-const-confusion-in-certs-blacklist.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