mirror of https://gitee.com/openkylin/linux.git
perf_counter, x86: remove get_status() from struct x86_pmu
This function is Intel only and not necessary for AMD cpus. [ Impact: simplify code ] Signed-off-by: Robert Richter <robert.richter@amd.com> Cc: Paul Mackerras <paulus@samba.org> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <1241002046-8832-10-git-send-email-robert.richter@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
39d81eab23
commit
b7f8859a8e
|
@ -51,7 +51,6 @@ struct x86_pmu {
|
||||||
int (*handle_irq)(struct pt_regs *, int);
|
int (*handle_irq)(struct pt_regs *, int);
|
||||||
u64 (*save_disable_all)(void);
|
u64 (*save_disable_all)(void);
|
||||||
void (*restore_all)(u64);
|
void (*restore_all)(u64);
|
||||||
u64 (*get_status)(u64);
|
|
||||||
void (*ack_status)(u64);
|
void (*ack_status)(u64);
|
||||||
void (*enable)(int, u64);
|
void (*enable)(int, u64);
|
||||||
void (*disable)(int, u64);
|
void (*disable)(int, u64);
|
||||||
|
@ -405,43 +404,17 @@ void hw_perf_restore(u64 ctrl)
|
||||||
*/
|
*/
|
||||||
EXPORT_SYMBOL_GPL(hw_perf_restore);
|
EXPORT_SYMBOL_GPL(hw_perf_restore);
|
||||||
|
|
||||||
static u64 intel_pmu_get_status(u64 mask)
|
static inline u64 intel_pmu_get_status(u64 mask)
|
||||||
{
|
{
|
||||||
u64 status;
|
u64 status;
|
||||||
|
|
||||||
|
if (unlikely(!perf_counters_initialized))
|
||||||
|
return 0;
|
||||||
rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
|
rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
|
||||||
|
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u64 amd_pmu_get_status(u64 mask)
|
|
||||||
{
|
|
||||||
u64 status = 0;
|
|
||||||
int idx;
|
|
||||||
|
|
||||||
for (idx = 0; idx < nr_counters_generic; idx++) {
|
|
||||||
s64 val;
|
|
||||||
|
|
||||||
if (!(mask & (1 << idx)))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
rdmsrl(MSR_K7_PERFCTR0 + idx, val);
|
|
||||||
val <<= (64 - counter_value_bits);
|
|
||||||
if (val >= 0)
|
|
||||||
status |= (1 << idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
static u64 hw_perf_get_status(u64 mask)
|
|
||||||
{
|
|
||||||
if (unlikely(!perf_counters_initialized))
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
return x86_pmu->get_status(mask);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void intel_pmu_ack_status(u64 ack)
|
static void intel_pmu_ack_status(u64 ack)
|
||||||
{
|
{
|
||||||
wrmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, ack);
|
wrmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, ack);
|
||||||
|
@ -795,7 +768,7 @@ static int intel_pmu_handle_irq(struct pt_regs *regs, int nmi)
|
||||||
|
|
||||||
cpuc->throttle_ctrl = hw_perf_save_disable();
|
cpuc->throttle_ctrl = hw_perf_save_disable();
|
||||||
|
|
||||||
status = hw_perf_get_status(cpuc->throttle_ctrl);
|
status = intel_pmu_get_status(cpuc->throttle_ctrl);
|
||||||
if (!status)
|
if (!status)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
@ -820,7 +793,7 @@ static int intel_pmu_handle_irq(struct pt_regs *regs, int nmi)
|
||||||
/*
|
/*
|
||||||
* Repeat if there is more work to be done:
|
* Repeat if there is more work to be done:
|
||||||
*/
|
*/
|
||||||
status = hw_perf_get_status(cpuc->throttle_ctrl);
|
status = intel_pmu_get_status(cpuc->throttle_ctrl);
|
||||||
if (status)
|
if (status)
|
||||||
goto again;
|
goto again;
|
||||||
out:
|
out:
|
||||||
|
@ -931,7 +904,6 @@ static struct x86_pmu intel_pmu = {
|
||||||
.handle_irq = intel_pmu_handle_irq,
|
.handle_irq = intel_pmu_handle_irq,
|
||||||
.save_disable_all = intel_pmu_save_disable_all,
|
.save_disable_all = intel_pmu_save_disable_all,
|
||||||
.restore_all = intel_pmu_restore_all,
|
.restore_all = intel_pmu_restore_all,
|
||||||
.get_status = intel_pmu_get_status,
|
|
||||||
.ack_status = intel_pmu_ack_status,
|
.ack_status = intel_pmu_ack_status,
|
||||||
.enable = intel_pmu_enable_counter,
|
.enable = intel_pmu_enable_counter,
|
||||||
.disable = intel_pmu_disable_counter,
|
.disable = intel_pmu_disable_counter,
|
||||||
|
@ -946,7 +918,6 @@ static struct x86_pmu amd_pmu = {
|
||||||
.handle_irq = amd_pmu_handle_irq,
|
.handle_irq = amd_pmu_handle_irq,
|
||||||
.save_disable_all = amd_pmu_save_disable_all,
|
.save_disable_all = amd_pmu_save_disable_all,
|
||||||
.restore_all = amd_pmu_restore_all,
|
.restore_all = amd_pmu_restore_all,
|
||||||
.get_status = amd_pmu_get_status,
|
|
||||||
.ack_status = amd_pmu_ack_status,
|
.ack_status = amd_pmu_ack_status,
|
||||||
.enable = amd_pmu_enable_counter,
|
.enable = amd_pmu_enable_counter,
|
||||||
.disable = amd_pmu_disable_counter,
|
.disable = amd_pmu_disable_counter,
|
||||||
|
|
Loading…
Reference in New Issue