Skip to content

Commit

Permalink
kvm: i386: require KVM_CAP_DEBUGREGS
Browse files Browse the repository at this point in the history
This was introduced in KVM in Linux 2.6.35, we can require it unconditionally.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Oct 25, 2023
1 parent 4b29916 commit f57a4dd
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 19 deletions.
9 changes: 0 additions & 9 deletions accel/kvm/kvm-all.c
Original file line number Diff line number Diff line change
Expand Up @@ -2528,10 +2528,6 @@ static int kvm_init(MachineState *ms)
s->robust_singlestep =
kvm_check_extension(s, KVM_CAP_X86_ROBUST_SINGLESTEP);

#ifdef KVM_CAP_DEBUGREGS
s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
#endif

s->max_nested_state_len = kvm_check_extension(s, KVM_CAP_NESTED_STATE);

s->irq_set_ioctl = KVM_IRQ_LINE;
Expand Down Expand Up @@ -3152,11 +3148,6 @@ int kvm_has_robust_singlestep(void)
return kvm_state->robust_singlestep;
}

int kvm_has_debugregs(void)
{
return kvm_state->debugregs;
}

int kvm_max_nested_state_length(void)
{
return kvm_state->max_nested_state_len;
Expand Down
1 change: 0 additions & 1 deletion include/sysemu/kvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ unsigned int kvm_get_free_memslots(void);
bool kvm_has_sync_mmu(void);
int kvm_has_vcpu_events(void);
int kvm_has_robust_singlestep(void);
int kvm_has_debugregs(void);
int kvm_max_nested_state_length(void);
int kvm_has_gsi_routing(void);

Expand Down
1 change: 0 additions & 1 deletion include/sysemu/kvm_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ struct KVMState
bool coalesced_flush_in_progress;
int vcpu_events;
int robust_singlestep;
int debugregs;
#ifdef KVM_CAP_SET_GUEST_DEBUG
QTAILQ_HEAD(, kvm_sw_breakpoint) kvm_sw_breakpoints;
#endif
Expand Down
9 changes: 1 addition & 8 deletions target/i386/kvm/kvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ const KVMCapabilityInfo kvm_arch_required_capabilities[] = {
KVM_CAP_INFO(MP_STATE),
KVM_CAP_INFO(SIGNAL_MSI),
KVM_CAP_INFO(IRQ_ROUTING),
KVM_CAP_INFO(DEBUGREGS),
KVM_CAP_LAST_INFO
};

Expand Down Expand Up @@ -4601,10 +4602,6 @@ static int kvm_put_debugregs(X86CPU *cpu)
struct kvm_debugregs dbgregs;
int i;

if (!kvm_has_debugregs()) {
return 0;
}

memset(&dbgregs, 0, sizeof(dbgregs));
for (i = 0; i < 4; i++) {
dbgregs.db[i] = env->dr[i];
Expand All @@ -4622,10 +4619,6 @@ static int kvm_get_debugregs(X86CPU *cpu)
struct kvm_debugregs dbgregs;
int i, ret;

if (!kvm_has_debugregs()) {
return 0;
}

ret = kvm_vcpu_ioctl(CPU(cpu), KVM_GET_DEBUGREGS, &dbgregs);
if (ret < 0) {
return ret;
Expand Down

0 comments on commit f57a4dd

Please sign in to comment.