Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147395
b: refs/heads/master
c: 6f00cad
h: refs/heads/master
i:
  147393: 72a6513
  147391: 63ffa2e
v: v3
  • Loading branch information
Robert Richter authored and Ingo Molnar committed Apr 29, 2009
1 parent 1c93186 commit c874b35
Show file tree
Hide file tree
Showing 3 changed files with 6 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: 095342389e2ed8deed07b3076f990260ce3c7c9f
refs/heads/master: 6f00cada07bb5da7f751929d3173494dcc5446cc
8 changes: 4 additions & 4 deletions trunk/arch/x86/kernel/cpu/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static void hw_perf_disable(int idx, u64 config)

static inline void
__pmc_fixed_disable(struct perf_counter *counter,
struct hw_perf_counter *hwc, unsigned int __idx)
struct hw_perf_counter *hwc, int __idx)
{
int idx = __idx - X86_PMC_IDX_FIXED;
u64 ctrl_val, mask;
Expand All @@ -474,7 +474,7 @@ __pmc_fixed_disable(struct perf_counter *counter,

static inline void
__x86_pmu_disable(struct perf_counter *counter,
struct hw_perf_counter *hwc, unsigned int idx)
struct hw_perf_counter *hwc, int idx)
{
if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL))
__pmc_fixed_disable(counter, hwc, idx);
Expand Down Expand Up @@ -523,7 +523,7 @@ x86_perf_counter_set_period(struct perf_counter *counter,

static inline void
__pmc_fixed_enable(struct perf_counter *counter,
struct hw_perf_counter *hwc, unsigned int __idx)
struct hw_perf_counter *hwc, int __idx)
{
int idx = __idx - X86_PMC_IDX_FIXED;
u64 ctrl_val, bits, mask;
Expand Down Expand Up @@ -691,7 +691,7 @@ static void x86_pmu_disable(struct perf_counter *counter)
{
struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
struct hw_perf_counter *hwc = &counter->hw;
unsigned int idx = hwc->idx;
int idx = hwc->idx;

/*
* Must be done before we disable, otherwise the nmi handler
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ struct hw_perf_counter {
unsigned long config_base;
unsigned long counter_base;
int nmi;
unsigned int idx;
int idx;
};
union { /* software */
atomic64_t count;
Expand Down

0 comments on commit c874b35

Please sign in to comment.