diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-08-25 10:03:32 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-08-25 10:03:32 -0700 |
commit | 05bbb9360a000f509537a84554d69fb891fa7332 (patch) | |
tree | 3d603240fef76b6aa43823e202326202bb3b96d7 /arch | |
parent | 44c471e43698d966d2bf291a9631f7d22a861bbd (diff) | |
parent | f1c6ece23729257fb46562ff9224cf5f61b818da (diff) | |
download | linux-05bbb9360a000f509537a84554d69fb891fa7332.tar.bz2 |
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull perf fixes from Thomas Gleixner:
"Two small fixes for kprobes and perf:
- Prevent a deadlock in kprobe_optimizer() causes by reverse lock
ordering
- Fix a comment typo"
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
kprobes: Fix potential deadlock in kprobe_optimizer()
perf/x86: Fix typo in comment
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/events/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c index 81b005e4c7d9..325959d19d9a 100644 --- a/arch/x86/events/core.c +++ b/arch/x86/events/core.c @@ -1236,7 +1236,7 @@ void x86_pmu_enable_event(struct perf_event *event) * Add a single event to the PMU. * * The event is added to the group of enabled events - * but only if it can be scehduled with existing events. + * but only if it can be scheduled with existing events. */ static int x86_pmu_add(struct perf_event *event, int flags) { |