[POWERPC] OProfile: enable callgraph support for Cell
authorBob Nelson <rrnelson@us.ibm.com>
Wed, 20 Feb 2008 04:00:56 +0000 (05:00 +0100)
committerArnd Bergmann <arnd@arndb.de>
Mon, 3 Mar 2008 07:03:14 +0000 (08:03 +0100)
This patch enables OProfile callgraph support for the Cell processor.  The
original code was just calling a function to add the PC value, now it will
call a function that first checks the callgraph depth.  Callgraph is already
enabled on the other Power platforms.

Signed-off-by: Bob Nelson <rrnelson@us.ibm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/powerpc/oprofile/op_model_cell.c

index 1392977..9eed1f6 100644 (file)
@@ -1151,7 +1151,7 @@ static void cell_handle_interrupt(struct pt_regs *regs,
                for (i = 0; i < num_counters; ++i) {
                        if ((interrupt_mask & CBE_PM_CTR_OVERFLOW_INTR(i))
                            && ctr[i].enabled) {
-                               oprofile_add_pc(pc, is_kernel, i);
+                               oprofile_add_ext_sample(pc, regs, i, is_kernel);
                                cbe_write_ctr(cpu, i, reset_value[i]);
                        }
                }