diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2013-08-09 12:49:02 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-09-03 15:26:34 -0400 |
commit | eb2a1cd3c9df70ef84e91f2fc657fd19682346ca (patch) | |
tree | 19b05ee26617010e9da68b6800c94a1b47327210 /fs | |
parent | 744aa5253010636bb56f062336e9cae3132a46fb (diff) |
NFS: Add global helper for releasing slot table resources
The nfs4_destroy_slot_tables() function is renamed to avoid
confusion with the new helper.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4session.c | 21 | ||||
-rw-r--r-- | fs/nfs/nfs4session.h | 1 |
2 files changed, 16 insertions, 6 deletions
diff --git a/fs/nfs/nfs4session.c b/fs/nfs/nfs4session.c index be273c589b03..e0bf666c4c29 100644 --- a/fs/nfs/nfs4session.c +++ b/fs/nfs/nfs4session.c | |||
@@ -232,6 +232,16 @@ out: | |||
232 | } | 232 | } |
233 | 233 | ||
234 | /** | 234 | /** |
235 | * nfs4_release_slot_table - release resources attached to a slot table | ||
236 | * @tbl: slot table to shut down | ||
237 | * | ||
238 | */ | ||
239 | void nfs4_release_slot_table(struct nfs4_slot_table *tbl) | ||
240 | { | ||
241 | nfs4_shrink_slot_table(tbl, 0); | ||
242 | } | ||
243 | |||
244 | /** | ||
235 | * nfs4_setup_slot_table - prepare a stand-alone slot table for use | 245 | * nfs4_setup_slot_table - prepare a stand-alone slot table for use |
236 | * @tbl: slot table to set up | 246 | * @tbl: slot table to set up |
237 | * @max_reqs: maximum number of requests allowed | 247 | * @max_reqs: maximum number of requests allowed |
@@ -412,11 +422,10 @@ void nfs41_update_target_slotid(struct nfs4_slot_table *tbl, | |||
412 | 422 | ||
413 | #if defined(CONFIG_NFS_V4_1) | 423 | #if defined(CONFIG_NFS_V4_1) |
414 | 424 | ||
415 | /* Destroy the slot table */ | 425 | static void nfs4_destroy_session_slot_tables(struct nfs4_session *session) |
416 | static void nfs4_destroy_slot_tables(struct nfs4_session *session) | ||
417 | { | 426 | { |
418 | nfs4_shrink_slot_table(&session->fc_slot_table, 0); | 427 | nfs4_release_slot_table(&session->fc_slot_table); |
419 | nfs4_shrink_slot_table(&session->bc_slot_table, 0); | 428 | nfs4_release_slot_table(&session->bc_slot_table); |
420 | } | 429 | } |
421 | 430 | ||
422 | /* | 431 | /* |
@@ -441,7 +450,7 @@ int nfs4_setup_session_slot_tables(struct nfs4_session *ses) | |||
441 | if (status && tbl->slots == NULL) | 450 | if (status && tbl->slots == NULL) |
442 | /* Fore and back channel share a connection so get | 451 | /* Fore and back channel share a connection so get |
443 | * both slot tables or neither */ | 452 | * both slot tables or neither */ |
444 | nfs4_destroy_slot_tables(ses); | 453 | nfs4_destroy_session_slot_tables(ses); |
445 | return status; | 454 | return status; |
446 | } | 455 | } |
447 | 456 | ||
@@ -477,7 +486,7 @@ void nfs4_destroy_session(struct nfs4_session *session) | |||
477 | dprintk("%s Destroy backchannel for xprt %p\n", | 486 | dprintk("%s Destroy backchannel for xprt %p\n", |
478 | __func__, xprt); | 487 | __func__, xprt); |
479 | xprt_destroy_backchannel(xprt, NFS41_BC_MIN_CALLBACKS); | 488 | xprt_destroy_backchannel(xprt, NFS41_BC_MIN_CALLBACKS); |
480 | nfs4_destroy_slot_tables(session); | 489 | nfs4_destroy_session_slot_tables(session); |
481 | kfree(session); | 490 | kfree(session); |
482 | } | 491 | } |
483 | 492 | ||
diff --git a/fs/nfs/nfs4session.h b/fs/nfs/nfs4session.h index f223a7648f9e..bfb0fe38f024 100644 --- a/fs/nfs/nfs4session.h +++ b/fs/nfs/nfs4session.h | |||
@@ -74,6 +74,7 @@ enum nfs4_session_state { | |||
74 | 74 | ||
75 | extern int nfs4_setup_slot_table(struct nfs4_slot_table *tbl, | 75 | extern int nfs4_setup_slot_table(struct nfs4_slot_table *tbl, |
76 | unsigned int max_reqs, const char *queue); | 76 | unsigned int max_reqs, const char *queue); |
77 | extern void nfs4_release_slot_table(struct nfs4_slot_table *tbl); | ||
77 | extern struct nfs4_slot *nfs4_alloc_slot(struct nfs4_slot_table *tbl); | 78 | extern struct nfs4_slot *nfs4_alloc_slot(struct nfs4_slot_table *tbl); |
78 | extern void nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *slot); | 79 | extern void nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *slot); |
79 | extern void nfs4_slot_tbl_drain_complete(struct nfs4_slot_table *tbl); | 80 | extern void nfs4_slot_tbl_drain_complete(struct nfs4_slot_table *tbl); |