am Di, 09 Okt 2018 11:26:57 +0200 schrieb
sascha...@web.de:
> The oldest CPU in my cluster is ivy-bridge. So I run:
>
> gnt-cluster modify -H kvm:cpu_type='IvyBridge-IBRS\,+pcid\,+ssbd'
there is a simple command (cpu feature "check"), where one can test, whether
the whole cluster supports a certain cpu model/flag:
gnt-cluster command 'qemu-system-x86_64 -cpu Haswell-IBRS,+pcid,+ssbd,check -machine accel=kvm -nodefaults -kernel /dev/null 2>&1 | grep -v "could not load kernel"'
The output will identify my ivy-bridge node an reports, that some cpu
features compared to haswell are missing:
node: ivy.domain.tld
warning: host doesn't support requested feature: CPUID.01H:ECX.fma [bit 12]
warning: host doesn't support requested feature: CPUID.01H:ECX.movbe [bit 22]
warning: host doesn't support requested feature: CPUID.07H:EBX.bmi1 [bit 3]
warning: host doesn't support requested feature: CPUID.07H:EBX.hle [bit 4]
warning: host doesn't support requested feature: CPUID.07H:EBX.avx2 [bit 5]
warning: host doesn't support requested feature: CPUID.07H:EBX.bmi2 [bit 8]
warning: host doesn't support requested feature: CPUID.07H:EBX.invpcid [bit 10]
warning: host doesn't support requested feature: CPUID.07H:EBX.rtm [bit 11]
warning: host doesn't support requested feature: CPUID.80000001H:ECX.abm [bit 5]
Thanks, Sascha.