summaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorChuck Lever2013-03-16 20:55:19 +0100
committerTrond Myklebust2013-03-29 20:43:39 +0100
commit6599c0acae10e929b5315821c1d064cd13fe7648 (patch)
tree76d50e7fcbc6fe1f48606f20593d2fa2e5b8a741 /net/sunrpc
parentSUNRPC: Refactor nfsd4_do_encode_secinfo() (diff)
downloadkernel-qcow2-linux-6599c0acae10e929b5315821c1d064cd13fe7648.tar.gz
kernel-qcow2-linux-6599c0acae10e929b5315821c1d064cd13fe7648.tar.xz
kernel-qcow2-linux-6599c0acae10e929b5315821c1d064cd13fe7648.zip
SUNRPC: Make gss_mech_get() static
gss_mech_get() is no longer used outside of gss_mech_switch.c. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/auth_gss/gss_mech_switch.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/sunrpc/auth_gss/gss_mech_switch.c b/net/sunrpc/auth_gss/gss_mech_switch.c
index deaa7ae81cdf..89416522ef79 100644
--- a/net/sunrpc/auth_gss/gss_mech_switch.c
+++ b/net/sunrpc/auth_gss/gss_mech_switch.c
@@ -132,15 +132,12 @@ gss_mech_unregister(struct gss_api_mech *gm)
EXPORT_SYMBOL_GPL(gss_mech_unregister);
-struct gss_api_mech *
-gss_mech_get(struct gss_api_mech *gm)
+static struct gss_api_mech *gss_mech_get(struct gss_api_mech *gm)
{
__module_get(gm->gm_owner);
return gm;
}
-EXPORT_SYMBOL_GPL(gss_mech_get);
-
static struct gss_api_mech *
_gss_mech_get_by_name(const char *name)
{