We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85427c6 commit 52b2310Copy full SHA for 52b2310
hw/i386/kvmvapic.c
@@ -461,6 +461,10 @@ static void patch_instruction(VAPICROMState *s, X86CPU *cpu, target_ulong ip)
461
void vapic_report_tpr_access(DeviceState *dev, CPUState *cs, target_ulong ip,
462
TPRAccess access)
463
{
464
+ if (kvm_dbt_enabled()) {
465
+ return;
466
+ }
467
+
468
VAPICROMState *s = VAPIC(dev);
469
X86CPU *cpu = X86_CPU(cs);
470
CPUX86State *env = &cpu->env;
@@ -641,6 +645,10 @@ static int vapic_prepare(VAPICROMState *s)
641
645
static void vapic_write(void *opaque, hwaddr addr, uint64_t data,
642
646
unsigned int size)
643
647
648
649
650
651
644
652
VAPICROMState *s = opaque;
653
X86CPU *cpu;
654
CPUX86State *env;
0 commit comments