The patch titled ROMFS: printk format warnings has been added to the -mm tree. Its filename is romfs-printk-format-warnings.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ROMFS: printk format warnings From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Field width and precision must be of type int. fs/romfs/super.c:513: warning: field width should have type 'int', but argument 2 has type 'size_t' fs/romfs/super.c:513: warning: field precision should have type 'int', but argument 3 has type 'size_t' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/romfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/romfs/super.c~romfs-printk-format-warnings fs/romfs/super.c --- a/fs/romfs/super.c~romfs-printk-format-warnings +++ a/fs/romfs/super.c @@ -510,7 +510,7 @@ static int romfs_fill_super(struct super len = strnlen(rsb->name, ROMFS_MAXFN); if (!silent) printk("ROMFS: Mounting image '%*.*s' through %s\n", - len, len, rsb->name, storage); + (int)len, (int)len, rsb->name, storage); kfree(rsb); rsb = NULL; _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are git-acpi.patch git-alsa.patch git-mtd.patch romfs-printk-format-warnings.patch add-pci_try_set_mwi.patch git-scsi-misc.patch git-unionfs.patch git-ipwireless_cs.patch mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch doc-kernel-parameters-use-x86-32-tag-instead-of-ia-32.patch add-argv_split-fix.patch add-common-orderly_poweroff-fix.patch kconfig-no-strange-misc-devices.patch afs-drop-explicit-extern.patch add-printktime-option-deprecate-time.patch fs-clarify-dummy-member-in-struct.patch sony-laptop-use-null-for-pointer.patch hugetlbfs-use-lib-parser-fix-docs.patch report-that-kernel-is-tainted-if-there-were-an-oops-before.patch doc-oops-tracing-add-code-decode-info.patch kernel-doc-add-tools-doc-in-makefile.patch kernel-doc-fix-unnamed-struct-union-warning.patch kernel-doc-strip-c99-comments.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch profile-likely-unlikely-macros.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