The patch titled cciss: remove unneeded spaces in output for attached volumes has been added to the -mm tree. Its filename is cciss-remove-unneeded-spaces-in-output-for-attached-volumes-resend.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: remove unneeded spaces in output for attached volumes From: "Metathronius Galabant" <m.galabant@xxxxxxxxxxxxxx> It removes the awkwards spaces after the "=" when displaying the geometry of the attached volumes. Before: cciss: using DAC cycles blocks= 286734240 block_size= 512 heads= 255, sectors= 32, cylinders= 35139 After: cciss: using DAC cycles blocks=286734240 block_size=512 heads=255, sectors=32, cylinders=35139 Signed-off-by: Metathronius Galabant <m.galabant@xxxxxxxxx> Acked-by: Mike Miller <mike.miller@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/block/cciss.c~cciss-remove-unneeded-spaces-in-output-for-attached-volumes-resend drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-remove-unneeded-spaces-in-output-for-attached-volumes-resend +++ a/drivers/block/cciss.c @@ -1936,7 +1936,7 @@ static void cciss_geometry_inquiry(int c } else { /* Get geometry failed */ printk(KERN_WARNING "cciss: reading geometry failed\n"); } - printk(KERN_INFO " heads= %d, sectors= %d, cylinders= %d\n\n", + printk(KERN_INFO " heads=%d, sectors=%d, cylinders=%d\n\n", drv->heads, drv->sectors, drv->cylinders); } @@ -1964,7 +1964,7 @@ cciss_read_capacity(int ctlr, int logvol *total_size = 0; *block_size = BLOCK_SIZE; } - printk(KERN_INFO " blocks= %u block_size= %d\n", + printk(KERN_INFO " blocks=%u block_size=%d\n", *total_size, *block_size); return; } _ Patches currently in -mm which might be from m.galabant@xxxxxxxxxxxxxx are cciss-remove-unneeded-spaces-in-output-for-attached-volumes-resend.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