Searched refs:timer_index (Results 1 – 3 of 3) sorted by relevance
/arch/x86/kvm/ |
D | trace.h | 1175 TP_PROTO(int vcpu_id, int timer_index, u64 config, bool host), 1176 TP_ARGS(vcpu_id, timer_index, config, host), 1180 __field(int, timer_index) 1187 __entry->timer_index = timer_index; 1193 __entry->vcpu_id, __entry->timer_index, __entry->config, 1201 TP_PROTO(int vcpu_id, int timer_index, u64 count, bool host), 1202 TP_ARGS(vcpu_id, timer_index, count, host), 1206 __field(int, timer_index) 1213 __entry->timer_index = timer_index; 1219 __entry->vcpu_id, __entry->timer_index, __entry->count, [all …]
|
D | hyperv.h | 107 int timer_index) in to_hv_stimer() argument 109 return &to_hv_vcpu(vcpu)->stimer[timer_index]; in to_hv_stimer()
|
D | hyperv.c | 918 payload->timer_index = stimer->index; in stimer_prepare_msg() 923 static void stimer_init(struct kvm_vcpu_hv_stimer *stimer, int timer_index) in stimer_init() argument 926 stimer->index = timer_index; in stimer_init() 1529 int timer_index = (msr - HV_X64_MSR_STIMER0_CONFIG)/2; in kvm_hv_set_msr() local 1531 return stimer_set_config(to_hv_stimer(vcpu, timer_index), in kvm_hv_set_msr() 1538 int timer_index = (msr - HV_X64_MSR_STIMER0_COUNT)/2; in kvm_hv_set_msr() local 1540 return stimer_set_count(to_hv_stimer(vcpu, timer_index), in kvm_hv_set_msr() 1647 int timer_index = (msr - HV_X64_MSR_STIMER0_CONFIG)/2; in kvm_hv_get_msr() local 1649 return stimer_get_config(to_hv_stimer(vcpu, timer_index), in kvm_hv_get_msr() 1656 int timer_index = (msr - HV_X64_MSR_STIMER0_COUNT)/2; in kvm_hv_get_msr() local [all …]
|