|
@@ -156,9 +156,9 @@ static int amd_pmu_hw_config(struct perf_event *event)
|
|
|
event->hw.config &= ~(ARCH_PERFMON_EVENTSEL_USR |
|
|
|
ARCH_PERFMON_EVENTSEL_OS);
|
|
|
else if (event->attr.exclude_host)
|
|
|
- event->hw.config |= AMD_PERFMON_EVENTSEL_GUESTONLY;
|
|
|
+ event->hw.config |= AMD64_EVENTSEL_GUESTONLY;
|
|
|
else if (event->attr.exclude_guest)
|
|
|
- event->hw.config |= AMD_PERFMON_EVENTSEL_HOSTONLY;
|
|
|
+ event->hw.config |= AMD64_EVENTSEL_HOSTONLY;
|
|
|
|
|
|
if (event->attr.type != PERF_TYPE_RAW)
|
|
|
return 0;
|
|
@@ -336,7 +336,7 @@ static void amd_pmu_cpu_starting(int cpu)
|
|
|
struct amd_nb *nb;
|
|
|
int i, nb_id;
|
|
|
|
|
|
- cpuc->perf_ctr_virt_mask = AMD_PERFMON_EVENTSEL_HOSTONLY;
|
|
|
+ cpuc->perf_ctr_virt_mask = AMD64_EVENTSEL_HOSTONLY;
|
|
|
|
|
|
if (boot_cpu_data.x86_max_cores < 2)
|
|
|
return;
|
|
@@ -669,7 +669,7 @@ void amd_pmu_disable_virt(void)
|
|
|
* SVM is disabled the Guest-only bits still gets set and the counter
|
|
|
* will not count anything.
|
|
|
*/
|
|
|
- cpuc->perf_ctr_virt_mask = AMD_PERFMON_EVENTSEL_HOSTONLY;
|
|
|
+ cpuc->perf_ctr_virt_mask = AMD64_EVENTSEL_HOSTONLY;
|
|
|
|
|
|
/* Reload all events */
|
|
|
x86_pmu_disable_all();
|