The patch titled idr: fix a printk call has been removed from the -mm tree. Its filename was idr-fix-a-printk-call.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: idr: fix a printk call From: Nadia Derbey <Nadia.Derbey@xxxxxxxx> Fix the incomplete printk call. Signed-off-by: Nadia Derbey <Nadia.Derbey@xxxxxxxx> Reviewed-by: "Paul E. McKenney" <paulmck@xxxxxxxxxx> Cc: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx> Cc: Jim Houston <jim.houston@xxxxxxxxxxx> Cc: Pierre Peiffer <peifferp@xxxxxxxxx> Acked-by: Rik van Riel <riel@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/idr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN lib/idr.c~idr-fix-a-printk-call lib/idr.c --- a/lib/idr.c~idr-fix-a-printk-call +++ a/lib/idr.c @@ -326,7 +326,8 @@ EXPORT_SYMBOL(idr_get_new); static void idr_remove_warning(int id) { - printk("idr_remove called for id=%d which is not allocated.\n", id); + printk(KERN_WARNING + "idr_remove called for id=%d which is not allocated.\n", id); dump_stack(); } _ Patches currently in -mm which might be from Nadia.Derbey@xxxxxxxx are origin.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