Symbol: get_msr
arch/x86/include/asm/kvm-x86-ops.h
33
KVM_X86_OP(get_msr)
arch/x86/include/asm/kvm-x86-pmu-ops.h
18
KVM_X86_PMU_OP(get_msr)
arch/x86/include/asm/kvm_host.h
1766
int (*get_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr);
arch/x86/kvm/emulate.c
1452
ctxt->ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/emulate.c
1498
if (ctxt->ops->get_msr(ctxt, MSR_EFER, &efer))
arch/x86/kvm/emulate.c
1505
if (ctxt->ops->get_msr(ctxt, MSR_IA32_X_CET, &cet))
arch/x86/kvm/emulate.c
1511
if (ctxt->ops->get_msr(ctxt, MSR_KVM_INTERNAL_GUEST_SSP, &ssp))
arch/x86/kvm/emulate.c
1657
ctxt->ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/emulate.c
2363
ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/emulate.c
2368
ops->get_msr(ctxt, MSR_STAR, &msr_data);
arch/x86/kvm/emulate.c
2385
ops->get_msr(ctxt,
arch/x86/kvm/emulate.c
2390
ops->get_msr(ctxt, MSR_SYSCALL_MASK, &msr_data);
arch/x86/kvm/emulate.c
2396
ops->get_msr(ctxt, MSR_STAR, &msr_data);
arch/x86/kvm/emulate.c
2414
ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/emulate.c
2431
ops->get_msr(ctxt, MSR_IA32_SYSENTER_CS, &msr_data);
arch/x86/kvm/emulate.c
2447
ops->get_msr(ctxt, MSR_IA32_SYSENTER_EIP, &msr_data);
arch/x86/kvm/emulate.c
2450
ops->get_msr(ctxt, MSR_IA32_SYSENTER_ESP, &msr_data);
arch/x86/kvm/emulate.c
2484
ops->get_msr(ctxt, MSR_IA32_SYSENTER_CS, &msr_data);
arch/x86/kvm/emulate.c
3189
ctxt->ops->get_msr(ctxt, MSR_TSC_AUX, &tsc_aux);
arch/x86/kvm/emulate.c
3198
ctxt->ops->get_msr(ctxt, MSR_IA32_TSC, &tsc);
arch/x86/kvm/emulate.c
3585
ctxt->ops->get_msr(ctxt, MSR_MISC_FEATURES_ENABLES, &msr);
arch/x86/kvm/emulate.c
3865
ctxt->ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/emulate.c
5103
if ((u_cet && ctxt->ops->get_msr(ctxt, MSR_IA32_U_CET, &u_cet)) ||
arch/x86/kvm/emulate.c
5104
(s_cet && ctxt->ops->get_msr(ctxt, MSR_IA32_S_CET, &s_cet)))
arch/x86/kvm/emulate.c
738
ctxt->ops->get_msr(ctxt, MSR_EFER, &efer);
arch/x86/kvm/kvm_emulate.h
218
int (*get_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 *pdata);
arch/x86/kvm/pmu.c
840
return kvm_pmu_call(get_msr)(vcpu, msr_info);
arch/x86/kvm/pmu.h
32
int (*get_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr_info);
arch/x86/kvm/svm/pmu.c
268
.get_msr = amd_pmu_get_msr,
arch/x86/kvm/svm/svm.c
5156
.get_msr = svm_get_msr,
arch/x86/kvm/vmx/main.c
899
.get_msr = vt_op(get_msr),
arch/x86/kvm/vmx/pmu_intel.c
828
.get_msr = intel_pmu_get_msr,
arch/x86/kvm/x86.c
2002
ret = kvm_x86_call(get_msr)(vcpu, &msr);
arch/x86/kvm/x86.c
8920
.get_msr = emulator_get_msr,
tools/power/x86/turbostat/turbostat.c
4482
if (get_msr(cpu, mp->msr_num, counterp))
tools/power/x86/turbostat/turbostat.c
4548
get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr);
tools/power/x86/turbostat/turbostat.c
4851
if (get_msr(cpu, rci->msr[i], &rci->data[i]))
tools/power/x86/turbostat/turbostat.c
4982
if (get_msr(cpu, cci->msr[i], &cci->data[i]))
tools/power/x86/turbostat/turbostat.c
5081
if (get_msr(cpu, mci->msr[i], &mci->data[i]))
tools/power/x86/turbostat/turbostat.c
5247
if (get_msr(cpu, MSR_MODULE_C6_RES_MS, &c->mc6_us))
tools/power/x86/turbostat/turbostat.c
5251
if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
tools/power/x86/turbostat/turbostat.c
5275
if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
tools/power/x86/turbostat/turbostat.c
5279
if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
tools/power/x86/turbostat/turbostat.c
5283
if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
tools/power/x86/turbostat/turbostat.c
5287
if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
tools/power/x86/turbostat/turbostat.c
5303
if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
tools/power/x86/turbostat/turbostat.c
5436
get_msr(master_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
tools/power/x86/turbostat/turbostat.c
5448
get_msr(master_cpu, MSR_PLATFORM_INFO, &msr);
tools/power/x86/turbostat/turbostat.c
5466
get_msr(master_cpu, MSR_IA32_POWER_CTL, &msr);
tools/power/x86/turbostat/turbostat.c
5481
get_msr(master_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
tools/power/x86/turbostat/turbostat.c
5500
get_msr(master_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
tools/power/x86/turbostat/turbostat.c
5543
get_msr(master_cpu, trl_msr_offset, &msr);
tools/power/x86/turbostat/turbostat.c
5547
get_msr(master_cpu, MSR_TURBO_RATIO_LIMIT1, &core_counts);
tools/power/x86/turbostat/turbostat.c
5570
get_msr(master_cpu, MSR_ATOM_CORE_RATIOS, &msr);
tools/power/x86/turbostat/turbostat.c
5585
get_msr(master_cpu, MSR_ATOM_CORE_TURBO_RATIOS, &msr);
tools/power/x86/turbostat/turbostat.c
5615
get_msr(master_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
tools/power/x86/turbostat/turbostat.c
5667
get_msr(master_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
tools/power/x86/turbostat/turbostat.c
5692
get_msr(master_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
tools/power/x86/turbostat/turbostat.c
5696
get_msr(master_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
tools/power/x86/turbostat/turbostat.c
570
int get_msr(int cpu, off_t offset, unsigned long long *msr);
tools/power/x86/turbostat/turbostat.c
5706
get_msr(master_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
tools/power/x86/turbostat/turbostat.c
5716
get_msr(master_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
tools/power/x86/turbostat/turbostat.c
5723
get_msr(master_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
tools/power/x86/turbostat/turbostat.c
5740
get_msr(master_cpu, MSR_PKGC3_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
5746
get_msr(master_cpu, MSR_PKGC6_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
5752
get_msr(master_cpu, MSR_PKGC7_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
5758
get_msr(master_cpu, MSR_PKGC8_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
5764
get_msr(master_cpu, MSR_PKGC9_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
5770
get_msr(master_cpu, MSR_PKGC10_IRTL, &msr);
tools/power/x86/turbostat/turbostat.c
629
if (get_msr(master_cpu, MSR_FSB_FREQ, &msr))
tools/power/x86/turbostat/turbostat.c
6711
ret = get_msr(cpu, offset, &msr_cur);
tools/power/x86/turbostat/turbostat.c
6743
ret = get_msr(cpu, offset, &msr_cur);
tools/power/x86/turbostat/turbostat.c
7054
get_msr(master_cpu, MSR_PLATFORM_INFO, &msr);
tools/power/x86/turbostat/turbostat.c
7557
if (get_msr(cpu, MSR_PM_ENABLE, &msr))
tools/power/x86/turbostat/turbostat.c
7566
if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
tools/power/x86/turbostat/turbostat.c
7575
if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
tools/power/x86/turbostat/turbostat.c
7587
if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
tools/power/x86/turbostat/turbostat.c
7598
if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
tools/power/x86/turbostat/turbostat.c
7604
if (get_msr(cpu, MSR_HWP_STATUS, &msr))
tools/power/x86/turbostat/turbostat.c
7639
get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
tools/power/x86/turbostat/turbostat.c
7670
get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
tools/power/x86/turbostat/turbostat.c
7688
get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
tools/power/x86/turbostat/turbostat.c
7720
if (!get_msr(master_cpu, MSR_PKG_POWER_INFO, &msr))
tools/power/x86/turbostat/turbostat.c
7759
if (get_msr(master_cpu, MSR_RAPL_POWER_UNIT, &msr))
tools/power/x86/turbostat/turbostat.c
7807
if (get_msr(master_cpu, MSR_RAPL_PWR_UNIT, &msr))
tools/power/x86/turbostat/turbostat.c
8008
if (get_msr(cpu, MSR_RAPL_PWR_UNIT, &msr))
tools/power/x86/turbostat/turbostat.c
8012
if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
tools/power/x86/turbostat/turbostat.c
8020
if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
tools/power/x86/turbostat/turbostat.c
8032
if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
tools/power/x86/turbostat/turbostat.c
8044
if (get_msr(cpu, MSR_VR_CURRENT_CONFIG, &msr))
tools/power/x86/turbostat/turbostat.c
8052
if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
tools/power/x86/turbostat/turbostat.c
8062
if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
tools/power/x86/turbostat/turbostat.c
8069
if (get_msr(cpu, MSR_PP0_POLICY, &msr))
tools/power/x86/turbostat/turbostat.c
8075
if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
tools/power/x86/turbostat/turbostat.c
8081
if (get_msr(cpu, MSR_PP1_POLICY, &msr))
tools/power/x86/turbostat/turbostat.c
8086
if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
tools/power/x86/turbostat/turbostat.c
8116
ret = get_msr(master_cpu, offset, &msr_value);
tools/power/x86/turbostat/turbostat.c
8201
if (get_msr(master_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
tools/power/x86/turbostat/turbostat.c
8210
if (bits && !get_msr(master_cpu, MSR_PLATFORM_INFO, &enabled))
tools/power/x86/turbostat/turbostat.c
8263
if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
tools/power/x86/turbostat/turbostat.c
8269
if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
tools/power/x86/turbostat/turbostat.c
8280
if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
tools/power/x86/turbostat/turbostat.c
8287
if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
tools/power/x86/turbostat/turbostat.c
8348
if (!get_msr(master_cpu, MSR_IA32_FEAT_CTL, &msr))
tools/power/x86/turbostat/turbostat.c
8363
if (!get_msr(master_cpu, MSR_IA32_MISC_ENABLE, &msr))
tools/power/x86/turbostat/turbostat.c
8382
if (!get_msr(master_cpu, MSR_MISC_FEATURE_CONTROL, &msr))
tools/power/x86/turbostat/turbostat.c
8405
if (!get_msr(master_cpu, MSR_MISC_PWR_MGMT, &msr))
tools/power/x86/turbostat/turbostat.c
8426
if (!get_msr(master_cpu, MSR_CC6_DEMOTION_POLICY_CONFIG, &msr))
tools/power/x86/turbostat/turbostat.c
8429
if (!get_msr(master_cpu, MSR_MC6_DEMOTION_POLICY_CONFIG, &msr))
tools/power/x86/turbostat/turbostat.c
9125
if (get_msr(sched_getcpu(), MSR_IA32_UCODE_REV, &ucode_patch))
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
1186
get_msr(cpu, MSR_PM_ENABLE, &old_msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
1221
get_msr(cpu, MSR_IA32_MISC_ENABLE, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
1370
get_msr(cpu_num, MSR_PM_ENABLE, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
1489
get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
792
get_msr(cpu, msr_offset, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
827
get_msr(cpu, msr_offset, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
937
get_msr(first_cpu_in_pkg[pkg], MSR_HWP_INTERRUPT, &msr);
tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
944
get_msr(first_cpu_in_pkg[pkg], MSR_HWP_STATUS, &msr);