The patch titled cciss: version change has been added to the -mm tree. Its filename is cciss-version-change.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: version change From: Mike Miller <mike.miller@xxxxxx> Change the cciss version number to 3.6.14 to reflect the following functionality changes added by the rest of the set. They include: Support to fire up on any HP RAID class controller Increase nr_cmds to 512 for most controllers by adding it to the product table PCI subsystem ID fix fix was pulled Disable DMA prefetch for the P600 on IPF platforms Change from 512 to 2048 sector_size for performance Fix in cciss_open for consistency Remove the no longer used revalidate_allvol function Bug fix for busy configuring Support for more than 16 logical volumes Cleanups in cciss_interrupt_mode Fix for iostats, it's been broken for several kernel releases Signed-off-by: Mike Miller <mike.miller@xxxxxx> Acked-by: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN drivers/block/cciss.c~cciss-version-change drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-version-change +++ a/drivers/block/cciss.c @@ -47,14 +47,15 @@ #include <linux/completion.h> #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) -#define DRIVER_NAME "HP CISS Driver (v 3.6.10)" -#define DRIVER_VERSION CCISS_DRIVER_VERSION(3,6,10) +#define DRIVER_NAME "HP CISS Driver (v 3.6.14)" +#define DRIVER_VERSION CCISS_DRIVER_VERSION(3,6,14) /* Embedded module documentation macros - see modules.h */ MODULE_AUTHOR("Hewlett-Packard Company"); -MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 3.6.10"); +MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 3.6.14"); MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400" " SA6i P600 P800 P400 P400i E200 E200i E500"); +MODULE_VERSION("3.6.14"); MODULE_LICENSE("GPL"); #include "cciss_cmd.h" _ Patches currently in -mm which might be from mike.miller@xxxxxx are cciss-version-change.patch cciss-reference-driver-support.patch cciss-increase-number-of-commands-on-controller.patch cciss-fix-pci-ssid-for-the-e500-controller.patch cciss-disable-dma-prefetch-on-p600.patch cciss-set-sector_size-to-2048-for-performance.patch cciss-set-sector_size-to-2048-for-performance-tidy.patch cciss-change-cciss_open-for-consistency.patch cciss-remove-unused-revalidate_allvol-function.patch cciss-add-support-for-1024-logical-volumes.patch cciss-cleanup-cciss_interrupt-mode.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