[排错] 解决 Linux 创建 VM 时报错 ‘blk_cloned_rq_check_limits’

报错代码:

kernel: blk_cloned_rq_check_limits: over max size limit. (65535 > 0)

分析:

SAN 存储设备需要 ’68 Support Page Reclamation for Linux bit’ 功能开启后才能实现精简配置

解决方法:

在 SAN 存储设备上开启 ’68 Support Page Reclamation for Linux bit’ 功能后执行以下命令:

$ for i in /sys/block/sd*; do echo 1 > $i/device/rescan; done
$ multipath -r
$ multipath -ll

参考文献:

https://access.redhat.com/solutions/5619941