Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147258
b: refs/heads/master
c: 7bb497b
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Apr 6, 2009
1 parent b76d6fa commit 35d5d8e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e193bd4dfdc983d12969b51439b4a1fbaf2daad
refs/heads/master: 7bb497bd885eedd0f56dfe3cc1b5ff20710d33b9
16 changes: 11 additions & 5 deletions trunk/arch/x86/kernel/cpu/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ struct pmc_x86_ops {
int max_events;
};

static struct pmc_x86_ops *pmc_ops;
static struct pmc_x86_ops *pmc_ops __read_mostly;

static DEFINE_PER_CPU(struct cpu_hw_counters, cpu_hw_counters) = {
.enabled = 1,
};

static __read_mostly int intel_perfmon_version;

/*
* Intel PerfMon v3. Used on Core2 and later.
*/
Expand Down Expand Up @@ -613,7 +615,7 @@ void perf_counter_print_debug(void)
cpu = smp_processor_id();
cpuc = &per_cpu(cpu_hw_counters, cpu);

if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) {
if (intel_perfmon_version >= 2) {
rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
Expand Down Expand Up @@ -930,10 +932,10 @@ static struct pmc_x86_ops pmc_amd_ops = {

static struct pmc_x86_ops *pmc_intel_init(void)
{
union cpuid10_edx edx;
union cpuid10_eax eax;
unsigned int ebx;
unsigned int unused;
union cpuid10_edx edx;
unsigned int ebx;

/*
* Check whether the Architectural PerfMon supports
Expand All @@ -943,8 +945,12 @@ static struct pmc_x86_ops *pmc_intel_init(void)
if (eax.split.mask_length <= ARCH_PERFMON_BRANCH_MISSES_RETIRED)
return NULL;

intel_perfmon_version = eax.split.version_id;
if (intel_perfmon_version < 2)
return NULL;

pr_info("Intel Performance Monitoring support detected.\n");
pr_info("... version: %d\n", eax.split.version_id);
pr_info("... version: %d\n", intel_perfmon_version);
pr_info("... bit width: %d\n", eax.split.bit_width);
pr_info("... mask length: %d\n", eax.split.mask_length);

Expand Down

0 comments on commit 35d5d8e

Please sign in to comment.