Code Review
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
raw
|
inline
| side by side
[PATCH] powerpc: reduce oprofile/common.c differences
[linux-2.6.git]
/
arch
/
powerpc
/
oprofile
/
common.c
diff --git
a/arch/powerpc/oprofile/common.c
b/arch/powerpc/oprofile/common.c
index 486314a0defd0a250057354c90e43ca55dabf711..88b4118fd0c509c31a6f3f7f7ebb6390657b9624 100644
(file)
--- a/
arch/powerpc/oprofile/common.c
+++ b/
arch/powerpc/oprofile/common.c
@@
-46,19
+46,12
@@
static void op_handle_interrupt(struct pt_regs *regs)
static int op_powerpc_setup(void)
{
static int op_powerpc_setup(void)
{
-#ifdef __powerpc64__
int err;
/* Grab the hardware */
err = reserve_pmc_hardware(op_handle_interrupt);
if (err)
return err;
int err;
/* Grab the hardware */
err = reserve_pmc_hardware(op_handle_interrupt);
if (err)
return err;
-#else /* __powerpc64__ */
- /* Install our interrupt handler into the existing hook. */
- if (request_perfmon_irq(&op_handle_interrupt))
- return -EBUSY;
- mb();
-#endif /* __powerpc64__ */
/* Pre-compute the values to stuff in the hardware registers. */
model->reg_setup(ctr, &sys, model->num_counters);
/* Pre-compute the values to stuff in the hardware registers. */
model->reg_setup(ctr, &sys, model->num_counters);
@@
-78,13
+71,7
@@
static int op_powerpc_setup(void)
static void op_powerpc_shutdown(void)
{
static void op_powerpc_shutdown(void)
{
-#ifdef __powerpc64__
release_pmc_hardware();
release_pmc_hardware();
-#else /* __powerpc64__ */
- mb();
- /* Remove our interrupt handler. We may be removing this module. */
- free_perfmon_irq();
-#endif /* __powerpc64__ */
}
static void op_powerpc_cpu_start(void *dummy)
}
static void op_powerpc_cpu_start(void *dummy)