Symbol: vcpu_get_msr
tools/testing/selftests/kvm/include/x86/processor.h
1131
uint64_t vcpu_get_msr(struct kvm_vcpu *vcpu, uint64_t msr_index);
tools/testing/selftests/kvm/include/x86/processor.h
1170
r = vcpu_get_msr(vcpu, msr); \
tools/testing/selftests/kvm/x86/feature_msrs_test.c
71
TEST_ASSERT(vcpu_get_msr(vcpu, msr) == reset_value,
tools/testing/selftests/kvm/x86/feature_msrs_test.c
74
vcpu_get_msr(vcpu, msr));
tools/testing/selftests/kvm/x86/feature_msrs_test.c
90
TEST_ASSERT(!vcpu_get_msr(vcpu, msr),
tools/testing/selftests/kvm/x86/feature_msrs_test.c
92
msr, vcpu_get_msr(vcpu, msr));
tools/testing/selftests/kvm/x86/hwcr_msr_test.c
25
actual = vcpu_get_msr(vcpu, MSR_K7_HWCR);
tools/testing/selftests/kvm/x86/hyperv_clock.c
181
tsc_freq = vcpu_get_msr(vcpu, HV_X64_MSR_TSC_FREQUENCY);
tools/testing/selftests/kvm/x86/hyperv_clock.c
186
t1 = vcpu_get_msr(vcpu, HV_X64_MSR_TIME_REF_COUNT);
tools/testing/selftests/kvm/x86/hyperv_clock.c
190
t2 = vcpu_get_msr(vcpu, HV_X64_MSR_TIME_REF_COUNT);
tools/testing/selftests/kvm/x86/msrs_test.c
297
val = vcpu_get_msr(vcpu, msr);
tools/testing/selftests/kvm/x86/msrs_test.c
306
val = vcpu_get_msr(vcpu, msr);
tools/testing/selftests/kvm/x86/nested_set_state_test.c
253
uint64_t old_efer = vcpu_get_msr(vcpu, MSR_EFER);
tools/testing/selftests/kvm/x86/nested_set_state_test.c
260
uint64_t old_efer = vcpu_get_msr(vcpu, MSR_EFER);
tools/testing/selftests/kvm/x86/platform_info_test.c
52
msr_platform_info = vcpu_get_msr(vcpu, MSR_PLATFORM_INFO);
tools/testing/selftests/kvm/x86/tsc_msrs_test.c
133
TEST_ASSERT_EQ(vcpu_get_msr(vcpu, MSR_IA32_TSC_ADJUST), UNITY * 123456);
tools/testing/selftests/kvm/x86/tsc_msrs_test.c
17
#define rounded_host_rdmsr(x) ROUND(vcpu_get_msr(vcpu, x))
tools/testing/selftests/kvm/x86/vmx_msrs_test.c
18
uint64_t val = vcpu_get_msr(vcpu, msr_index);
tools/testing/selftests/kvm/x86/vmx_msrs_test.c
32
uint64_t val = vcpu_get_msr(vcpu, msr_index);
tools/testing/selftests/kvm/x86/vmx_msrs_test.c
78
val = vcpu_get_msr(vcpu, MSR_IA32_FEAT_CTL);
tools/testing/selftests/kvm/x86/vmx_pmu_caps_test.c
104
TEST_ASSERT_EQ(vcpu_get_msr(vcpu, MSR_IA32_PERF_CAPABILITIES),
tools/testing/selftests/kvm/x86/vmx_pmu_caps_test.c
217
val = vcpu_get_msr(vcpu, MSR_IA32_PERF_CAPABILITIES);
tools/testing/selftests/kvm/x86/vmx_pmu_caps_test.c
222
val = vcpu_get_msr(vcpu, MSR_IA32_PERF_CAPABILITIES);
tools/testing/selftests/kvm/x86/xapic_state_test.c
183
apic_base = vcpu_get_msr(vcpus[i], MSR_IA32_APICBASE);
tools/testing/selftests/kvm/x86/xss_msr_test.c
28
xss_val = vcpu_get_msr(vcpu, MSR_IA32_XSS);