diff options
author | Robert Richter <robert.richter@amd.com> | 2009-05-22 17:36:29 +0400 |
---|---|---|
committer | Robert Richter <robert.richter@amd.com> | 2009-06-11 21:42:10 +0400 |
commit | ff9faa8b676e195476b86f03fe58db0f01bda8f3 (patch) | |
tree | 485f0910929930536dfabf5d6829365e629440a3 /arch/x86/oprofile/op_model_p4.c | |
parent | d20f24c66011f8a397bca6c5d1a6a7c7e612d2d7 (diff) | |
download | linux-ff9faa8b676e195476b86f03fe58db0f01bda8f3.tar.xz |
x86/oprofile: move common macros to op_x86_model.h
There are duplicate macro implementations in model specific code. This
patch moves all common macros to op_x86_model.h.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'arch/x86/oprofile/op_model_p4.c')
-rw-r--r-- | arch/x86/oprofile/op_model_p4.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/oprofile/op_model_p4.c b/arch/x86/oprofile/op_model_p4.c index 819b131fd752..420c15e71237 100644 --- a/arch/x86/oprofile/op_model_p4.c +++ b/arch/x86/oprofile/op_model_p4.c @@ -366,8 +366,6 @@ static struct p4_event_binding p4_events[NUM_EVENTS] = { #define CCCR_OVF_P(cccr) ((cccr) & (1U<<31)) #define CCCR_CLEAR_OVF(cccr) ((cccr) &= (~(1U<<31))) -#define CTRL_IS_RESERVED(msrs, c) (msrs->controls[(c)].addr ? 1 : 0) -#define CTR_IS_RESERVED(msrs, c) (msrs->counters[(c)].addr ? 1 : 0) #define CTR_READ(l, h, i) do {rdmsr(p4_counters[(i)].counter_address, (l), (h)); } while (0) #define CTR_WRITE(l, i) do {wrmsr(p4_counters[(i)].counter_address, -(u32)(l), -1); } while (0) #define CTR_OVERFLOW_P(ctr) (!((ctr) & 0x80000000)) |