The patch titled ftape: fix printk format warnings has been removed from the -mm tree. Its filename was ftape-fix-printk-format-warnings.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ftape: fix printk format warnings From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix printk format warnings: drivers/char/ftape/zftape/zftape-buffers.c:87: warning: format '%d' expects type 'int', but argument 3 has type 'size_t' drivers/char/ftape/zftape/zftape-buffers.c:104: warning: format '%d' expects type 'int', but argument 3 has type 'size_t' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/ftape/zftape/zftape-buffers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/char/ftape/zftape/zftape-buffers.c~ftape-fix-printk-format-warnings drivers/char/ftape/zftape/zftape-buffers.c --- a/drivers/char/ftape/zftape/zftape-buffers.c~ftape-fix-printk-format-warnings +++ a/drivers/char/ftape/zftape/zftape-buffers.c @@ -85,7 +85,7 @@ int zft_vmalloc_once(void *new, size_t s peak_memory = used_memory; } TRACE_ABORT(0, ft_t_noise, - "allocated buffer @ %p, %d bytes", *(void **)new, size); + "allocated buffer @ %p, %zd bytes", *(void **)new, size); } int zft_vmalloc_always(void *new, size_t size) { @@ -101,7 +101,7 @@ void zft_vfree(void *old, size_t size) if (*(void **)old) { vfree(*(void **)old); used_memory -= size; - TRACE(ft_t_noise, "released buffer @ %p, %d bytes", + TRACE(ft_t_noise, "released buffer @ %p, %zd bytes", *(void **)old, size); *(void **)old = NULL; } _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch git-acpi.patch cpufreq-select-consistently-re-2619-rc5-mm1.patch git-ieee1394.patch git-infiniband.patch mtd-fix-printk-format-warning.patch git-ocfs2.patch parisc-fix-module_param-iommu-permission.patch fuse-fix-compile-without-config_block.patch tifm-fix-null-ptr-and-style.patch kconfig-printk_time-depends-on-printk.patch visws-sgivwfb-is-module-needs-exports.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.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