The patch titled Subject: kernel/smp.c: define pr_fmt() for smp.c has been added to the -mm tree. Its filename is kernel-smp-define-pr_fmt-for-smpc.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kernel-smp-define-pr_fmt-for-smpc.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kernel-smp-define-pr_fmt-for-smpc.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: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Subject: kernel/smp.c: define pr_fmt() for smp.c This makes all our pr_xxx()'s start with "smp: ", which helps pin down where they come from and generally looks nice. There is actually only one pr_xxx() use in smp.c at the moment, but we will add some more in the next commit. Link: http://lkml.kernel.org/r/1477460275-8266-1-git-send-email-mpe@xxxxxxxxxxxxxx Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Suggested-by: Borislav Petkov <bp@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: H. Peter Anvin <hpa@xxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Cc: Juergen Gross <jgross@xxxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Richard Weinberger <richard@xxxxxx> Cc: Len Brown <len.brown@xxxxxxxxx> Cc: Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx> Cc: Tim Chen <tim.c.chen@xxxxxxxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxxxxxxxxxx> Cc: Jiri Olsa <jolsa@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/smp.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN kernel/smp.c~kernel-smp-define-pr_fmt-for-smpc kernel/smp.c --- a/kernel/smp.c~kernel-smp-define-pr_fmt-for-smpc +++ a/kernel/smp.c @@ -3,6 +3,9 @@ * * (C) Jens Axboe <jens.axboe@xxxxxxxxxx> 2008 */ + +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include <linux/irq_work.h> #include <linux/rcupdate.h> #include <linux/rculist.h> _ Patches currently in -mm which might be from mpe@xxxxxxxxxxxxxx are kernel-smp-define-pr_fmt-for-smpc.patch kernel-smp-make-the-smp-boot-message-common-on-all-arches.patch kernel-smp-tell-the-user-were-bringing-up-secondary-cpus.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