Skip to content

Commit

Permalink
[POWERPC] re-enable OProfile for iSeries, using timer interrupt
Browse files Browse the repository at this point in the history
This patch removes the changes from an earlier patch that disables
oProfile for iSeries within the oProfile KConfig (submitted Feb 23,
2006).  Checks within the arch init for iSeries, still allowing profiling
for timer interrupts (using firmware_has_feature).

Signed-off-by: Kelly Daly <kelly@au.ibm.com>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Kelly Daly authored and Paul Mackerras committed Jun 21, 2006
1 parent 0bb474a commit 2191fe3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion arch/powerpc/oprofile/Kconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
config PROFILING
depends on !PPC_ISERIES
bool "Profiling support (EXPERIMENTAL)"
help
Say Y here to enable the extended profiling support mechanisms used
Expand Down
4 changes: 4 additions & 0 deletions arch/powerpc/oprofile/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <asm/pmc.h>
#include <asm/cputable.h>
#include <asm/oprofile_impl.h>
#include <asm/firmware.h>

static struct op_powerpc_model *model;

Expand Down Expand Up @@ -130,6 +131,9 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
if (!cur_cpu_spec->oprofile_cpu_type)
return -ENODEV;

if (firmware_has_feature(FW_FEATURE_ISERIES))
return -ENODEV;

switch (cur_cpu_spec->oprofile_type) {
#ifdef CONFIG_PPC64
case PPC_OPROFILE_RS64:
Expand Down

0 comments on commit 2191fe3

Please sign in to comment.