Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 101fd46a authored by Bob Nelson's avatar Bob Nelson Committed by Arnd Bergmann
Browse files

[POWERPC] OProfile: enable callgraph support for Cell



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: default avatarBob Nelson <rrnelson@us.ibm.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 038f2f72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]);
			}
		}