ANDROID: fix up 131287ff83 ("once: add DO_ONCE_SLOW() for sleepable contexts")
In upstream commit131287ff83("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 <edumazet@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Fixes:131287ff83("once: add DO_ONCE_SLOW() for sleepable contexts") Change-Id: I8c948a1b06544a9701d2daba5da9d139dcdf6885
This commit is contained in:
parent
f4606e0bf2
commit
34c78f8fb6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue