The patch titled pr_debug: trident: use size_t length modifier in pr_debug format arguments has been removed from the -mm tree. Its filename is pr_debug-trident-use-size_t-length-modifier-in-pr_debug-format-arguments.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pr_debug: trident: use size_t length modifier in pr_debug format arguments From: Zach Brown <zach.brown@xxxxxxxxxx> trident: use size_t length modifier in pr_debug format arguments Signed-off-by: Zach Brown <zach.brown@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/oss/trident.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN sound/oss/trident.c~pr_debug-trident-use-size_t-length-modifier-in-pr_debug-format-arguments sound/oss/trident.c --- a/sound/oss/trident.c~pr_debug-trident-use-size_t-length-modifier-in-pr_debug-format-arguments +++ a/sound/oss/trident.c @@ -1862,7 +1862,7 @@ trident_read(struct file *file, char __u unsigned swptr; int cnt; - pr_debug("trident: trident_read called, count = %d\n", count); + pr_debug("trident: trident_read called, count = %zd\n", count); VALIDATE_STATE(state); @@ -1978,7 +1978,7 @@ trident_write(struct file *file, const c unsigned int copy_count; int lret; /* for lock_set_fmt */ - pr_debug("trident: trident_write called, count = %d\n", count); + pr_debug("trident: trident_write called, count = %zd\n", count); VALIDATE_STATE(state); _ 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