diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-29 17:09:16 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-29 17:09:16 -0800 |
commit | 7578ed02e4b08c9b7b07443b44cf0ccfdf55c91e (patch) | |
tree | 7f9dc872e8df1e332c9bfc198179a6d28e968c72 /arch/x86 | |
parent | d2bac6ab932a407008a95d1993702f0a92f8f35e (diff) | |
parent | 2e64694de21a812d637dcbea4471ad1f7897b049 (diff) | |
download | linux-3.10-7578ed02e4b08c9b7b07443b44cf0ccfdf55c91e.tar.gz linux-3.10-7578ed02e4b08c9b7b07443b44cf0ccfdf55c91e.tar.bz2 linux-3.10-7578ed02e4b08c9b7b07443b44cf0ccfdf55c91e.zip |
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
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/perf_event_intel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/perf_event_intel.c b/arch/x86/kernel/cpu/perf_event_intel.c index 8d601b18bf9..121f1be4da1 100644 --- a/arch/x86/kernel/cpu/perf_event_intel.c +++ b/arch/x86/kernel/cpu/perf_event_intel.c @@ -1169,7 +1169,7 @@ again: */ c = &unconstrained; } else if (intel_try_alt_er(event, orig_idx)) { - raw_spin_unlock(&era->lock); + raw_spin_unlock_irqrestore(&era->lock, flags); goto again; } raw_spin_unlock_irqrestore(&era->lock, flags); |