aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirill A. Shutemov <kirill@shutemov.name>2010-12-16 08:25:54 -0500
committerJ. Bruce Fields <bfields@redhat.com>2011-01-04 16:49:19 -0500
commit65e4c8945575abca4e368e05ca3e9f77df030290 (patch)
tree3ae6e50500d131692697128835d7410c19939e74
parentbdd5f05d91e8ae68075b812ce244c918d3d752cd (diff)
nfsd: declare several functions of nfs4callback as static
setup_callback_client(), nfsd4_release_cb() and nfsd4_process_cb_update() do not have users outside the translation unit. Let's declare it as static. Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r--fs/nfsd/nfs4callback.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c
index 143da2eecd7..a08580553fd 100644
--- a/fs/nfsd/nfs4callback.c
+++ b/fs/nfsd/nfs4callback.c
@@ -473,7 +473,8 @@ static int max_cb_time(void)
473/* Reference counting, callback cleanup, etc., all look racy as heck. 473/* Reference counting, callback cleanup, etc., all look racy as heck.
474 * And why is cl_cb_set an atomic? */ 474 * And why is cl_cb_set an atomic? */
475 475
476int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *conn) 476static int setup_callback_client(struct nfs4_client *clp,
477 struct nfs4_cb_conn *conn)
477{ 478{
478 struct rpc_timeout timeparms = { 479 struct rpc_timeout timeparms = {
479 .to_initval = max_cb_time(), 480 .to_initval = max_cb_time(),
@@ -748,13 +749,13 @@ void nfsd4_shutdown_callback(struct nfs4_client *clp)
748 flush_workqueue(callback_wq); 749 flush_workqueue(callback_wq);
749} 750}
750 751
751void nfsd4_release_cb(struct nfsd4_callback *cb) 752static void nfsd4_release_cb(struct nfsd4_callback *cb)
752{ 753{
753 if (cb->cb_ops->rpc_release) 754 if (cb->cb_ops->rpc_release)
754 cb->cb_ops->rpc_release(cb); 755 cb->cb_ops->rpc_release(cb);
755} 756}
756 757
757void nfsd4_process_cb_update(struct nfsd4_callback *cb) 758static void nfsd4_process_cb_update(struct nfsd4_callback *cb)
758{ 759{
759 struct nfs4_cb_conn conn; 760 struct nfs4_cb_conn conn;
760 struct nfs4_client *clp = cb->cb_clp; 761 struct nfs4_client *clp = cb->cb_clp;