The patch titled cciss: fix printk format warning has been added to the -mm tree. Its filename is patch-cciss-fix-printk-format-warning.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cciss: fix printk format warning From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix printk format warnings: drivers/block/cciss.c:2000: warning: long long int format, long unsigned int arg (arg 2) drivers/block/cciss.c:2035: warning: long long int format, long unsigned int arg (arg 2) Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: Mike Miller <mike.miller@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/block/cciss.c~patch-cciss-fix-printk-format-warning drivers/block/cciss.c --- a/drivers/block/cciss.c~patch-cciss-fix-printk-format-warning +++ a/drivers/block/cciss.c @@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol *block_size = BLOCK_SIZE; } if (*total_size != (__u32) 0) - printk(KERN_INFO " blocks= %lld block_size= %d\n", - *total_size, *block_size); + printk(KERN_INFO " blocks= %llu block_size= %d\n", + (unsigned long long)*total_size, *block_size); kfree(buf); return; } @@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int log *total_size = 0; *block_size = BLOCK_SIZE; } - printk(KERN_INFO " blocks= %lld block_size= %d\n", - *total_size, *block_size); + printk(KERN_INFO " blocks= %llu block_size= %d\n", + (unsigned long long)*total_size, *block_size); kfree(buf); return; } _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch ext4-fix-printk-format-warnings.patch md-fix-printk-format-warnings-seen-on-powerpc64.patch acpi-make-ec_transaction-not-extern.patch ioc4-fix-printk-format-warning.patch patch-cciss-fix-printk-format-warning.patch pvrusb2-use-null-instead-of-0.patch git-ieee1394.patch mtd-fix-kernel-doc-warnings.patch com20020-build-fix.patch parisc-fix-module_param-iommu-permission.patch pci-i386-style-cleanups.patch tifm-fix-null-ptr-and-style.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