これからWindows Server 2008 R2を構築する方は少ないと思いますが、
Windows Server 2008 R2でMPIOを構成する場合に特に適用すべき修正プログラムは以下です。
(2016年3月時点)

Windows Server 2008 R2 sp1 では、MPIO パスのフェイル オーバー中に I/O エラー
https://support.microsoft.com/ja-jp/kb/3070714


他にももちろん適用するべき修正プログラムはあると思いますが、
MPIOが正しく働かない場合に問題となるのは大抵以下の2つのドライバです。

・Mpio.sys
・Msdsm.sys

その為、上記2つのドライバを最新にしておけば、
パスが切り替わらない、障害を検知しないなどの既知のバグは解消できるはずです。

バージョンで言うと以下のバージョンが2016年3月時点では最新でした。
Mpio.sys (6.1.7601.23103)
Msdsm.sys (6.1.7601.23103)

※iSCSI構成の場合には別途、iSCSI関連のドライバを最新にする必要があります。
Windows freezes or loses cluster disk reservation during a stress test in iSCSI initiator
https://support.microsoft.com/ja-jp/kb/2957560
Msiscsi.sys (6.1.7601.22647)



Powershellでドライバのバージョンを確認したい場合は次のコマンドで確認可能です。

(Get-ItemProperty C:\Windows\System32\drivers\mpio.sys).VersionInfo | Format-Table FilePrivatePart -Force

(Get-ItemProperty C:\Windows\System32\drivers\msdsm.sys).VersionInfo | Format-Table FilePrivatePart -Force

(Get-ItemProperty C:\Windows\System32\drivers\msiscsi.sys).VersionInfo | Format-Table FilePrivatePart -Force


Windows Server 2012 R2でMPIOを構成する場合に適用すべき修正プログラム
http://tricra.doorblog.jp/archives/63186649.html