aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/completion.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2018-01-08 17:27:19 +0100
committerIngo Molnar <mingo@kernel.org>2018-01-08 17:30:45 +0100
commit527187d28569e39c5d489d6306d3b79605cf85a6 (patch)
treef3735296962d24a3952f1d72ec1bb29bd57cec80 /include/linux/completion.h
parentlocking/Documentation: Remove stale crossrelease_fullstack parameter (diff)
downloadlinux-dev-527187d28569e39c5d489d6306d3b79605cf85a6.tar.xz
linux-dev-527187d28569e39c5d489d6306d3b79605cf85a6.zip
locking/lockdep: Remove cross-release leftovers
There's two cross-release leftover facilities: - the crossrelease_hist_*() irq-tracing callbacks (NOPs currently) - the complete_release_commit() callback (NOP as well) Remove them. Cc: David Sterba <dsterba@suse.com> Cc: Byungchul Park <byungchul.park@lge.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/completion.h')
-rw-r--r--include/linux/completion.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/completion.h b/include/linux/completion.h
index 94a59ba7d422..519e94915d18 100644
--- a/include/linux/completion.h
+++ b/include/linux/completion.h
@@ -32,7 +32,6 @@ struct completion {
#define init_completion(x) __init_completion(x)
static inline void complete_acquire(struct completion *x) {}
static inline void complete_release(struct completion *x) {}
-static inline void complete_release_commit(struct completion *x) {}
#define COMPLETION_INITIALIZER(work) \
{ 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }