Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211918
b: refs/heads/master
c: 58850e2
h: refs/heads/master
v: v3
  • Loading branch information
Matt Fleming authored and Robert Richter committed Oct 11, 2010
1 parent f10e5de commit 1ce27fa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 80e96b11f6cd261e1e569f3931604d656388af33
refs/heads/master: 58850e210cd207399cf6461326e322541b2ec81c
17 changes: 14 additions & 3 deletions trunk/arch/arm/oprofile/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ static void arm_backtrace(struct pt_regs * const regs, unsigned int depth)
tail = user_backtrace(tail);
}

int __init oprofile_arch_init(struct oprofile_operations *ops)
int __init oprofile_perf_init(struct oprofile_operations *ops)
{
int cpu, ret = 0;

Expand Down Expand Up @@ -387,7 +387,6 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
}
}

ops->backtrace = arm_backtrace;
ops->create_files = oprofile_perf_create_files;
ops->setup = oprofile_perf_setup;
ops->start = oprofile_perf_start;
Expand All @@ -410,7 +409,14 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
return ret;
}

void __exit oprofile_arch_exit(void)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
ops->backtrace = arm_backtrace;

return oprofile_perf_init(ops);
}

void __exit oprofile_perf_exit(void)
{
int cpu, id;
struct perf_event *event;
Expand All @@ -428,6 +434,11 @@ void __exit oprofile_arch_exit(void)
kfree(counter_config);
exit_driverfs();
}

void __exit oprofile_arch_exit(void)
{
oprofile_perf_exit();
}
#else
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
Expand Down

0 comments on commit 1ce27fa

Please sign in to comment.