The patch titled Subject: param-convert-some-on-off-users-to-strtobool fix has been added to the -mm tree. Its filename is param-convert-some-on-off-users-to-strtobool-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/param-convert-some-on-off-users-to-strtobool-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/param-convert-some-on-off-users-to-strtobool-fix.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: 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 param-convert-some-on-off-users-to-strtobool-fix.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