The patch titled Subject: param-convert-some-on-off-users-to-strtobool fix has been removed from the -mm tree. Its filename was param-convert-some-on-off-users-to-strtobool-fix.patch This patch was dropped because it was folded into param-convert-some-on-off-users-to-strtobool.patch ------------------------------------------------------ From: Kees Cook <keescook@xxxxxxxxxxxx> Subject: param-convert-some-on-off-users-to-strtobool fix This converts a missed __setup return (and silences the build warning it was causing). Signed-off-by: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/kernel/rtasd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN arch/powerpc/kernel/rtasd.c~param-convert-some-on-off-users-to-strtobool-fix arch/powerpc/kernel/rtasd.c --- a/arch/powerpc/kernel/rtasd.c~param-convert-some-on-off-users-to-strtobool-fix +++ a/arch/powerpc/kernel/rtasd.c @@ -592,8 +592,6 @@ __setup("surveillance=", surveillance_se static int __init rtasmsgs_setup(char *str) { - kstrtobool(str, &full_rtas_msgs); - - return 1; + return (kstrtobool(str, &full_rtas_msgs) == 0); } __setup("rtasmsgs=", rtasmsgs_setup); _ Patches currently in -mm which might be from keescook@xxxxxxxxxxxx are lib-move-strtobool-to-kstrtobool.patch lib-update-single-char-callers-of-strtobool.patch lib-add-on-off-support-to-kstrtobool.patch param-convert-some-on-off-users-to-strtobool.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