From 34c78f8fb6d734fd1683b757c9f21a644571028f Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Sun, 30 Oct 2022 11:04:57 +0100 Subject: [PATCH] ANDROID: fix up 131287ff833d ("once: add DO_ONCE_SLOW() for sleepable contexts") In upstream commit 131287ff833d ("once: add DO_ONCE_SLOW() for sleepable contexts"), we add a new api for the once code, but due to a previous revert, we need to fix up the function call to __do_once_slow_done in order to fix up the build. Cc: Eric Dumazet Signed-off-by: Greg Kroah-Hartman Fixes: 131287ff833d ("once: add DO_ONCE_SLOW() for sleepable contexts") Change-Id: I8c948a1b06544a9701d2daba5da9d139dcdf6885 --- lib/once.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/once.c b/lib/once.c index 172418409188..1b71cd72eab4 100644 --- a/lib/once.c +++ b/lib/once.c @@ -88,6 +88,6 @@ void __do_once_slow_done(bool *done, struct static_key_true *once_key, { *done = true; mutex_unlock(&once_mutex); - once_disable_jump(once_key, mod); + once_disable_jump(once_key); } EXPORT_SYMBOL(__do_once_slow_done);