Symbol: X86_CR0_TS
arch/x86/boot/cpuflags.c
20
if (cr0 & (X86_CR0_EM|X86_CR0_TS)) {
arch/x86/boot/cpuflags.c
21
cr0 &= ~(X86_CR0_EM|X86_CR0_TS);
arch/x86/include/asm/kvm_host.h
134
(~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
arch/x86/include/asm/svm.h
656
#define SVM_CR0_SELECTIVE_MASK (X86_CR0_TS | X86_CR0_MP)
arch/x86/kernel/fpu/init.c
33
cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
arch/x86/kernel/fpu/init.c
67
cr0 &= ~(X86_CR0_TS | X86_CR0_EM);
arch/x86/kernel/traps.c
1566
if (WARN(cr0 & X86_CR0_TS, "CR0.TS was set")) {
arch/x86/kernel/traps.c
1568
write_cr0(cr0 & ~X86_CR0_TS);
arch/x86/kvm/emulate.c
1040
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
1053
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
1069
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
2959
ops->set_cr(ctxt, 0, ops->get_cr(ctxt, 0) | X86_CR0_TS);
arch/x86/kvm/emulate.c
3414
cr0 &= ~X86_CR0_TS;
arch/x86/kvm/emulate.c
3659
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
5311
if ((ctxt->d & (Avx|Sse|Mmx)) && (ops->get_cr(ctxt, 0) & X86_CR0_TS)) {
arch/x86/kvm/kvm_cache_regs.h
7
#define KVM_POSSIBLE_CR0_GUEST_BITS (X86_CR0_TS | X86_CR0_WP)
arch/x86/kvm/smm.c
323
cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
arch/x86/kvm/vmx/nested.c
6359
if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
arch/x86/kvm/vmx/nested.c
6360
(vmcs12->cr0_read_shadow & X86_CR0_TS))
arch/x86/kvm/vmx/vmx.c
4520
WARN_ON(cr0 & X86_CR0_TS);
arch/x86/kvm/vmx/vmx.c
5433
!kvm_is_cr0_bit_set(vcpu, X86_CR0_TS);
arch/x86/xen/enlighten_pv.c
1076
MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
tools/testing/selftests/kvm/include/x86/svm.h
317
#define SVM_CR0_SELECTIVE_MASK (X86_CR0_TS | X86_CR0_MP)
tools/testing/selftests/kvm/x86/amx_test.c
213
GUEST_ASSERT(!(get_cr0() & X86_CR0_TS));