diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2010-06-04 16:42:08 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2010-06-08 19:33:52 -0400 |
commit | c3935e30495869dd611e1cd62253c94ebc7c6c04 (patch) | |
tree | bdb8e1def460e785e13651b0827a11558eabe305 /fs | |
parent | e4e83ea47babd9d4bf95a13aed87f8ef51e46472 (diff) | |
download | op-kernel-dev-c3935e30495869dd611e1cd62253c94ebc7c6c04.zip op-kernel-dev-c3935e30495869dd611e1cd62253c94ebc7c6c04.tar.gz |
nfsd4: shut down callback queue outside state lock
This reportedly causes a lockdep warning on nfsd shutdown. That looks
like a false positive to me, but there's no reason why this needs the
state lock anyway.
Reported-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfsd/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 12f7109..4a27347 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -4122,8 +4122,8 @@ nfs4_state_shutdown(void) nfs4_lock_state(); nfs4_release_reclaim(); __nfs4_state_shutdown(); - nfsd4_destroy_callback_queue(); nfs4_unlock_state(); + nfsd4_destroy_callback_queue(); } /* |