The patch titled pr_debug: configfs: use size_t length modifier in pr_debug format argument has been removed from the -mm tree. Its filename is pr_debug-configfs-use-size_t-length-modifier-in-pr_debug-format-argument.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pr_debug: configfs: use size_t length modifier in pr_debug format argument From: Zach Brown <zach.brown@xxxxxxxxxx> configfs: use size_t length modifier in pr_debug format argument Signed-off-by: Zach Brown <zach.brown@xxxxxxxxxx> Acked-by: Joel Becker <joel.becker@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/configfs/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/configfs/file.c~pr_debug-configfs-use-size_t-length-modifier-in-pr_debug-format-argument fs/configfs/file.c --- a/fs/configfs/file.c~pr_debug-configfs-use-size_t-length-modifier-in-pr_debug-format-argument +++ a/fs/configfs/file.c @@ -137,8 +137,8 @@ configfs_read_file(struct file *file, ch if ((retval = fill_read_buffer(file->f_dentry,buffer))) goto out; } - pr_debug("%s: count = %d, ppos = %lld, buf = %s\n", - __FUNCTION__,count,*ppos,buffer->page); + pr_debug("%s: count = %zd, ppos = %lld, buf = %s\n", + __FUNCTION__, count, *ppos, buffer->page); retval = flush_read_buffer(buffer,buf,count,ppos); out: up(&buffer->sem); _ Patches currently in -mm which might be from zach.brown@xxxxxxxxxx are origin.patch dio-centralize-completion-in-dio_complete.patch dio-call-blk_run_address_space-once-per-op.patch dio-formalize-bio-counters-as-a-dio-reference-count.patch dio-remove-duplicate-bio-wait-code.patch dio-only-call-aio_complete-after-returning-eiocbqueued.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