diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2021-12-03 11:00:19 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2021-12-13 12:04:45 -0600 |
commit | ca3574bd653aba234a4b31955f2778947403be16 (patch) | |
tree | 4f09c349161cc13113e99bfaac240122222b5de1 /fs/nfs/nfs4state.c | |
parent | bbda86e988d4c124e4cfa816291cbd583ae8bfb1 (diff) | |
download | linux-ca3574bd653aba234a4b31955f2778947403be16.tar.gz linux-ca3574bd653aba234a4b31955f2778947403be16.tar.bz2 linux-ca3574bd653aba234a4b31955f2778947403be16.zip |
exit: Rename module_put_and_exit to module_put_and_kthread_exit
Update module_put_and_exit to call kthread_exit instead of do_exit.
Change the name to reflect this change in functionality. All of the
users of module_put_and_exit are causing the current kthread to exit
so this change makes it clear what is happening. There is no
functional change.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index ecc4594299d6..ea41af731978 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -2689,6 +2689,6 @@ static int nfs4_run_state_manager(void *ptr) allow_signal(SIGKILL); nfs4_state_manager(clp); nfs_put_client(clp); - module_put_and_exit(0); + module_put_and_kthread_exit(0); return 0; } |