Hello, Actually the newer driver version 3.4.8 has been merged. To check how the driver works you need server with the RAID. (It has been checked on HP DL 360 Gen 9 using a customer server). To check just a driver version you should deploy Fuel, but not installed Ubuntu or CentOS. Than login to the node in bootstrap mode and check the driver by the command modinfo /hpsa.ko You should see the driver version and kernel version for which it was compiled. The alternative way is unpack initramfs and type the command modinfo hpsa.ko To extract initramfs you should 1. Mount ISO sudo mkdir /mnt/iso sudo mount -o loop -t iso9660 -r .iso /mnt/iso 2. Copy initramfs to /tmp/initramfs sudo mkdir /tmp/initramfs cp /mnt/iso/bootstrap/initramfs.img /tmp/initramfs/ 3. Unpack the initramfs cd /tmp/initramfs mv initramfs.img initramfs.img.gz gunzip initramfs.img.gz mkdir initramfs-new cd initramfs-new/ cpio -i < ../initramfs.img 3. You will have unpacked image initramfs in the initramfs-new directory. Check driver version by the command modinfo lib/modules/3.10.55-1.mira4.x86_64/kernel/drivers/scsi/hpsa.ko You will get something like filename: /tmp/initramfs/initramfs-new/lib/modules/3.10.55-1.mira4.x86_64/kernel/drivers/scsi/hpsa.ko license: GPL version: 3.4.8-140 description: Driver for HP Smart Array Controller version 3.4.8-140 (d16/s100) author: Hewlett-Packard Company srcversion: 4FDFEB1A6E7951CA6386DB9 ... intree: Y vermagic: 3.10.55-1.mira4.x86_64 SMP mod_unload modversions parm: hpsa_allow_any:Allow hpsa driver to access unknown HP Smart Array hardware (int) parm: hpsa_simple_mode:Use 'simple mode' rather than 'performant mode' (int) parm: reply_queues:Specify desired number of reply queues. 1-16, default is 4, not to exceed number of online CPUs. (int) 4. Don't forget unmount the iso and clean-up the folders, files. With Best Regards, Albert Albert Syriy, Software Engineer, Mirantis On Fri, May 15, 2015 at 12:07 PM, Kyrylo Romanenko