diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-01-12 10:14:09 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-01-12 10:14:09 -0800 |
commit | 02776b9b5399183f273fa898fef64b1e977a5f85 (patch) | |
tree | b0d7910b790caace8b54f32903ed53cbe4620f83 /kernel | |
parent | aefd140437aab84afeec0be48dd6871c2113a746 (diff) | |
parent | f328299e54a94998b31baf788d2b33d8122a4acb (diff) |
Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull locking fixes from Ingo Molnar:
"No functional effects intended: removes leftovers from recent lockdep
and refcounts work"
* 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
locking/refcounts: Remove stale comment from the ARCH_HAS_REFCOUNT Kconfig entry
locking/lockdep: Remove cross-release leftovers
locking/Documentation: Remove stale crossrelease_fullstack parameter
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched/completion.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/kernel/sched/completion.c b/kernel/sched/completion.c index 2ddaec40956f..0926aef10dad 100644 --- a/kernel/sched/completion.c +++ b/kernel/sched/completion.c @@ -34,11 +34,6 @@ void complete(struct completion *x) spin_lock_irqsave(&x->wait.lock, flags); - /* - * Perform commit of crossrelease here. - */ - complete_release_commit(x); - if (x->done != UINT_MAX) x->done++; __wake_up_locked(&x->wait, TASK_NORMAL, 1); |