The patch titled Date: Sun, 18 Dec 2022 10:51:59 +0100 has been added to the -mm mm-nonmm-unstable branch. Its filename is lib-add-dhrystone-benchmark-test-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-add-dhrystone-benchmark-test-fix.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Date: Sun, 18 Dec 2022 10:51:59 +0100 Subject: lib-add-dhrystone-benchmark-test-fix fix uninitialized use of ret Link: https://lkml.kernel.org/r/alpine.DEB.2.22.394.2212190857310.137329@xxxxxxxxxxxxxx Reported-by: kernel test robot <lkp@xxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/dhry_run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/dhry_run.c~lib-add-dhrystone-benchmark-test-fix +++ a/lib/dhry_run.c @@ -69,7 +69,7 @@ static int dhry_run_set(const char *val, if (dhry_run && system_state == SYSTEM_RUNNING) dhry_benchmark(); - return ret; + return 0; } static int __init dhry_init(void) _ Patches currently in -mm which might be from geert+renesas@xxxxxxxxx are lib-add-dhrystone-benchmark-test.patch lib-add-dhrystone-benchmark-test-fix.patch