How to avoid "Assuming drive cache: write through" message during restart?

What does the message: asking for cache data failed, assuming drive cache: write through mean?

The Linux block layer makes some assumptions about when writes are actually committed to disk. LSI RAID controller logical drives pretend to be SCSI disks, but the firmware and driver doesn't report whether the controller is in "write-through" mode or "write-back" mode. Without this information, the block layer assumes "write-through". This is safe, because the controller has a battery-backed cache.

LSI's engineers know that their driver should handle this better so you don't see this message. But it's not an error, and it doesn't affect the system.


Stumbled onto a flint-axe type fix -- since this occurs before and after login, started looking for mechanisms that could do that, and thought it might be sent to stdio by dmesg.

Using sudo dmesg -n 1 turned off the messages. It may be possible to automate that in grub. But seems like treating the symptom, not the disease.