The patch titled Subject: init: check printed flag to skip printing message has been added to the -mm tree. Its filename is init-check-printed-flag-to-skip-printing-message.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: Diwakar Tundlam <dtundlam@xxxxxxxxxx> Subject: init: check printed flag to skip printing message Otherwise the 'Calibration skipped' message gets printed everytime a CPU is hotplugged in, cluttering console for systems that frequently hotplug CPUs. Signed-off-by: Diwakar Tundlam <dtundlam@xxxxxxxxxx> Cc: Phil Carmody <ext-phil.2.carmody@xxxxxxxxx> Cc: Russell King <rmk+kernel@xxxxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Sameer Nanda <snanda@xxxxxxxxxxxx> Cc: Peter De Schrijver <pdeschrijver@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- init/calibrate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN init/calibrate.c~init-check-printed-flag-to-skip-printing-message init/calibrate.c --- a/init/calibrate.c~init-check-printed-flag-to-skip-printing-message +++ a/init/calibrate.c @@ -267,7 +267,8 @@ void __cpuinit calibrate_delay(void) if (per_cpu(cpu_loops_per_jiffy, this_cpu)) { lpj = per_cpu(cpu_loops_per_jiffy, this_cpu); - pr_info("Calibrating delay loop (skipped) " + if (!printed) + pr_info("Calibrating delay loop (skipped) " "already calibrated this CPU"); } else if (preset_lpj) { lpj = preset_lpj; _ Subject: Subject: init: check printed flag to skip printing message Patches currently in -mm which might be from dtundlam@xxxxxxxxxx are linux-next.patch init-check-printed-flag-to-skip-printing-message.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