Symbol: DB_VECTOR
arch/x86/include/uapi/asm/svm.h
167
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
arch/x86/kvm/emulate.c
546
return emulate_exception(ctxt, DB_VECTOR, 0, false);
arch/x86/kvm/svm/nested.c
1463
kvm_queue_exception(&(svm->vcpu), DB_VECTOR);
arch/x86/kvm/svm/nested.c
1705
} else if (ex->vector == DB_VECTOR) {
arch/x86/kvm/svm/nested.c
367
case DE_VECTOR: case DB_VECTOR: case BP_VECTOR: case OF_VECTOR:
arch/x86/kvm/svm/sev.c
4742
clr_exception_intercept(svm, DB_VECTOR);
arch/x86/kvm/svm/svm.c
1147
set_exception_intercept(svm, DB_VECTOR);
arch/x86/kvm/svm/svm.c
2049
kvm_queue_exception_p(vcpu, DB_VECTOR, payload);
arch/x86/kvm/svm/svm.c
2066
kvm_run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/svm/svm.c
3363
[SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
arch/x86/kvm/vmx/nested.c
4075
} else if (ex->vector == DB_VECTOR) {
arch/x86/kvm/vmx/nested.c
4132
if (!ex->pending || ex->vector != DB_VECTOR)
arch/x86/kvm/vmx/vmcs.h
98
return is_exception_n(intr_info, DB_VECTOR);
arch/x86/kvm/vmx/vmx.c
1880
vcpu->arch.exception.vector == DB_VECTOR) &&
arch/x86/kvm/vmx/vmx.c
1882
vcpu->arch.exception_vmexit.vector == DB_VECTOR)) {
arch/x86/kvm/vmx/vmx.c
1927
if (ex->vector == DB_VECTOR &&
arch/x86/kvm/vmx/vmx.c
5293
case DB_VECTOR:
arch/x86/kvm/vmx/vmx.c
5498
case DB_VECTOR:
arch/x86/kvm/vmx/vmx.c
5515
kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
arch/x86/kvm/vmx/vmx.c
5763
vcpu->run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/vmx/vmx.c
5767
kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
arch/x86/kvm/vmx/vmx.c
903
(1u << DB_VECTOR) | (1u << AC_VECTOR);
arch/x86/kvm/x86.c
10731
if (vcpu->arch.exception.vector == DB_VECTOR &&
arch/x86/kvm/x86.c
12572
kvm_queue_exception(vcpu, DB_VECTOR);
arch/x86/kvm/x86.c
746
if (mask & (1 << DB_VECTOR))
arch/x86/kvm/x86.c
766
case DB_VECTOR:
arch/x86/kvm/x86.c
8983
kvm_run->debug.arch.exception = DB_VECTOR;
arch/x86/kvm/x86.c
8988
kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
arch/x86/kvm/x86.c
8996
if (ex->vector == DB_VECTOR)
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
192
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
215
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
241
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
259
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
274
run->debug.arch.exception == DB_VECTOR &&
tools/testing/selftests/kvm/x86/debug_regs.c
288
vm_install_exception_handler(vm, DB_VECTOR, guest_db_handler);