The patch titled dynamic debug: remove pr_fmt() from dynamic_dev_dbg() printk has been removed from the -mm tree. Its filename was dynamic-debug-remove-pr_fmt-from-dynamic_dev_dbg-printk.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: dynamic debug: remove pr_fmt() from dynamic_dev_dbg() printk From: Jason Baron <jbaron@xxxxxxxxxx> When pr_fmt() was added to the pr_debug() code, we added it not only to the dynamic_pr_debug() function, but also to the dynamic_dev_dbg() funciton. However, dev_dbg() doesn't make use of pr_fmt(), so neither should dynamic_dev_dbg(). Signed-off-by: Jason Baron <jbaron@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Greg Banks <gnb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/dynamic_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/dynamic_debug.h~dynamic-debug-remove-pr_fmt-from-dynamic_dev_dbg-printk include/linux/dynamic_debug.h --- a/include/linux/dynamic_debug.h~dynamic-debug-remove-pr_fmt-from-dynamic_dev_dbg-printk +++ a/include/linux/dynamic_debug.h @@ -70,7 +70,7 @@ extern int ddebug_remove_module(char *mo DEBUG_HASH2, __LINE__, _DPRINTK_FLAGS_DEFAULT }; \ if (__dynamic_dbg_enabled(descriptor)) \ dev_printk(KERN_DEBUG, dev, \ - KBUILD_MODNAME ": " pr_fmt(fmt),\ + KBUILD_MODNAME ": " fmt, \ ##__VA_ARGS__); \ } while (0) _ Patches currently in -mm which might be from jbaron@xxxxxxxxxx are 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