The patch titled Subject: kernel/range.c: subtract_range: fix the broken phrase issued by printk has been added to the -mm tree. Its filename is kernel-rangec-subtract_range-fix-the-broken-phrase-issued-by-printk.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: Lin Feng <linfeng@xxxxxxxxxxxxxx> Subject: kernel/range.c: subtract_range: fix the broken phrase issued by printk Also replace deprecated printk(KERN_ERR...) with pr_err() as suggested by Yinghai, attaching the function name to provide plenty info. Signed-off-by: Lin Feng <linfeng@xxxxxxxxxxxxxx> Cc: Yinghai Lu <yinghai@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/range.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/range.c~kernel-rangec-subtract_range-fix-the-broken-phrase-issued-by-printk kernel/range.c --- a/kernel/range.c~kernel-rangec-subtract_range-fix-the-broken-phrase-issued-by-printk +++ a/kernel/range.c @@ -97,7 +97,8 @@ void subtract_range(struct range *range, range[i].end = range[j].end; range[i].start = end; } else { - printk(KERN_ERR "run of slot in ranges\n"); + pr_err("%s: run out of slot in ranges\n", + __func__); } range[j].end = start; continue; _ Patches currently in -mm which might be from linfeng@xxxxxxxxxxxxxx are include-linux-mmzoneh-cleanups.patch include-linux-mmzoneh-cleanups-fix.patch kernel-rangec-subtract_range-fix-the-broken-phrase-issued-by-printk.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