The patch titled FAT: Fix printk format strings has been added to the -mm tree. Its filename is fat-fix-printk-format-strings.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: FAT: Fix printk format strings From: Vegard Nossum <vegard.nossum@xxxxxxxxx> This makes sure printk format strings contain no more than a single line. Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxx> [the message was tweaked.] Signed-off-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/fat/inode.c | 6 ++---- fs/fat/misc.c | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff -puN fs/fat/inode.c~fat-fix-printk-format-strings fs/fat/inode.c --- a/fs/fat/inode.c~fat-fix-printk-format-strings +++ a/fs/fat/inode.c @@ -1295,10 +1295,8 @@ int fat_fill_super(struct super_block *s fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data; if (!IS_FSINFO(fsinfo)) { - printk(KERN_WARNING - "FAT: Did not find valid FSINFO signature.\n" - " Found signature1 0x%08x signature2 0x%08x" - " (sector = %lu)\n", + printk(KERN_WARNING "FAT: Invalid FSINFO signature: " + "0x%08x, 0x%08x (sector = %lu)\n", le32_to_cpu(fsinfo->signature1), le32_to_cpu(fsinfo->signature2), sbi->fsinfo_sector); diff -puN fs/fat/misc.c~fat-fix-printk-format-strings fs/fat/misc.c --- a/fs/fat/misc.c~fat-fix-printk-format-strings +++ a/fs/fat/misc.c @@ -55,9 +55,8 @@ void fat_clusters_flush(struct super_blo fsinfo = (struct fat_boot_fsinfo *)bh->b_data; /* Sanity check */ if (!IS_FSINFO(fsinfo)) { - printk(KERN_ERR "FAT: Did not find valid FSINFO signature.\n" - " Found signature1 0x%08x signature2 0x%08x" - " (sector = %lu)\n", + printk(KERN_ERR "FAT: Invalid FSINFO signature: " + "0x%08x, 0x%08x (sector = %lu)\n", le32_to_cpu(fsinfo->signature1), le32_to_cpu(fsinfo->signature2), sbi->fsinfo_sector); _ Patches currently in -mm which might be from vegard.nossum@xxxxxxxxx are origin.patch fat-fix-printk-format-strings.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