Symbol: DB_VECTOR
arch/x86/include/uapi/asm/svm.h
167
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
arch/x86/kvm/emulate.c
545
return emulate_exception(ctxt, DB_VECTOR, 0, false);
arch/x86/kvm/svm/nested.c
1331
kvm_queue_exception(&(svm->vcpu), DB_VECTOR);
arch/x86/kvm/svm/nested.c
1566
} else if (ex->vector == DB_VECTOR) {
arch/x86/kvm/svm/sev.c
4653
clr_exception_intercept(svm, DB_VECTOR);
arch/x86/kvm/svm/svm.c
1088
set_exception_intercept(svm, DB_VECTOR);
arch/x86/kvm/svm/svm.c
1977
kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
arch/x86/kvm/svm/svm.c
1994
kvm_run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/svm/svm.c
3258
[SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
arch/x86/kvm/vmx/nested.c
4060
} else if (ex->vector == DB_VECTOR) {
arch/x86/kvm/vmx/nested.c
4117
if (!ex->pending || ex->vector != DB_VECTOR)
arch/x86/kvm/vmx/vmcs.h
109
return is_exception_n(intr_info, DB_VECTOR);
arch/x86/kvm/vmx/vmx.c
1909
vcpu->arch.exception.vector == DB_VECTOR) &&
arch/x86/kvm/vmx/vmx.c
1911
vcpu->arch.exception_vmexit.vector == DB_VECTOR)) {
arch/x86/kvm/vmx/vmx.c
5361
case DB_VECTOR:
arch/x86/kvm/vmx/vmx.c
5566
case DB_VECTOR:
arch/x86/kvm/vmx/vmx.c
5600
kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
arch/x86/kvm/vmx/vmx.c
5848
vcpu->run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/vmx/vmx.c
5852
kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
arch/x86/kvm/vmx/vmx.c
932
(1u << DB_VECTOR) | (1u << AC_VECTOR);
arch/x86/kvm/x86.c
10739
if (vcpu->arch.exception.vector == DB_VECTOR) {
arch/x86/kvm/x86.c
12535
kvm_queue_exception(vcpu, DB_VECTOR);
arch/x86/kvm/x86.c
757
if (mask & (1 << DB_VECTOR))
arch/x86/kvm/x86.c
777
case DB_VECTOR:
arch/x86/kvm/x86.c
9235
kvm_run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/x86.c
9239
kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
arch/x86/kvm/x86.c
9317
kvm_run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/x86.c
9332
kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
tools/arch/x86/include/uapi/asm/svm.h
167
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
tools/testing/selftests/kvm/x86/debug_regs.c
129
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
152
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
178
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
196
run->debug.arch.exception == DB_VECTOR &&