The patch titled Subject: init/main.c: mark boot_config_checksum static has been removed from the -mm tree. Its filename was init-mainc-mark-boot_config_checksum-static.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Qiujun Huang <hqjagain@xxxxxxxxx> Subject: init/main.c: mark boot_config_checksum static In fact, this function is only used in this file, so mark it with 'static'. Link: http://lkml.kernel.org/r/1581852511-14163-1-git-send-email-hqjagain@xxxxxxxxx Signed-off-by: Qiujun Huang <hqjagain@xxxxxxxxx> Acked-by: Masami Hiramatsu <mhiramat@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/init/main.c~init-mainc-mark-boot_config_checksum-static +++ a/init/main.c @@ -336,7 +336,7 @@ static char * __init xbc_make_cmdline(co return new_cmdline; } -u32 boot_config_checksum(unsigned char *p, u32 size) +static u32 boot_config_checksum(unsigned char *p, u32 size) { u32 ret = 0; _ Patches currently in -mm which might be from hqjagain@xxxxxxxxx are