The patch titled Subject: printk: comment pr_cont() stating it is only to continue a line has been removed from the -mm tree. Its filename was printk-comment-pr_cont-stating-it-is-only-to-continue-a-line.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Steven Rostedt <rostedt@xxxxxxxxxxx> Subject: printk: comment pr_cont() stating it is only to continue a line KERN_CONT is nicely commented in kern_levels.h, but pr_cont() is now used more often, and it lacks the comment stating what it is used for. It can be confused as continuing the log level, but that is not its purpose. Its purpose is to continue a line that had no newline enclosed. This should be documented by pr_cont() as well. Signed-off-by: Steven Rostedt <rostedt@xxxxxxxxxxx> Acked-by: Borislav Petkov <bp@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/printk.h | 5 +++++ 1 file changed, 5 insertions(+) diff -puN include/linux/printk.h~printk-comment-pr_cont-stating-it-is-only-to-continue-a-line include/linux/printk.h --- a/include/linux/printk.h~printk-comment-pr_cont-stating-it-is-only-to-continue-a-line +++ a/include/linux/printk.h @@ -255,6 +255,11 @@ extern asmlinkage void dump_stack(void) printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) #define pr_info(fmt, ...) \ printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) +/* + * Like KERN_CONT, pr_cont() should only be used when continuing + * a line with no newline ('\n') enclosed. Otherwise it defaults + * back to KERN_DEFAULT. + */ #define pr_cont(fmt, ...) \ printk(KERN_CONT fmt, ##__VA_ARGS__) _ Patches currently in -mm which might be from rostedt@xxxxxxxxxxx are origin.patch util_macrosh-add-find_closest-macro.patch documentation-update-codingstyle-on-local-variables-naming-in-macros.patch hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest.patch hwmon-lm85-use-find_closest-in-x_to_reg-functions.patch hwmon-w83795-use-find_closest_descending-in-pwm_freq_to_reg.patch linux-next.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