The patch titled kernel/exit.c: fix shadows sparse warning has been added to the -mm tree. Its filename is kernel-exitc-fix-shadows-sparse-warning.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 *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kernel/exit.c: fix shadows sparse warning From: Thiago Farina <tfransosi@xxxxxxxxx> kernel/exit.c:1183:26: warning: symbol 'status' shadows an earlier one kernel/exit.c:1173:21: originally declared here Signed-off-by: Thiago Farina <tfransosi@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/exit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/exit.c~kernel-exitc-fix-shadows-sparse-warning kernel/exit.c --- a/kernel/exit.c~kernel-exitc-fix-shadows-sparse-warning +++ a/kernel/exit.c @@ -1181,7 +1181,7 @@ static int wait_task_zombie(struct wait_ if (unlikely(wo->wo_flags & WNOWAIT)) { int exit_code = p->exit_code; - int why, status; + int why; get_task_struct(p); read_unlock(&tasklist_lock); _ Patches currently in -mm which might be from tfransosi@xxxxxxxxx are linux-next.patch kernel-exitc-fix-shadows-sparse-warning.patch console-vgaconc-mark-file-local-symbol-static.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