diff options
author | Stanislav Kinsbursky <skinsbursky@parallels.com> | 2012-08-20 10:00:06 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-10-01 18:24:51 -0400 |
commit | c8ceb4124b53a439edfe3fe89a646be1e067ef17 (patch) | |
tree | 2944c8451992b92f32672bdfeb00683580999b7b /fs/nfs | |
parent | 6168f62cbde8dcf4f58255794efbcdb8df603959 (diff) |
NFS: pass net to nfs_callback_down()
Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/callback.c | 4 | ||||
-rw-r--r-- | fs/nfs/callback.h | 2 | ||||
-rw-r--r-- | fs/nfs/nfs4client.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c index 4c8459e5bdee..51297b2d0532 100644 --- a/fs/nfs/callback.c +++ b/fs/nfs/callback.c | |||
@@ -301,7 +301,7 @@ out_err: | |||
301 | /* | 301 | /* |
302 | * Kill the callback thread if it's no longer being used. | 302 | * Kill the callback thread if it's no longer being used. |
303 | */ | 303 | */ |
304 | void nfs_callback_down(int minorversion) | 304 | void nfs_callback_down(int minorversion, struct net *net) |
305 | { | 305 | { |
306 | struct nfs_callback_data *cb_info = &nfs_callback_info[minorversion]; | 306 | struct nfs_callback_data *cb_info = &nfs_callback_info[minorversion]; |
307 | 307 | ||
@@ -309,7 +309,7 @@ void nfs_callback_down(int minorversion) | |||
309 | cb_info->users--; | 309 | cb_info->users--; |
310 | if (cb_info->users == 0 && cb_info->task != NULL) { | 310 | if (cb_info->users == 0 && cb_info->task != NULL) { |
311 | kthread_stop(cb_info->task); | 311 | kthread_stop(cb_info->task); |
312 | svc_shutdown_net(cb_info->serv, &init_net); | 312 | svc_shutdown_net(cb_info->serv, net); |
313 | svc_exit_thread(cb_info->rqst); | 313 | svc_exit_thread(cb_info->rqst); |
314 | cb_info->serv = NULL; | 314 | cb_info->serv = NULL; |
315 | cb_info->rqst = NULL; | 315 | cb_info->rqst = NULL; |
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h index b44d7b128b71..309404453e95 100644 --- a/fs/nfs/callback.h +++ b/fs/nfs/callback.h | |||
@@ -194,7 +194,7 @@ extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy, | |||
194 | struct cb_process_state *cps); | 194 | struct cb_process_state *cps); |
195 | #if IS_ENABLED(CONFIG_NFS_V4) | 195 | #if IS_ENABLED(CONFIG_NFS_V4) |
196 | extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt); | 196 | extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt); |
197 | extern void nfs_callback_down(int minorversion); | 197 | extern void nfs_callback_down(int minorversion, struct net *net); |
198 | extern int nfs4_validate_delegation_stateid(struct nfs_delegation *delegation, | 198 | extern int nfs4_validate_delegation_stateid(struct nfs_delegation *delegation, |
199 | const nfs4_stateid *stateid); | 199 | const nfs4_stateid *stateid); |
200 | extern int nfs4_set_callback_sessionid(struct nfs_client *clp); | 200 | extern int nfs4_set_callback_sessionid(struct nfs_client *clp); |
diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c index 24eb663f8ed5..088a7d2e2ecb 100644 --- a/fs/nfs/nfs4client.c +++ b/fs/nfs/nfs4client.c | |||
@@ -84,7 +84,7 @@ error: | |||
84 | static void nfs4_destroy_callback(struct nfs_client *clp) | 84 | static void nfs4_destroy_callback(struct nfs_client *clp) |
85 | { | 85 | { |
86 | if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state)) | 86 | if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state)) |
87 | nfs_callback_down(clp->cl_mvops->minor_version); | 87 | nfs_callback_down(clp->cl_mvops->minor_version, &init_net); |
88 | } | 88 | } |
89 | 89 | ||
90 | static void nfs4_shutdown_client(struct nfs_client *clp) | 90 | static void nfs4_shutdown_client(struct nfs_client *clp) |