13,000
回編集
683行目: | 683行目: | ||
<u>cache passthroughの設定は、実際のCPUキャッシュ情報を仮想マシンに渡す。</u><br> | <u>cache passthroughの設定は、実際のCPUキャッシュ情報を仮想マシンに渡す。</u><br> | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
<!-- | <!-- ゲストOSがWindows 10またはSUSEの場合 --> | ||
<cpu mode="host-passthrough" check="none"> | <cpu mode="host-passthrough" check="none"> | ||
<topology sockets="1" cores="4" threads="2"/> | <topology sockets="1" cores="4" threads="2"/> | ||
<cache mode="passthrough"/> | <cache mode="passthrough"/> | ||
<feature policy="require" name="topoext"/> | <feature policy="require" name="topoext"/> | ||
</cpu> | |||
<!-- ゲストOSがWindows 7の場合 --> | |||
<cpu mode="host-passthrough"> | |||
<topology sockets="1" cores="4" threads="2"/> | |||
<cache mode="passthrough"/> | |||
<feature policy='disable' name='hypervisor'/> | |||
</cpu> | </cpu> | ||
</syntaxhighlight> | </syntaxhighlight> |