Commit 7578ed02 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  perf/x86: Fix raw_spin_unlock_irqrestore() usage
  oprofile, arm/sh: Fix oprofile_arch_exit() linkage issue
parents d2bac6ab 2e64694d
...@@ -116,7 +116,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) ...@@ -116,7 +116,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
return oprofile_perf_init(ops); return oprofile_perf_init(ops);
} }
void __exit oprofile_arch_exit(void) void oprofile_arch_exit(void)
{ {
oprofile_perf_exit(); oprofile_perf_exit();
} }
...@@ -49,7 +49,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) ...@@ -49,7 +49,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
return oprofile_perf_init(ops); return oprofile_perf_init(ops);
} }
void __exit oprofile_arch_exit(void) void oprofile_arch_exit(void)
{ {
oprofile_perf_exit(); oprofile_perf_exit();
kfree(sh_pmu_op_name); kfree(sh_pmu_op_name);
...@@ -60,5 +60,5 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) ...@@ -60,5 +60,5 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
ops->backtrace = sh_backtrace; ops->backtrace = sh_backtrace;
return -ENODEV; return -ENODEV;
} }
void __exit oprofile_arch_exit(void) {} void oprofile_arch_exit(void) {}
#endif /* CONFIG_HW_PERF_EVENTS */ #endif /* CONFIG_HW_PERF_EVENTS */
...@@ -1169,7 +1169,7 @@ __intel_shared_reg_get_constraints(struct cpu_hw_events *cpuc, ...@@ -1169,7 +1169,7 @@ __intel_shared_reg_get_constraints(struct cpu_hw_events *cpuc,
*/ */
c = &unconstrained; c = &unconstrained;
} else if (intel_try_alt_er(event, orig_idx)) { } else if (intel_try_alt_er(event, orig_idx)) {
raw_spin_unlock(&era->lock); raw_spin_unlock_irqrestore(&era->lock, flags);
goto again; goto again;
} }
raw_spin_unlock_irqrestore(&era->lock, flags); raw_spin_unlock_irqrestore(&era->lock, flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment